From 0b2be4099c0c69e1504addd17aebb02a536d7895 Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Tue, 12 Nov 2024 14:36:46 +0800 Subject: [PATCH 1/8] add validateUnique method for registry to ensure no duplicate chain_names --- .../__tests__/registry.unique.test.ts | 7 +++++++ v2/workflows/workflows/src/registry.ts | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 v2/workflows/workflows/__tests__/registry.unique.test.ts diff --git a/v2/workflows/workflows/__tests__/registry.unique.test.ts b/v2/workflows/workflows/__tests__/registry.unique.test.ts new file mode 100644 index 000000000..4e71d96ae --- /dev/null +++ b/v2/workflows/workflows/__tests__/registry.unique.test.ts @@ -0,0 +1,7 @@ +import { getRegistry } from '../test-utils'; + +const registry = getRegistry(); + +it('registry', () => { + registry.validateUnique() +}); diff --git a/v2/workflows/workflows/src/registry.ts b/v2/workflows/workflows/src/registry.ts index 7483c7d68..13bf74bd2 100644 --- a/v2/workflows/workflows/src/registry.ts +++ b/v2/workflows/workflows/src/registry.ts @@ -214,6 +214,25 @@ export class Registry { }); } + public validateUnique() { + let duplicatedChain = null as Chain + const hasDuplicates = this.chains.some((chain, index, array) => { + let existingIndex = array.findIndex(c => c.chain_name === chain.chain_name) + if (existingIndex !== index) { + duplicatedChain = chain + return true + } + return false + }); + + if (duplicatedChain) { + console.log(hasDuplicates ? "Duplicates found" : "No duplicates found"); + throw new Error(`Duplicate chain found: ${duplicatedChain.chain_name}`) + } + + return duplicatedChain + } + public get count() { return { chains: this.chains.length, From e4ac4ff9fa9e421245214ab0f3977ebfb426dd8c Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Tue, 12 Nov 2024 14:47:37 +0800 Subject: [PATCH 2/8] update src and snapshots sync with repo --- repos/chain-registry | 2 +- .../src/mainnet/andromeda1/asset-list.ts | 31 + .../src/mainnet/andromeda1/index.ts | 2 + .../chain-registry/src/mainnet/asset-lists.ts | 4 + .../chain-registry/src/mainnet/chains.ts | 2 + .../src/mainnet/odin/asset-list.ts | 78 +- .../chain-registry/src/mainnet/odin/chain.ts | 172 +- .../src/mainnet/odin1/asset-list.ts | 96 + .../chain-registry/src/mainnet/odin1/chain.ts | 101 + .../chain-registry/src/mainnet/odin1/index.ts | 5 + .../__snapshots__/cw20-assets.test.ts.snap | 4 - .../__snapshots__/get-asset-list.test.ts.snap | 2758 +- .../__snapshots__/ibc-assets.test.ts.snap | 2754 +- .../__snapshots__/special.assets.test.ts.snap | 27694 +++++++++------- 14 files changed, 21079 insertions(+), 12624 deletions(-) create mode 100644 v2/packages/chain-registry/src/mainnet/andromeda1/asset-list.ts create mode 100644 v2/packages/chain-registry/src/mainnet/odin1/asset-list.ts create mode 100644 v2/packages/chain-registry/src/mainnet/odin1/chain.ts create mode 100644 v2/packages/chain-registry/src/mainnet/odin1/index.ts diff --git a/repos/chain-registry b/repos/chain-registry index 370ee7f58..f66ce530d 160000 --- a/repos/chain-registry +++ b/repos/chain-registry @@ -1 +1 @@ -Subproject commit 370ee7f5895258e6b62b18a5efd04eced1387cbe +Subproject commit f66ce530d055a0016abe92a0fc98fe213cc9a434 diff --git a/v2/packages/chain-registry/src/mainnet/andromeda1/asset-list.ts b/v2/packages/chain-registry/src/mainnet/andromeda1/asset-list.ts new file mode 100644 index 000000000..be05db4d8 --- /dev/null +++ b/v2/packages/chain-registry/src/mainnet/andromeda1/asset-list.ts @@ -0,0 +1,31 @@ +import { AssetList } from '@chain-registry/v2-types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chainName: 'andromeda1', + assets: [{ + description: 'The native staking and governance token of Andromeda', + denomUnits: [{ + denom: 'uandr', + exponent: 0 + }, { + denom: 'andr', + exponent: 6 + }], + coingeckoId: 'andromeda-2', + base: 'uandr', + name: 'Andr', + display: 'andr', + symbol: 'ANDR', + logoURIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png' + }, + images: [{ + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png', + theme: { + primaryColorHex: '#040404' + } + }], + typeAsset: 'sdk.coin' + }] +}; +export default info; \ No newline at end of file diff --git a/v2/packages/chain-registry/src/mainnet/andromeda1/index.ts b/v2/packages/chain-registry/src/mainnet/andromeda1/index.ts index a1069390a..8e9955d91 100644 --- a/v2/packages/chain-registry/src/mainnet/andromeda1/index.ts +++ b/v2/packages/chain-registry/src/mainnet/andromeda1/index.ts @@ -1,3 +1,5 @@ +import _assetList from './asset-list'; import _chain from './chain'; +export const assetList = _assetList; export const chain = _chain; diff --git a/v2/packages/chain-registry/src/mainnet/asset-lists.ts b/v2/packages/chain-registry/src/mainnet/asset-lists.ts index 321c8be9d..37eb017ed 100644 --- a/v2/packages/chain-registry/src/mainnet/asset-lists.ts +++ b/v2/packages/chain-registry/src/mainnet/asset-lists.ts @@ -13,6 +13,7 @@ import * as _akash from './akash'; import * as _akiro from './akiro'; import * as _althea from './althea'; import * as _andromeda from './andromeda'; +import * as _andromeda1 from './andromeda1'; import * as _archway from './archway'; import * as _arkh from './arkh'; import * as _assetmantle from './assetmantle'; @@ -131,6 +132,7 @@ import * as _nomic from './nomic'; import * as _nyx from './nyx'; import * as _octa from './octa'; import * as _odin from './odin'; +import * as _odin1 from './odin1'; import * as _okexchain from './okexchain'; import * as _omniflixhub from './omniflixhub'; import * as _onex from './onex'; @@ -211,6 +213,7 @@ const assetList: AssetList[] = [ _akiro.assetList, _althea.assetList, _andromeda.assetList, + _andromeda1.assetList, _archway.assetList, _arkh.assetList, _assetmantle.assetList, @@ -329,6 +332,7 @@ const assetList: AssetList[] = [ _nyx.assetList, _octa.assetList, _odin.assetList, + _odin1.assetList, _okexchain.assetList, _omniflixhub.assetList, _onex.assetList, diff --git a/v2/packages/chain-registry/src/mainnet/chains.ts b/v2/packages/chain-registry/src/mainnet/chains.ts index 09f50ab4e..0c448e610 100644 --- a/v2/packages/chain-registry/src/mainnet/chains.ts +++ b/v2/packages/chain-registry/src/mainnet/chains.ts @@ -132,6 +132,7 @@ import * as _nomic from './nomic'; import * as _nyx from './nyx'; import * as _octa from './octa'; import * as _odin from './odin'; +import * as _odin1 from './odin1'; import * as _okexchain from './okexchain'; import * as _omniflixhub from './omniflixhub'; import * as _onex from './onex'; @@ -331,6 +332,7 @@ const chains: Chain[] = [ _nyx.chain, _octa.chain, _odin.chain, + _odin1.chain, _okexchain.chain, _omniflixhub.chain, _onex.chain, diff --git a/v2/packages/chain-registry/src/mainnet/odin/asset-list.ts b/v2/packages/chain-registry/src/mainnet/odin/asset-list.ts index 6edfef57e..2f5d196df 100644 --- a/v2/packages/chain-registry/src/mainnet/odin/asset-list.ts +++ b/v2/packages/chain-registry/src/mainnet/odin/asset-list.ts @@ -4,7 +4,7 @@ const info: AssetList = { chainName: 'odin', assets: [ { - description: 'Staking and governance token for ODIN Protocol', + description: 'ODIN is the Staking and governance token for ODIN Protocol', denomUnits: [{ denom: 'loki', exponent: 0 @@ -22,13 +22,13 @@ const info: AssetList = { }, coingeckoId: 'odin-protocol', images: [{ - imageSync: { - chainName: 'odin', - baseDenom: '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' }], + socials: { + website: 'https://odinprotocol.io/', + twitter: 'https://twitter.com/odinprotocol' + }, typeAsset: 'sdk.coin' }, { @@ -49,10 +49,6 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' }, images: [{ - imageSync: { - chainName: 'odin', - baseDenom: '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', theme: { @@ -61,6 +57,62 @@ const info: AssetList = { }], typeAsset: 'sdk.coin' }, + { + description: 'DOKI the last Dragon', + denomUnits: [{ + denom: 'udoki', + exponent: 0 + }, { + denom: 'doki', + exponent: 6 + }], + base: 'udoki', + name: 'DOKI', + display: 'doki', + symbol: 'DOKI', + logoURIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' + }, + coingeckoId: 'doki', + images: [{ + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png', + theme: { + primaryColorHex: '#2e2d2a' + } + }], + socials: { + website: 'https://dokicoin.io/', + twitter: 'https://twitter.com/doki_coin' + }, + typeAsset: 'sdk.coin' + }, + { + description: 'Myrkur the leader of OLD Order', + denomUnits: [{ + denom: 'umyrk', + exponent: 0 + }, { + denom: 'myrk', + exponent: 6 + }], + base: 'umyrk', + name: 'MYRK', + display: 'myrk', + symbol: 'MYRK', + logoURIs: { + 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', + theme: { + primaryColorHex: '#0a0707' + } + }], + socials: { + twitter: 'https://twitter.com/myrkweilds' + }, + typeAsset: 'sdk.coin' + }, { description: 'O9W token for ODIN Protocol', denomUnits: [{ @@ -79,16 +131,16 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' }, images: [{ - imageSync: { - chainName: 'odin', - baseDenom: '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', theme: { primaryColorHex: '#040404' } }], + socials: { + website: 'https://www.odin9worlds.io/', + twitter: 'https://twitter.com/odin9worlds' + }, typeAsset: 'sdk.coin' } ] diff --git a/v2/packages/chain-registry/src/mainnet/odin/chain.ts b/v2/packages/chain-registry/src/mainnet/odin/chain.ts index 4dac68e6c..7d6356b9e 100644 --- a/v2/packages/chain-registry/src/mainnet/odin/chain.ts +++ b/v2/packages/chain-registry/src/mainnet/odin/chain.ts @@ -2,12 +2,13 @@ import { Chain } from '@chain-registry/v2-types'; const info: Chain = { $schema: '../chain.schema.json', chainName: 'odin', - status: 'killed', + status: 'live', networkType: 'mainnet', website: 'https://odinprotocol.io/', prettyName: 'Odin Protocol', chainType: 'cosmos', chainId: 'odin-mainnet-freya', + preForkChainName: 'odin1', bech32Prefix: 'odin', daemonName: 'odind', nodeHome: '$HOME/.odin', @@ -29,16 +30,123 @@ const info: Chain = { }, codebase: { gitRepo: 'https://github.com/ODIN-PROTOCOL/odin-core', - recommendedVersion: 'v0.6.2', - compatibleVersions: ['v0.6.2'], + recommendedVersion: 'v0.9.4', + compatibleVersions: ['v0.9.4'], + consensus: { + type: 'cometbft', + version: 'v0.38.10' + }, genesis: { - genesisUrl: 'https://raw.githubusercontent.com/ODIN-PROTOCOL/networks/master/mainnets/odin-mainnet-freya/genesis.json' + genesisUrl: 'https://snapshots.polkachu.com/genesis/odin/genesis.json' }, - versions: [{ - name: 'v0.6.2', - recommendedVersion: 'v0.6.2', - compatibleVersions: ['v0.6.2'] - }] + versions: [ + { + name: 'v0.7.9', + recommendedVersion: 'v0.7.9', + compatibleVersions: ['v0.7.9'], + consensus: { + type: 'cometbft', + version: 'v0.37.4' + }, + nextVersionName: 'v0.7.11', + sdk: { + type: 'cosmos', + version: 'v0.47.7' + }, + ibc: { + type: 'go', + version: 'v7.3.0' + } + }, + { + name: 'v0.7.11', + proposal: 22, + height: 13310888, + recommendedVersion: 'v0.7.11', + compatibleVersions: ['v0.7.11'], + consensus: { + type: 'cometbft', + version: 'v0.37.4' + }, + nextVersionName: 'v0.7.12', + sdk: { + type: 'cosmos', + version: 'v0.47.7' + }, + ibc: { + type: 'go', + version: 'v7.3.0' + } + }, + { + name: 'v0.7.12', + proposal: 24, + height: 14129800, + recommendedVersion: 'v0.7.12', + compatibleVersions: ['v0.7.12'], + consensus: { + type: 'cometbft', + version: 'v0.37.4' + }, + nextVersionName: 'v0.8.3', + sdk: { + type: 'cosmos', + version: 'v0.47.7' + }, + ibc: { + type: 'go', + version: 'v7.3.0' + } + }, + { + name: 'v0.8.3', + proposal: 25, + height: 15076000, + recommendedVersion: 'v0.8.3', + compatibleVersions: ['v0.8.3'], + consensus: { + type: 'cometbft', + version: 'v0.38.7' + }, + nextVersionName: 'v0.9.3', + sdk: { + type: 'cosmos', + version: 'v0.50.7' + }, + ibc: { + type: 'go', + version: 'v8.2.0' + } + }, + { + name: 'v0.9.3', + proposal: 26, + height: 15639500, + recommendedVersion: 'v0.9.4', + compatibleVersions: ['v0.9.4'], + consensus: { + type: 'cometbft', + version: 'v0.38.10' + }, + nextVersionName: '', + sdk: { + type: 'cosmos', + version: 'v0.50.7' + }, + ibc: { + type: 'go', + version: 'v8.3.1' + } + } + ], + sdk: { + type: 'cosmos', + version: 'v0.50.7' + }, + ibc: { + type: 'go', + version: 'v8.3.1' + } }, logoURIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', @@ -47,8 +155,12 @@ const info: Chain = { apis: { rpc: [ { - address: 'http://34.79.179.216:26657', - provider: 'Odin Protocol' + address: 'https://rpc.odinprotocol.io', + provider: 'Heimdall Gateway' + }, + { + address: 'https://odin.rpc.m.stavr.tech:443', + provider: '🔥STAVR🔥' }, { address: 'https://rpc.lavenderfive.com:443/odin', @@ -61,8 +173,12 @@ const info: Chain = { ], rest: [ { - address: 'http://34.79.179.216:1317/', - provider: 'Odin Protocol' + address: 'https://api.odinprotocol.io', + provider: 'Heimdall Gateway' + }, + { + address: 'https://odin.api.m.stavr.tech', + provider: '🔥STAVR🔥' }, { address: 'https://rest.lavenderfive.com:443/odin', @@ -73,27 +189,39 @@ const info: Chain = { provider: 'AutoStake 🛡️ Slash Protected' } ], - grpc: [{ + grpc: [ + { address: 'odin.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' - }] + } + ] }, - explorers: [{ + explorers: [ + { kind: 'odin web', url: 'https://mainnet.odinprotocol.io/', txPage: 'https://mainnet.odinprotocol.io/transactions/${txHash}' - }, { + }, + { + kind: '🔥STAVR🔥', + url: 'https://explorer.stavr.tech/Odin-Mainnet', + txPage: 'https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}' + }, + { kind: 'ping.pub', url: 'https://ping.pub/odin', txPage: 'https://ping.pub/odin/tx/${txHash}' - }], + } + ], images: [{ - imageSync: { - chainName: '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/v2/packages/chain-registry/src/mainnet/odin1/asset-list.ts b/v2/packages/chain-registry/src/mainnet/odin1/asset-list.ts new file mode 100644 index 000000000..a8f46282d --- /dev/null +++ b/v2/packages/chain-registry/src/mainnet/odin1/asset-list.ts @@ -0,0 +1,96 @@ +import { AssetList } from '@chain-registry/v2-types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chainName: 'odin1', + assets: [ + { + description: 'Staking and governance token for ODIN Protocol', + denomUnits: [{ + denom: 'loki', + exponent: 0 + }, { + denom: 'odin', + exponent: 6 + }], + base: 'loki', + name: 'ODIN', + display: 'odin', + symbol: 'ODIN', + logoURIs: { + 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' + }, + coingeckoId: 'odin-protocol', + images: [{ + imageSync: { + chainName: 'odin', + baseDenom: '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' + }], + typeAsset: 'sdk.coin' + }, + { + description: 'GEO token for ODIN Protocol', + denomUnits: [{ + denom: 'mGeo', + exponent: 0 + }, { + denom: 'geo', + exponent: 6 + }], + base: 'mGeo', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + logoURIs: { + 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: [{ + imageSync: { + chainName: 'odin', + baseDenom: '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', + theme: { + primaryColorHex: '#c3ebf3' + } + }], + typeAsset: 'sdk.coin' + }, + { + description: 'O9W token for ODIN Protocol', + denomUnits: [{ + denom: 'mO9W', + exponent: 0 + }, { + denom: 'O9W', + exponent: 6 + }], + base: 'mO9W', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + logoURIs: { + 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: [{ + imageSync: { + chainName: 'odin', + baseDenom: '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', + theme: { + primaryColorHex: '#040404' + } + }], + typeAsset: 'sdk.coin' + } + ] +}; +export default info; \ No newline at end of file diff --git a/v2/packages/chain-registry/src/mainnet/odin1/chain.ts b/v2/packages/chain-registry/src/mainnet/odin1/chain.ts new file mode 100644 index 000000000..055f500e8 --- /dev/null +++ b/v2/packages/chain-registry/src/mainnet/odin1/chain.ts @@ -0,0 +1,101 @@ +import { Chain } from '@chain-registry/v2-types'; +const info: Chain = { + $schema: '../chain.schema.json', + chainName: 'odin1', + status: 'killed', + networkType: 'mainnet', + website: 'https://odinprotocol.io/', + prettyName: 'Odin Protocol', + chainType: 'cosmos', + chainId: 'odin-mainnet-freya', + bech32Prefix: 'odin', + daemonName: 'odind', + nodeHome: '$HOME/.odin', + keyAlgos: ['secp256k1'], + slip44: 118, + fees: { + feeTokens: [{ + denom: 'loki', + fixedMinGasPrice: 0.0125, + lowGasPrice: 0.025, + averageGasPrice: 0.05, + highGasPrice: 0.06 + }] + }, + staking: { + stakingTokens: [{ + denom: 'loki' + }] + }, + codebase: { + gitRepo: 'https://github.com/ODIN-PROTOCOL/odin-core', + recommendedVersion: 'v0.6.2', + compatibleVersions: ['v0.6.2'], + genesis: { + genesisUrl: 'https://raw.githubusercontent.com/ODIN-PROTOCOL/networks/master/mainnets/odin-mainnet-freya/genesis.json' + }, + versions: [{ + name: 'v0.6.2', + recommendedVersion: 'v0.6.2', + compatibleVersions: ['v0.6.2'] + }] + }, + logoURIs: { + 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' + }, + apis: { + rpc: [ + { + address: 'http://34.79.179.216:26657', + provider: 'Odin Protocol' + }, + { + address: 'https://rpc.lavenderfive.com:443/odin', + provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://odin-mainnet-rpc.autostake.com:443', + provider: 'AutoStake 🛡️ Slash Protected' + } + ], + rest: [ + { + address: 'http://34.79.179.216:1317/', + provider: 'Odin Protocol' + }, + { + address: 'https://rest.lavenderfive.com:443/odin', + provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://odin-mainnet-lcd.autostake.com:443', + provider: 'AutoStake 🛡️ Slash Protected' + } + ], + grpc: [{ + address: 'odin.lavenderfive.com:443', + provider: 'Lavender.Five Nodes 🐝' + }, { + address: 'odin-mainnet-grpc.autostake.com:443', + provider: 'AutoStake 🛡️ Slash Protected' + }] + }, + explorers: [{ + kind: 'odin web', + url: 'https://mainnet.odinprotocol.io/', + txPage: 'https://mainnet.odinprotocol.io/transactions/${txHash}' + }, { + kind: 'ping.pub', + url: 'https://ping.pub/odin', + txPage: 'https://ping.pub/odin/tx/${txHash}' + }], + images: [{ + imageSync: { + chainName: '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' + }] +}; +export default info; \ No newline at end of file diff --git a/v2/packages/chain-registry/src/mainnet/odin1/index.ts b/v2/packages/chain-registry/src/mainnet/odin1/index.ts new file mode 100644 index 000000000..8e9955d91 --- /dev/null +++ b/v2/packages/chain-registry/src/mainnet/odin1/index.ts @@ -0,0 +1,5 @@ +import _assetList from './asset-list'; +import _chain from './chain'; + +export const assetList = _assetList; +export const chain = _chain; diff --git a/v2/packages/utils/__tests__/__snapshots__/cw20-assets.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/cw20-assets.test.ts.snap index 7495ae82f..4cd27d7d9 100644 --- a/v2/packages/utils/__tests__/__snapshots__/cw20-assets.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/cw20-assets.test.ts.snap @@ -1344,7 +1344,6 @@ exports[`getCw20Assets 1`] = ` { "address": "juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", "base": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", - "coingeckoId": "wynd", "denomUnits": [ { "aliases": [ @@ -3519,7 +3518,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "coingeckoId": "lvn", "denomUnits": [ { "aliases": [ @@ -4905,7 +4903,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", "base": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", - "coingeckoId": "wynd", "denomUnits": [ { "aliases": [ @@ -7080,7 +7077,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "coingeckoId": "lvn", "denomUnits": [ { "aliases": [ diff --git a/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap index 31ba6a31d..7af476850 100644 --- a/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap @@ -105,7 +105,6 @@ exports[`getAssetLists 1`] = ` }, { "base": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", - "coingeckoId": "arable-usd", "denomUnits": [ { "aliases": [ @@ -570,6 +569,92 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "address": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "base": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "denomUnits": [ + { + "aliases": [ + "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + ], + "denom": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "exponent": 0, + }, + { + "denom": "bARCH", + "exponent": 18, + }, + ], + "description": "BackBone Labs Liquid Staked Archway", + "display": "bARCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + "name": "BackBone Labs Liquid Staked Archway", + "symbol": "bARCH", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, + { + "address": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "base": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "denomUnits": [ + { + "aliases": [ + "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + ], + "denom": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "exponent": 0, + }, + { + "denom": "TOKN", + "exponent": 18, + }, + ], + "description": "Architects Token", + "display": "TOKN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + "name": "Architects Token", + "symbol": "TOKN", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, { "base": "ibc/177AD4B979B9733285516FA7300031D339D4E4112133AC92137A0577E8B6E75D", "denomUnits": [ @@ -825,6 +910,54 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "denomUnits": [ + { + "aliases": [ + "uatone", + ], + "denom": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "exponent": 0, + }, + { + "denom": "atone", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of AtomOne", + "display": "atone", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + "name": "Atone", + "socials": { + "twitter": "https://x.com/_atomone", + "website": "https://atom.one", + }, + "symbol": "ATONE", + "traces": [ + { + "chain": { + "channel_id": "channel-85309", + }, + "counterparty": { + "base_denom": "uatone", + "chain_name": "atomone", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", "coingeckoId": "aura-network", @@ -1089,6 +1222,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "display": "usdt", "images": [ { + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, "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", "theme": { @@ -1119,6 +1256,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz }, { "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "coingeckoId": "axlweth", "denomUnits": [ { "aliases": [ @@ -2588,6 +2726,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, "symbol": "YUM.axl", "traces": [ { @@ -2776,6 +2918,292 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "denomUnits": [ + { + "aliases": [ + "arbitrum-uusdt", + ], + "denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "chainName": "arbitrum", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Arbitrum)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "arbitrum-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "denomUnits": [ + { + "aliases": [ + "optimism-uusdt", + ], + "denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "chainName": "optimism", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Optimism)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "optimism-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "denomUnits": [ + { + "aliases": [ + "polygon-uusdt", + ], + "denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Polygon on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "chainName": "polygon", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Polygon)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "polygon-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "denomUnits": [ + { + "aliases": [ + "cbbtc-satoshi", + ], + "denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "exponent": 0, + }, + { + "denom": "cbbtc", + "exponent": 8, + }, + ], + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "chainName": "base", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#0052FF", + }, + }, + ], + "name": "Coinbase Warpped Bitcoin", + "symbol": "axl-cbBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "cbbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "denomUnits": [ + { + "aliases": [ + "fbtc-satoshi", + ], + "denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "exponent": 0, + }, + { + "denom": "fbtc", + "exponent": 8, + }, + ], + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "chainName": "mantle", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", + }, + }, + ], + "name": "Fire Bitcoin", + "symbol": "axlFBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "fbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "denomUnits": [ + { + "aliases": [ + "lbtc-satoshi", + ], + "denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "exponent": 0, + }, + { + "denom": "lbtc", + "exponent": 8, + }, + ], + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0x8236a87084f8B84306f72007F36F2618A5634494", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#162E2F", + }, + }, + ], + "name": "Lombard Staked Bitcoin", + "symbol": "axlLBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "lbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", "coingeckoId": "band-protocol", @@ -2844,8 +3272,9 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "exponent": 6, }, ], - "description": "BeeZee native blockchain", + "description": "BeeZee network native coin", "display": "bze", + "extendedDescription": "Powered by BZE Coin, BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", @@ -2860,6 +3289,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg", }, "name": "BeeZee", + "socials": { + "twitter": "https://x.com/BZEdgeCoin", + "website": "https://getbze.com/", + }, "symbol": "BZE", "traces": [ { @@ -2894,6 +3327,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "Vidulum App Token", "display": "vdl", + "extendedDescription": "Vidulum App is your one stop, multi-currency crypto web wallet. Hold, earn, and own your crypto assets in non-custodial fashion from any device, anytime.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", @@ -2908,6 +3342,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", }, "name": "Vidulum", + "socials": { + "twitter": "https://x.com/VidulumApp", + "website": "https://vidulum.app/", + }, "symbol": "VDL", "traces": [ { @@ -3919,6 +4357,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "The native token of Bluzelle", "display": "bnt", + "extendedDescription": "BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", @@ -5762,7 +6201,6 @@ Celestia's unique approach includes a consensus and data availability layer that }, { "base": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "coingeckoId": "harbor-2", "denomUnits": [ { "aliases": [ @@ -7935,7 +8373,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "coingeckoId": "crescent-network", "denomUnits": [ { "aliases": [ @@ -8387,7 +8824,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "coingeckoId": "dig-chain", "denomUnits": [ { "aliases": [ @@ -8479,6 +8915,51 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "denomUnits": [ + { + "aliases": [ + "udgn", + ], + "denom": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "exponent": 0, + }, + { + "denom": "DGN", + "exponent": 6, + }, + ], + "description": "Dungeon native token", + "display": "DGN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + "theme": { + "circle": true, + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + }, + "name": "Dungeon Coin", + "symbol": "DGN", + "traces": [ + { + "chain": { + "channel_id": "channel-85791", + }, + "counterparty": { + "base_denom": "udgn", + "chain_name": "dungeon", + "channel_id": "channel-2", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "coingeckoId": "dydx-chain", @@ -11143,7 +11624,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "coingeckoId": "gravity-bridge-usdc", "denomUnits": [ { "aliases": [ @@ -11579,7 +12059,7 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, "name": "Islamic Coin", "socials": { - "twitter": "https://x.com/1slamic_coin", + "twitter": "https://x.com/islamic_coin", "website": "https://islamiccoin.net", }, "symbol": "ISLM", @@ -11756,7 +12236,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "coingeckoId": "imv", "denomUnits": [ { "aliases": [ @@ -13187,18 +13666,18 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "base": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "denom": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "exponent": 0, }, { "denom": "DRUGS", - "exponent": 9, + "exponent": 6, }, ], "description": "Distributing happiness, is a serious business", @@ -13219,7 +13698,7 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "channel_id": "channel-122", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", "chain_name": "injective", "channel_id": "channel-8", }, @@ -13228,6 +13707,235 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "denomUnits": [ + { + "aliases": [ + "uint3", + ], + "denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "exponent": 0, + }, + { + "denom": "int3", + "exponent": 6, + }, + ], + "description": "Int3face blockchain native token", + "display": "int3", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + }, + "name": "Int3face Token", + "socials": { + "twitter": "https://x.com/int3face", + "website": "https://int3face.io/", + }, + "symbol": "INT3", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "uint3", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + ], + "denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "exponent": 0, + }, + { + "denom": "btc", + "exponent": 8, + }, + ], + "description": "Bitcoin on Int3face", + "display": "btc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + }, + "name": "Bitcoin", + "symbol": "BTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + ], + "denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "exponent": 0, + }, + { + "denom": "bch", + "exponent": 8, + }, + ], + "description": "Bitcoin-Cash on Int3face", + "display": "bch", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + }, + "name": "Bitcoin Cash", + "symbol": "BCH", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + ], + "denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "exponent": 0, + }, + { + "denom": "doge", + "exponent": 8, + }, + ], + "description": "Dogecoin on Int3face", + "display": "doge", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + }, + "name": "Dogecoin", + "symbol": "DOGE", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + ], + "denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "exponent": 0, + }, + { + "denom": "ltc", + "exponent": 8, + }, + ], + "description": "Litecoin on Int3face", + "display": "ltc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + }, + "name": "Litecoin", + "symbol": "LTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", "coingeckoId": "iris-network", @@ -18419,6 +19127,58 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "denomUnits": [ + { + "aliases": [ + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + ], + "denom": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "exponent": 0, + }, + { + "denom": "yum", + "exponent": 18, + }, + ], + "display": "yum", + "images": [ + { + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + "theme": { + "primaryColorHex": "#33a6e7", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-259", + }, + "counterparty": { + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", "coingeckoId": "kyve-network", @@ -18832,6 +19592,79 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "coingeckoId": "mantra-dao", + "denomUnits": [ + { + "aliases": [ + "uom", + ], + "denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "exponent": 0, + }, + { + "denom": "om", + "exponent": 6, + }, + ], + "description": "The native token of MANTRA", + "display": "om", + "extendedDescription": "The first RWA Layer 1 Blockchain, capable of adherence and enforcement of real world regulatory requirements.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", + }, + }, + ], + "keywords": [ + "rwa", + "wasm", + "staking", + ], + "name": "MANTRA Chain", + "socials": { + "twitter": "https://x.com/MANTRA_Chain", + "website": "https://www.mantrachain.io/", + }, + "symbol": "OM", + "traces": [ + { + "chain": { + "channel_id": "channel-85077", + }, + "counterparty": { + "base_denom": "uom", + "chain_name": "mantrachain", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "denomUnits": [ @@ -19035,7 +19868,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "coingeckoId": "microtick", "denomUnits": [ { "aliases": [ @@ -20127,6 +20959,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Neutaro", "display": "neutaro", + "extendedDescription": "Neutaro (NTMPI) serves as the governance token for Timpi (www.timpi.io), a technology pioneer poised to shake up the industry through Decentralization, Web3, and AI.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", @@ -20141,6 +20974,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", }, "name": "Neutaro", + "socials": { + "twitter": "https://twitter.com/Timpi_TheNewWay", + "website": "https://neutaro.com/", + }, "symbol": "NTMPI", "traces": [ { @@ -21968,7 +22805,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Nibiru network", "display": "nibi", - "extendedDescription": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "extendedDescription": "Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -22003,6 +22840,111 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "denomUnits": [ + { + "aliases": [ + "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + ], + "denom": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "exponent": 0, + }, + { + "denom": "stNIBI", + "exponent": 6, + }, + ], + "description": "Liquid Staked Nibiru (Eris)", + "display": "stNIBI", + "extendedDescription": "Liquid Staked Nibiru, powered by Eris Protocol's amplifier contracts. Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + "theme": { + "primaryColorHex": "#14c0ce", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + }, + "name": "Liquid Staked Nibiru (Eris)", + "socials": { + "twitter": "https://x.com/eris_protocol", + "website": "https://nibiru.fi/docs/learn/liquid-stake/", + }, + "symbol": "stNIBI", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "denomUnits": [ + { + "aliases": [ + "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + ], + "denom": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "Noble USDC on Nibiru", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "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", + "theme": { + "backgroundColorHex": "#ffffff", + "circle": true, + "primaryColorHex": "#a8bbfb", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Noble USDC", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/A6A1B44D1234A9481D2BA8AD777804E40F42C4B57002072CF2E54462870038CA", "denomUnits": [ @@ -23926,14 +24868,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Staking and governance token for ODIN Protocol", + "description": "ODIN is the Staking and governance token for ODIN Protocol", "display": "odin", "images": [ { - "imageSync": { - "baseDenom": "loki", - "chainName": "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", }, @@ -23943,6 +24881,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", }, "name": "ODIN", + "socials": { + "twitter": "https://twitter.com/odinprotocol", + "website": "https://odinprotocol.io/", + }, "symbol": "ODIN", "traces": [ { @@ -23978,10 +24920,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "geo", "images": [ { - "imageSync": { - "baseDenom": "mGeo", - "chainName": "odin", - }, "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", "theme": { @@ -24010,6 +24948,104 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "coingeckoId": "doki", + "denomUnits": [ + { + "aliases": [ + "udoki", + ], + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "exponent": 0, + }, + { + "denom": "doki", + "exponent": 6, + }, + ], + "description": "DOKI the last Dragon", + "display": "doki", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "theme": { + "primaryColorHex": "#2e2d2a", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + }, + "name": "DOKI", + "socials": { + "twitter": "https://twitter.com/doki_coin", + "website": "https://dokicoin.io/", + }, + "symbol": "DOKI", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "udoki", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "denomUnits": [ + { + "aliases": [ + "umyrk", + ], + "denom": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "exponent": 0, + }, + { + "denom": "myrk", + "exponent": 6, + }, + ], + "description": "Myrkur the leader of OLD Order", + "display": "myrk", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "theme": { + "primaryColorHex": "#0a0707", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + }, + "name": "MYRK", + "socials": { + "twitter": "https://twitter.com/myrkweilds", + }, + "symbol": "MYRK", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "umyrk", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "denomUnits": [ @@ -24029,10 +25065,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "O9W", "images": [ { - "imageSync": { - "baseDenom": "mO9W", - "chainName": "odin", - }, "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", "theme": { @@ -24045,6 +25077,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", }, "name": "O9W", + "socials": { + "twitter": "https://twitter.com/odin9worlds", + "website": "https://www.odin9worlds.io/", + }, "symbol": "O9W", "traces": [ { @@ -24422,6 +25458,53 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "ics20", }, + { + "base": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "denomUnits": [ + { + "aliases": [ + "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + ], + "denom": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token powered by OmniFlixHub", + "display": "ygata", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-199", + }, + "counterparty": { + "base_denom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chain_name": "omniflixhub", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/B8FD98E11799F3D76F184A6976CA25EDA8625AE5F05B1875ACF2D430A611DD99", "denomUnits": [ @@ -24802,6 +25885,113 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + ], + "denom": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "exponent": 0, + }, + { + "denom": "pepe", + "exponent": 6, + }, + ], + "description": "The PEPE native token of Oraichain", + "display": "pepe", + "images": [ + { + "imageSync": { + "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#cc3233", + }, + }, + ], + "keywords": [ + "meme", + ], + "logoURIs": { + "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", + }, + "name": "Pepe", + "symbol": "PEPE", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + ], + "denom": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "exponent": 0, + }, + { + "denom": "hmstr", + "exponent": 9, + }, + ], + "description": "The Hamster Kombat native token of Oraichain", + "display": "hmstr", + "images": [ + { + "imageSync": { + "baseDenom": "nanohmstr", + "chainName": "ton", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, + "primaryColorHex": "#f4941c", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + }, + "name": "HMSTR", + "symbol": "HMSTR", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", "denomUnits": [ @@ -24903,7 +26093,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", - "coingeckoId": "arable-usd", "denomUnits": [ { "aliases": [ @@ -25368,6 +26557,92 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "address": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "base": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "denomUnits": [ + { + "aliases": [ + "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + ], + "denom": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "exponent": 0, + }, + { + "denom": "bARCH", + "exponent": 18, + }, + ], + "description": "BackBone Labs Liquid Staked Archway", + "display": "bARCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + "name": "BackBone Labs Liquid Staked Archway", + "symbol": "bARCH", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, + { + "address": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "base": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "denomUnits": [ + { + "aliases": [ + "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + ], + "denom": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "exponent": 0, + }, + { + "denom": "TOKN", + "exponent": 18, + }, + ], + "description": "Architects Token", + "display": "TOKN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + "name": "Architects Token", + "symbol": "TOKN", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, { "base": "ibc/177AD4B979B9733285516FA7300031D339D4E4112133AC92137A0577E8B6E75D", "denomUnits": [ @@ -25623,6 +26898,54 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "denomUnits": [ + { + "aliases": [ + "uatone", + ], + "denom": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "exponent": 0, + }, + { + "denom": "atone", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of AtomOne", + "display": "atone", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + "name": "Atone", + "socials": { + "twitter": "https://x.com/_atomone", + "website": "https://atom.one", + }, + "symbol": "ATONE", + "traces": [ + { + "chain": { + "channel_id": "channel-85309", + }, + "counterparty": { + "base_denom": "uatone", + "chain_name": "atomone", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", "coingeckoId": "aura-network", @@ -25887,6 +27210,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "display": "usdt", "images": [ { + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, "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", "theme": { @@ -25917,6 +27244,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz }, { "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "coingeckoId": "axlweth", "denomUnits": [ { "aliases": [ @@ -27386,6 +28714,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, "symbol": "YUM.axl", "traces": [ { @@ -27574,6 +28906,292 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "denomUnits": [ + { + "aliases": [ + "arbitrum-uusdt", + ], + "denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "chainName": "arbitrum", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Arbitrum)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "arbitrum-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "denomUnits": [ + { + "aliases": [ + "optimism-uusdt", + ], + "denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "chainName": "optimism", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Optimism)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "optimism-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "denomUnits": [ + { + "aliases": [ + "polygon-uusdt", + ], + "denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Polygon on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "chainName": "polygon", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Polygon)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "polygon-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "denomUnits": [ + { + "aliases": [ + "cbbtc-satoshi", + ], + "denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "exponent": 0, + }, + { + "denom": "cbbtc", + "exponent": 8, + }, + ], + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "chainName": "base", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#0052FF", + }, + }, + ], + "name": "Coinbase Warpped Bitcoin", + "symbol": "axl-cbBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "cbbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "denomUnits": [ + { + "aliases": [ + "fbtc-satoshi", + ], + "denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "exponent": 0, + }, + { + "denom": "fbtc", + "exponent": 8, + }, + ], + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "chainName": "mantle", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", + }, + }, + ], + "name": "Fire Bitcoin", + "symbol": "axlFBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "fbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "denomUnits": [ + { + "aliases": [ + "lbtc-satoshi", + ], + "denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "exponent": 0, + }, + { + "denom": "lbtc", + "exponent": 8, + }, + ], + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0x8236a87084f8B84306f72007F36F2618A5634494", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#162E2F", + }, + }, + ], + "name": "Lombard Staked Bitcoin", + "symbol": "axlLBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "lbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", "coingeckoId": "band-protocol", @@ -27642,8 +29260,9 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "exponent": 6, }, ], - "description": "BeeZee native blockchain", + "description": "BeeZee network native coin", "display": "bze", + "extendedDescription": "Powered by BZE Coin, BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", @@ -27658,6 +29277,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg", }, "name": "BeeZee", + "socials": { + "twitter": "https://x.com/BZEdgeCoin", + "website": "https://getbze.com/", + }, "symbol": "BZE", "traces": [ { @@ -27692,6 +29315,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "Vidulum App Token", "display": "vdl", + "extendedDescription": "Vidulum App is your one stop, multi-currency crypto web wallet. Hold, earn, and own your crypto assets in non-custodial fashion from any device, anytime.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", @@ -27706,6 +29330,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", }, "name": "Vidulum", + "socials": { + "twitter": "https://x.com/VidulumApp", + "website": "https://vidulum.app/", + }, "symbol": "VDL", "traces": [ { @@ -28717,6 +30345,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "The native token of Bluzelle", "display": "bnt", + "extendedDescription": "BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", @@ -30560,7 +32189,6 @@ Celestia's unique approach includes a consensus and data availability layer that }, { "base": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "coingeckoId": "harbor-2", "denomUnits": [ { "aliases": [ @@ -32733,7 +34361,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "coingeckoId": "crescent-network", "denomUnits": [ { "aliases": [ @@ -33185,7 +34812,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "coingeckoId": "dig-chain", "denomUnits": [ { "aliases": [ @@ -33277,6 +34903,51 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "denomUnits": [ + { + "aliases": [ + "udgn", + ], + "denom": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "exponent": 0, + }, + { + "denom": "DGN", + "exponent": 6, + }, + ], + "description": "Dungeon native token", + "display": "DGN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + "theme": { + "circle": true, + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + }, + "name": "Dungeon Coin", + "symbol": "DGN", + "traces": [ + { + "chain": { + "channel_id": "channel-85791", + }, + "counterparty": { + "base_denom": "udgn", + "chain_name": "dungeon", + "channel_id": "channel-2", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "coingeckoId": "dydx-chain", @@ -35941,7 +37612,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "coingeckoId": "gravity-bridge-usdc", "denomUnits": [ { "aliases": [ @@ -36377,7 +38047,7 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, "name": "Islamic Coin", "socials": { - "twitter": "https://x.com/1slamic_coin", + "twitter": "https://x.com/islamic_coin", "website": "https://islamiccoin.net", }, "symbol": "ISLM", @@ -36554,7 +38224,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "coingeckoId": "imv", "denomUnits": [ { "aliases": [ @@ -37985,18 +39654,18 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "base": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "denom": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "exponent": 0, }, { "denom": "DRUGS", - "exponent": 9, + "exponent": 6, }, ], "description": "Distributing happiness, is a serious business", @@ -38017,7 +39686,7 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "channel_id": "channel-122", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", "chain_name": "injective", "channel_id": "channel-8", }, @@ -38026,6 +39695,235 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "denomUnits": [ + { + "aliases": [ + "uint3", + ], + "denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "exponent": 0, + }, + { + "denom": "int3", + "exponent": 6, + }, + ], + "description": "Int3face blockchain native token", + "display": "int3", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + }, + "name": "Int3face Token", + "socials": { + "twitter": "https://x.com/int3face", + "website": "https://int3face.io/", + }, + "symbol": "INT3", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "uint3", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + ], + "denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "exponent": 0, + }, + { + "denom": "btc", + "exponent": 8, + }, + ], + "description": "Bitcoin on Int3face", + "display": "btc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + }, + "name": "Bitcoin", + "symbol": "BTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + ], + "denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "exponent": 0, + }, + { + "denom": "bch", + "exponent": 8, + }, + ], + "description": "Bitcoin-Cash on Int3face", + "display": "bch", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + }, + "name": "Bitcoin Cash", + "symbol": "BCH", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + ], + "denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "exponent": 0, + }, + { + "denom": "doge", + "exponent": 8, + }, + ], + "description": "Dogecoin on Int3face", + "display": "doge", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + }, + "name": "Dogecoin", + "symbol": "DOGE", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + ], + "denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "exponent": 0, + }, + { + "denom": "ltc", + "exponent": 8, + }, + ], + "description": "Litecoin on Int3face", + "display": "ltc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + }, + "name": "Litecoin", + "symbol": "LTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", "coingeckoId": "iris-network", @@ -43217,6 +45115,58 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "denomUnits": [ + { + "aliases": [ + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + ], + "denom": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "exponent": 0, + }, + { + "denom": "yum", + "exponent": 18, + }, + ], + "display": "yum", + "images": [ + { + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + "theme": { + "primaryColorHex": "#33a6e7", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-259", + }, + "counterparty": { + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", "coingeckoId": "kyve-network", @@ -43630,6 +45580,79 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "coingeckoId": "mantra-dao", + "denomUnits": [ + { + "aliases": [ + "uom", + ], + "denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "exponent": 0, + }, + { + "denom": "om", + "exponent": 6, + }, + ], + "description": "The native token of MANTRA", + "display": "om", + "extendedDescription": "The first RWA Layer 1 Blockchain, capable of adherence and enforcement of real world regulatory requirements.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", + }, + }, + ], + "keywords": [ + "rwa", + "wasm", + "staking", + ], + "name": "MANTRA Chain", + "socials": { + "twitter": "https://x.com/MANTRA_Chain", + "website": "https://www.mantrachain.io/", + }, + "symbol": "OM", + "traces": [ + { + "chain": { + "channel_id": "channel-85077", + }, + "counterparty": { + "base_denom": "uom", + "chain_name": "mantrachain", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "denomUnits": [ @@ -43833,7 +45856,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "coingeckoId": "microtick", "denomUnits": [ { "aliases": [ @@ -44925,6 +46947,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Neutaro", "display": "neutaro", + "extendedDescription": "Neutaro (NTMPI) serves as the governance token for Timpi (www.timpi.io), a technology pioneer poised to shake up the industry through Decentralization, Web3, and AI.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", @@ -44939,6 +46962,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", }, "name": "Neutaro", + "socials": { + "twitter": "https://twitter.com/Timpi_TheNewWay", + "website": "https://neutaro.com/", + }, "symbol": "NTMPI", "traces": [ { @@ -46766,7 +48793,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Nibiru network", "display": "nibi", - "extendedDescription": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "extendedDescription": "Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -46801,6 +48828,111 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "denomUnits": [ + { + "aliases": [ + "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + ], + "denom": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "exponent": 0, + }, + { + "denom": "stNIBI", + "exponent": 6, + }, + ], + "description": "Liquid Staked Nibiru (Eris)", + "display": "stNIBI", + "extendedDescription": "Liquid Staked Nibiru, powered by Eris Protocol's amplifier contracts. Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + "theme": { + "primaryColorHex": "#14c0ce", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + }, + "name": "Liquid Staked Nibiru (Eris)", + "socials": { + "twitter": "https://x.com/eris_protocol", + "website": "https://nibiru.fi/docs/learn/liquid-stake/", + }, + "symbol": "stNIBI", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "denomUnits": [ + { + "aliases": [ + "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + ], + "denom": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "Noble USDC on Nibiru", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "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", + "theme": { + "backgroundColorHex": "#ffffff", + "circle": true, + "primaryColorHex": "#a8bbfb", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Noble USDC", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/A6A1B44D1234A9481D2BA8AD777804E40F42C4B57002072CF2E54462870038CA", "denomUnits": [ @@ -48724,14 +50856,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Staking and governance token for ODIN Protocol", + "description": "ODIN is the Staking and governance token for ODIN Protocol", "display": "odin", "images": [ { - "imageSync": { - "baseDenom": "loki", - "chainName": "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", }, @@ -48741,6 +50869,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", }, "name": "ODIN", + "socials": { + "twitter": "https://twitter.com/odinprotocol", + "website": "https://odinprotocol.io/", + }, "symbol": "ODIN", "traces": [ { @@ -48776,10 +50908,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "geo", "images": [ { - "imageSync": { - "baseDenom": "mGeo", - "chainName": "odin", - }, "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", "theme": { @@ -48808,6 +50936,104 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "coingeckoId": "doki", + "denomUnits": [ + { + "aliases": [ + "udoki", + ], + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "exponent": 0, + }, + { + "denom": "doki", + "exponent": 6, + }, + ], + "description": "DOKI the last Dragon", + "display": "doki", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "theme": { + "primaryColorHex": "#2e2d2a", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + }, + "name": "DOKI", + "socials": { + "twitter": "https://twitter.com/doki_coin", + "website": "https://dokicoin.io/", + }, + "symbol": "DOKI", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "udoki", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "denomUnits": [ + { + "aliases": [ + "umyrk", + ], + "denom": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "exponent": 0, + }, + { + "denom": "myrk", + "exponent": 6, + }, + ], + "description": "Myrkur the leader of OLD Order", + "display": "myrk", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "theme": { + "primaryColorHex": "#0a0707", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + }, + "name": "MYRK", + "socials": { + "twitter": "https://twitter.com/myrkweilds", + }, + "symbol": "MYRK", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "umyrk", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "denomUnits": [ @@ -48827,10 +51053,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "O9W", "images": [ { - "imageSync": { - "baseDenom": "mO9W", - "chainName": "odin", - }, "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", "theme": { @@ -48843,6 +51065,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", }, "name": "O9W", + "socials": { + "twitter": "https://twitter.com/odin9worlds", + "website": "https://www.odin9worlds.io/", + }, "symbol": "O9W", "traces": [ { @@ -49220,6 +51446,53 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "ics20", }, + { + "base": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "denomUnits": [ + { + "aliases": [ + "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + ], + "denom": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token powered by OmniFlixHub", + "display": "ygata", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-199", + }, + "counterparty": { + "base_denom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chain_name": "omniflixhub", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/B8FD98E11799F3D76F184A6976CA25EDA8625AE5F05B1875ACF2D430A611DD99", "denomUnits": [ @@ -49600,6 +51873,113 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + ], + "denom": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "exponent": 0, + }, + { + "denom": "pepe", + "exponent": 6, + }, + ], + "description": "The PEPE native token of Oraichain", + "display": "pepe", + "images": [ + { + "imageSync": { + "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#cc3233", + }, + }, + ], + "keywords": [ + "meme", + ], + "logoURIs": { + "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", + }, + "name": "Pepe", + "symbol": "PEPE", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + ], + "denom": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "exponent": 0, + }, + { + "denom": "hmstr", + "exponent": 9, + }, + ], + "description": "The Hamster Kombat native token of Oraichain", + "display": "hmstr", + "images": [ + { + "imageSync": { + "baseDenom": "nanohmstr", + "chainName": "ton", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, + "primaryColorHex": "#f4941c", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + }, + "name": "HMSTR", + "symbol": "HMSTR", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", "coingeckoId": "medibloc", @@ -49760,9 +52140,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Persistence is a blockchain platform designed to facilitate institutional decentralized finance (DeFi) and real-world asset tokenization, integrating with the Cosmos ecosystem.", + "description": "Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.", "display": "xprt", - "extendedDescription": "Persistence aims to bridge traditional finance and decentralized finance (DeFi) by enabling the tokenization of real-world assets. The platform supports various financial products, including staking-as-a-service, commodity trading, and debt financing. Persistence leverages the Cosmos SDK for interoperability and scalability, ensuring seamless integration with other blockchain networks. The native token, XPRT, is used for staking, governance, and securing the network. Persistence's mission is to create a decentralized financial ecosystem that brings institutional-grade solutions to the blockchain space.", + "extendedDescription": "Persistence One is building a Bitcoin interoperability solution to enable cross-chain swaps across bitcoin Layer 2s. The rapid rollout of Bitcoin L2s and side chains has led to a significant increase in BTC variants, causing fragmentation and hurting BTCfi scalability. Persistence One is addressing this issue head-on by offering fast, zero-slippage, cross-chain swaps, enabling BTC and related assets to move seamlessly between different L2s.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -50718,7 +53098,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "coingeckoId": "provenance-blockchain", "denomUnits": [ { "aliases": [ @@ -55277,7 +57656,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "coingeckoId": "quasar-2", "denomUnits": [ { "aliases": [ @@ -55292,7 +57670,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "The native token of Quasar", + "description": "The QSR token has transitioned to a legacy token, with migration to the EVM ecosystem currently underway.", "display": "qsr", "images": [ { @@ -55305,12 +57683,12 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, - "name": "Quasar", + "name": "Quasar (legacy)", "socials": { "twitter": "https://twitter.com/QuasarFi", "website": "https://www.quasar.fi/", }, - "symbol": "QSR", + "symbol": "QSR.legacy", "traces": [ { "chain": { @@ -56015,7 +58393,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "coingeckoId": "qwoyn", "denomUnits": [ { "aliases": [ @@ -58662,6 +61039,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -58734,8 +61162,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 18, }, ], - "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", "display": "stos", + "extendedDescription": "By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", @@ -58750,6 +61179,15 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, "name": "Stratos", + "socials": { + "discord": "https://discord.gg/tpQGpC2nMh", + "github": "https://github.com/stratosnet", + "medium": "https://stratos-network.medium.com/", + "reddit": "https://www.reddit.com/r/stratoscommunity/", + "telegram": "https://t.me/StratosOfficial", + "twitter": "https://x.com/Stratos_Network", + "website": "https://www.thestratos.org/", + }, "symbol": "STOS", "traces": [ { @@ -59009,7 +61447,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -59102,7 +61539,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ @@ -59619,6 +62055,58 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "denomUnits": [ + { + "aliases": [ + "usynt", + ], + "denom": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "exponent": 0, + }, + { + "denom": "SYNT", + "exponent": 6, + }, + ], + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "display": "SYNT", + "extendedDescription": "The Data Layer is a decentralized, permissionless protocol built on Synternet that serves as the customizable execution layer between all blockchains, enabling developers instant access to any cross-chain data. It uses a pub-sub (publish-subscribe) framework where data providers can stream live data to applications and smart contracts", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + }, + "name": "Synternet", + "socials": { + "twitter": "https://twitter.com/synternet_com", + "website": "https://www.synternet.com/", + }, + "symbol": "SYNT", + "traces": [ + { + "chain": { + "channel_id": "channel-85186", + }, + "counterparty": { + "base_denom": "usynt", + "chain_name": "synternet", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "coingeckoId": "teritori", @@ -61988,7 +64476,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "coingeckoId": "tgrade", "denomUnits": [ { "aliases": [ @@ -62350,9 +64837,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 6, }, ], - "description": "Persistence is a blockchain platform designed to facilitate institutional decentralized finance (DeFi) and real-world asset tokenization, integrating with the Cosmos ecosystem.", + "description": "Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.", "display": "xprt", - "extendedDescription": "Persistence aims to bridge traditional finance and decentralized finance (DeFi) by enabling the tokenization of real-world assets. The platform supports various financial products, including staking-as-a-service, commodity trading, and debt financing. Persistence leverages the Cosmos SDK for interoperability and scalability, ensuring seamless integration with other blockchain networks. The native token, XPRT, is used for staking, governance, and securing the network. Persistence's mission is to create a decentralized financial ecosystem that brings institutional-grade solutions to the blockchain space.", + "extendedDescription": "Persistence One is building a Bitcoin interoperability solution to enable cross-chain swaps across bitcoin Layer 2s. The rapid rollout of Bitcoin L2s and side chains has led to a significant increase in BTC variants, causing fragmentation and hurting BTCfi scalability. Persistence One is addressing this issue head-on by offering fast, zero-slippage, cross-chain swaps, enabling BTC and related assets to move seamlessly between different L2s.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -63308,7 +65795,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "coingeckoId": "provenance-blockchain", "denomUnits": [ { "aliases": [ @@ -67867,7 +70353,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "coingeckoId": "quasar-2", "denomUnits": [ { "aliases": [ @@ -67882,7 +70367,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 6, }, ], - "description": "The native token of Quasar", + "description": "The QSR token has transitioned to a legacy token, with migration to the EVM ecosystem currently underway.", "display": "qsr", "images": [ { @@ -67895,12 +70380,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, - "name": "Quasar", + "name": "Quasar (legacy)", "socials": { "twitter": "https://twitter.com/QuasarFi", "website": "https://www.quasar.fi/", }, - "symbol": "QSR", + "symbol": "QSR.legacy", "traces": [ { "chain": { @@ -68605,7 +71090,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "coingeckoId": "qwoyn", "denomUnits": [ { "aliases": [ @@ -71252,6 +73736,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -71324,8 +73859,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 18, }, ], - "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", "display": "stos", + "extendedDescription": "By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", @@ -71340,6 +73876,15 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, "name": "Stratos", + "socials": { + "discord": "https://discord.gg/tpQGpC2nMh", + "github": "https://github.com/stratosnet", + "medium": "https://stratos-network.medium.com/", + "reddit": "https://www.reddit.com/r/stratoscommunity/", + "telegram": "https://t.me/StratosOfficial", + "twitter": "https://x.com/Stratos_Network", + "website": "https://www.thestratos.org/", + }, "symbol": "STOS", "traces": [ { @@ -71599,7 +74144,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -71692,7 +74236,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ @@ -72209,6 +74752,58 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "denomUnits": [ + { + "aliases": [ + "usynt", + ], + "denom": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "exponent": 0, + }, + { + "denom": "SYNT", + "exponent": 6, + }, + ], + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "display": "SYNT", + "extendedDescription": "The Data Layer is a decentralized, permissionless protocol built on Synternet that serves as the customizable execution layer between all blockchains, enabling developers instant access to any cross-chain data. It uses a pub-sub (publish-subscribe) framework where data providers can stream live data to applications and smart contracts", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + }, + "name": "Synternet", + "socials": { + "twitter": "https://twitter.com/synternet_com", + "website": "https://www.synternet.com/", + }, + "symbol": "SYNT", + "traces": [ + { + "chain": { + "channel_id": "channel-85186", + }, + "counterparty": { + "base_denom": "usynt", + "chain_name": "synternet", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "coingeckoId": "teritori", @@ -74578,7 +77173,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "coingeckoId": "tgrade", "denomUnits": [ { "aliases": [ @@ -76218,7 +78812,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA { "address": "juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", "base": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", - "coingeckoId": "wynd", "denomUnits": [ { "aliases": [ @@ -78393,7 +80986,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "coingeckoId": "lvn", "denomUnits": [ { "aliases": [ @@ -79779,7 +82371,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", "base": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", - "coingeckoId": "wynd", "denomUnits": [ { "aliases": [ @@ -81954,7 +84545,6 @@ We support innovation in the Cosmos Ecosystem by funding and supporting projects { "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", "base": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "coingeckoId": "lvn", "denomUnits": [ { "aliases": [ diff --git a/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap index a1268fbf7..530f17539 100644 --- a/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap @@ -105,7 +105,6 @@ exports[`getIbcAssets 1`] = ` }, { "base": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", - "coingeckoId": "arable-usd", "denomUnits": [ { "aliases": [ @@ -570,6 +569,92 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "address": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "base": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "denomUnits": [ + { + "aliases": [ + "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + ], + "denom": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "exponent": 0, + }, + { + "denom": "bARCH", + "exponent": 18, + }, + ], + "description": "BackBone Labs Liquid Staked Archway", + "display": "bARCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + "name": "BackBone Labs Liquid Staked Archway", + "symbol": "bARCH", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, + { + "address": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "base": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "denomUnits": [ + { + "aliases": [ + "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + ], + "denom": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "exponent": 0, + }, + { + "denom": "TOKN", + "exponent": 18, + }, + ], + "description": "Architects Token", + "display": "TOKN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + "name": "Architects Token", + "symbol": "TOKN", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, { "base": "ibc/177AD4B979B9733285516FA7300031D339D4E4112133AC92137A0577E8B6E75D", "denomUnits": [ @@ -825,6 +910,54 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "denomUnits": [ + { + "aliases": [ + "uatone", + ], + "denom": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "exponent": 0, + }, + { + "denom": "atone", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of AtomOne", + "display": "atone", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + "name": "Atone", + "socials": { + "twitter": "https://x.com/_atomone", + "website": "https://atom.one", + }, + "symbol": "ATONE", + "traces": [ + { + "chain": { + "channel_id": "channel-85309", + }, + "counterparty": { + "base_denom": "uatone", + "chain_name": "atomone", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", "coingeckoId": "aura-network", @@ -1089,6 +1222,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "display": "usdt", "images": [ { + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, "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", "theme": { @@ -1119,6 +1256,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz }, { "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "coingeckoId": "axlweth", "denomUnits": [ { "aliases": [ @@ -2588,6 +2726,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, "symbol": "YUM.axl", "traces": [ { @@ -2776,6 +2918,292 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "denomUnits": [ + { + "aliases": [ + "arbitrum-uusdt", + ], + "denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "chainName": "arbitrum", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Arbitrum)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "arbitrum-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "denomUnits": [ + { + "aliases": [ + "optimism-uusdt", + ], + "denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "chainName": "optimism", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Optimism)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "optimism-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "denomUnits": [ + { + "aliases": [ + "polygon-uusdt", + ], + "denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Polygon on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "chainName": "polygon", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Polygon)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "polygon-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "denomUnits": [ + { + "aliases": [ + "cbbtc-satoshi", + ], + "denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "exponent": 0, + }, + { + "denom": "cbbtc", + "exponent": 8, + }, + ], + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "chainName": "base", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#0052FF", + }, + }, + ], + "name": "Coinbase Warpped Bitcoin", + "symbol": "axl-cbBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "cbbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "denomUnits": [ + { + "aliases": [ + "fbtc-satoshi", + ], + "denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "exponent": 0, + }, + { + "denom": "fbtc", + "exponent": 8, + }, + ], + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "chainName": "mantle", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", + }, + }, + ], + "name": "Fire Bitcoin", + "symbol": "axlFBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "fbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "denomUnits": [ + { + "aliases": [ + "lbtc-satoshi", + ], + "denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "exponent": 0, + }, + { + "denom": "lbtc", + "exponent": 8, + }, + ], + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0x8236a87084f8B84306f72007F36F2618A5634494", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#162E2F", + }, + }, + ], + "name": "Lombard Staked Bitcoin", + "symbol": "axlLBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "lbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", "coingeckoId": "band-protocol", @@ -2844,8 +3272,9 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "exponent": 6, }, ], - "description": "BeeZee native blockchain", + "description": "BeeZee network native coin", "display": "bze", + "extendedDescription": "Powered by BZE Coin, BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", @@ -2860,6 +3289,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg", }, "name": "BeeZee", + "socials": { + "twitter": "https://x.com/BZEdgeCoin", + "website": "https://getbze.com/", + }, "symbol": "BZE", "traces": [ { @@ -2894,6 +3327,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "Vidulum App Token", "display": "vdl", + "extendedDescription": "Vidulum App is your one stop, multi-currency crypto web wallet. Hold, earn, and own your crypto assets in non-custodial fashion from any device, anytime.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", @@ -2908,6 +3342,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", }, "name": "Vidulum", + "socials": { + "twitter": "https://x.com/VidulumApp", + "website": "https://vidulum.app/", + }, "symbol": "VDL", "traces": [ { @@ -3919,6 +4357,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "The native token of Bluzelle", "display": "bnt", + "extendedDescription": "BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", @@ -5762,7 +6201,6 @@ Celestia's unique approach includes a consensus and data availability layer that }, { "base": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "coingeckoId": "harbor-2", "denomUnits": [ { "aliases": [ @@ -7935,7 +8373,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "coingeckoId": "crescent-network", "denomUnits": [ { "aliases": [ @@ -8387,7 +8824,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "coingeckoId": "dig-chain", "denomUnits": [ { "aliases": [ @@ -8479,6 +8915,51 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "denomUnits": [ + { + "aliases": [ + "udgn", + ], + "denom": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "exponent": 0, + }, + { + "denom": "DGN", + "exponent": 6, + }, + ], + "description": "Dungeon native token", + "display": "DGN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + "theme": { + "circle": true, + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + }, + "name": "Dungeon Coin", + "symbol": "DGN", + "traces": [ + { + "chain": { + "channel_id": "channel-85791", + }, + "counterparty": { + "base_denom": "udgn", + "chain_name": "dungeon", + "channel_id": "channel-2", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "coingeckoId": "dydx-chain", @@ -11143,7 +11624,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "coingeckoId": "gravity-bridge-usdc", "denomUnits": [ { "aliases": [ @@ -11579,7 +12059,7 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, "name": "Islamic Coin", "socials": { - "twitter": "https://x.com/1slamic_coin", + "twitter": "https://x.com/islamic_coin", "website": "https://islamiccoin.net", }, "symbol": "ISLM", @@ -11756,7 +12236,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "coingeckoId": "imv", "denomUnits": [ { "aliases": [ @@ -13187,18 +13666,18 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "base": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "denom": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "exponent": 0, }, { "denom": "DRUGS", - "exponent": 9, + "exponent": 6, }, ], "description": "Distributing happiness, is a serious business", @@ -13219,7 +13698,7 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "channel_id": "channel-122", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", "chain_name": "injective", "channel_id": "channel-8", }, @@ -13228,6 +13707,235 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "denomUnits": [ + { + "aliases": [ + "uint3", + ], + "denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "exponent": 0, + }, + { + "denom": "int3", + "exponent": 6, + }, + ], + "description": "Int3face blockchain native token", + "display": "int3", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + }, + "name": "Int3face Token", + "socials": { + "twitter": "https://x.com/int3face", + "website": "https://int3face.io/", + }, + "symbol": "INT3", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "uint3", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + ], + "denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "exponent": 0, + }, + { + "denom": "btc", + "exponent": 8, + }, + ], + "description": "Bitcoin on Int3face", + "display": "btc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + }, + "name": "Bitcoin", + "symbol": "BTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + ], + "denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "exponent": 0, + }, + { + "denom": "bch", + "exponent": 8, + }, + ], + "description": "Bitcoin-Cash on Int3face", + "display": "bch", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + }, + "name": "Bitcoin Cash", + "symbol": "BCH", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + ], + "denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "exponent": 0, + }, + { + "denom": "doge", + "exponent": 8, + }, + ], + "description": "Dogecoin on Int3face", + "display": "doge", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + }, + "name": "Dogecoin", + "symbol": "DOGE", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + ], + "denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "exponent": 0, + }, + { + "denom": "ltc", + "exponent": 8, + }, + ], + "description": "Litecoin on Int3face", + "display": "ltc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + }, + "name": "Litecoin", + "symbol": "LTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", "coingeckoId": "iris-network", @@ -18419,6 +19127,58 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "denomUnits": [ + { + "aliases": [ + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + ], + "denom": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "exponent": 0, + }, + { + "denom": "yum", + "exponent": 18, + }, + ], + "display": "yum", + "images": [ + { + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + "theme": { + "primaryColorHex": "#33a6e7", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-259", + }, + "counterparty": { + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", "coingeckoId": "kyve-network", @@ -18832,6 +19592,79 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "coingeckoId": "mantra-dao", + "denomUnits": [ + { + "aliases": [ + "uom", + ], + "denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "exponent": 0, + }, + { + "denom": "om", + "exponent": 6, + }, + ], + "description": "The native token of MANTRA", + "display": "om", + "extendedDescription": "The first RWA Layer 1 Blockchain, capable of adherence and enforcement of real world regulatory requirements.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", + }, + }, + ], + "keywords": [ + "rwa", + "wasm", + "staking", + ], + "name": "MANTRA Chain", + "socials": { + "twitter": "https://x.com/MANTRA_Chain", + "website": "https://www.mantrachain.io/", + }, + "symbol": "OM", + "traces": [ + { + "chain": { + "channel_id": "channel-85077", + }, + "counterparty": { + "base_denom": "uom", + "chain_name": "mantrachain", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "denomUnits": [ @@ -19035,7 +19868,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "coingeckoId": "microtick", "denomUnits": [ { "aliases": [ @@ -20127,6 +20959,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Neutaro", "display": "neutaro", + "extendedDescription": "Neutaro (NTMPI) serves as the governance token for Timpi (www.timpi.io), a technology pioneer poised to shake up the industry through Decentralization, Web3, and AI.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", @@ -20141,6 +20974,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", }, "name": "Neutaro", + "socials": { + "twitter": "https://twitter.com/Timpi_TheNewWay", + "website": "https://neutaro.com/", + }, "symbol": "NTMPI", "traces": [ { @@ -21968,7 +22805,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Nibiru network", "display": "nibi", - "extendedDescription": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "extendedDescription": "Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -22003,6 +22840,111 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "denomUnits": [ + { + "aliases": [ + "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + ], + "denom": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "exponent": 0, + }, + { + "denom": "stNIBI", + "exponent": 6, + }, + ], + "description": "Liquid Staked Nibiru (Eris)", + "display": "stNIBI", + "extendedDescription": "Liquid Staked Nibiru, powered by Eris Protocol's amplifier contracts. Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + "theme": { + "primaryColorHex": "#14c0ce", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + }, + "name": "Liquid Staked Nibiru (Eris)", + "socials": { + "twitter": "https://x.com/eris_protocol", + "website": "https://nibiru.fi/docs/learn/liquid-stake/", + }, + "symbol": "stNIBI", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "denomUnits": [ + { + "aliases": [ + "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + ], + "denom": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "Noble USDC on Nibiru", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "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", + "theme": { + "backgroundColorHex": "#ffffff", + "circle": true, + "primaryColorHex": "#a8bbfb", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Noble USDC", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/A6A1B44D1234A9481D2BA8AD777804E40F42C4B57002072CF2E54462870038CA", "denomUnits": [ @@ -23926,14 +24868,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Staking and governance token for ODIN Protocol", + "description": "ODIN is the Staking and governance token for ODIN Protocol", "display": "odin", "images": [ { - "imageSync": { - "baseDenom": "loki", - "chainName": "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", }, @@ -23943,6 +24881,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", }, "name": "ODIN", + "socials": { + "twitter": "https://twitter.com/odinprotocol", + "website": "https://odinprotocol.io/", + }, "symbol": "ODIN", "traces": [ { @@ -23978,10 +24920,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "geo", "images": [ { - "imageSync": { - "baseDenom": "mGeo", - "chainName": "odin", - }, "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", "theme": { @@ -24010,6 +24948,104 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "coingeckoId": "doki", + "denomUnits": [ + { + "aliases": [ + "udoki", + ], + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "exponent": 0, + }, + { + "denom": "doki", + "exponent": 6, + }, + ], + "description": "DOKI the last Dragon", + "display": "doki", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "theme": { + "primaryColorHex": "#2e2d2a", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + }, + "name": "DOKI", + "socials": { + "twitter": "https://twitter.com/doki_coin", + "website": "https://dokicoin.io/", + }, + "symbol": "DOKI", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "udoki", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "denomUnits": [ + { + "aliases": [ + "umyrk", + ], + "denom": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "exponent": 0, + }, + { + "denom": "myrk", + "exponent": 6, + }, + ], + "description": "Myrkur the leader of OLD Order", + "display": "myrk", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "theme": { + "primaryColorHex": "#0a0707", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + }, + "name": "MYRK", + "socials": { + "twitter": "https://twitter.com/myrkweilds", + }, + "symbol": "MYRK", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "umyrk", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "denomUnits": [ @@ -24029,10 +25065,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "O9W", "images": [ { - "imageSync": { - "baseDenom": "mO9W", - "chainName": "odin", - }, "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", "theme": { @@ -24045,6 +25077,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", }, "name": "O9W", + "socials": { + "twitter": "https://twitter.com/odin9worlds", + "website": "https://www.odin9worlds.io/", + }, "symbol": "O9W", "traces": [ { @@ -24422,6 +25458,53 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "ics20", }, + { + "base": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "denomUnits": [ + { + "aliases": [ + "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + ], + "denom": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token powered by OmniFlixHub", + "display": "ygata", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-199", + }, + "counterparty": { + "base_denom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chain_name": "omniflixhub", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/B8FD98E11799F3D76F184A6976CA25EDA8625AE5F05B1875ACF2D430A611DD99", "denomUnits": [ @@ -24802,6 +25885,113 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + ], + "denom": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "exponent": 0, + }, + { + "denom": "pepe", + "exponent": 6, + }, + ], + "description": "The PEPE native token of Oraichain", + "display": "pepe", + "images": [ + { + "imageSync": { + "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#cc3233", + }, + }, + ], + "keywords": [ + "meme", + ], + "logoURIs": { + "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", + }, + "name": "Pepe", + "symbol": "PEPE", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + ], + "denom": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "exponent": 0, + }, + { + "denom": "hmstr", + "exponent": 9, + }, + ], + "description": "The Hamster Kombat native token of Oraichain", + "display": "hmstr", + "images": [ + { + "imageSync": { + "baseDenom": "nanohmstr", + "chainName": "ton", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, + "primaryColorHex": "#f4941c", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + }, + "name": "HMSTR", + "symbol": "HMSTR", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", "denomUnits": [ @@ -24903,7 +26093,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", - "coingeckoId": "arable-usd", "denomUnits": [ { "aliases": [ @@ -25368,6 +26557,92 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "address": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "base": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "denomUnits": [ + { + "aliases": [ + "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + ], + "denom": "ibc/6D13674620A40DB3B00E9AAE549003803DC17FA7B5162CB7C5092F03E9D79282", + "exponent": 0, + }, + { + "denom": "bARCH", + "exponent": 18, + }, + ], + "description": "BackBone Labs Liquid Staked Archway", + "display": "bARCH", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/barch.png", + }, + "name": "BackBone Labs Liquid Staked Archway", + "symbol": "bARCH", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, + { + "address": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "base": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "denomUnits": [ + { + "aliases": [ + "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + ], + "denom": "ibc/3838496384B98CEDA02B5030FACFC4DEAFCA368568B9EAC186AA7E8C4359933F", + "exponent": 0, + }, + { + "denom": "TOKN", + "exponent": 18, + }, + ], + "description": "Architects Token", + "display": "TOKN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/tokn.png", + }, + "name": "Architects Token", + "symbol": "TOKN", + "traces": [ + { + "chain": { + "channel_id": "channel-1429", + }, + "counterparty": { + "base_denom": "archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu", + "chain_name": "archway", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "cw20", + }, { "base": "ibc/177AD4B979B9733285516FA7300031D339D4E4112133AC92137A0577E8B6E75D", "denomUnits": [ @@ -25623,6 +26898,54 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "denomUnits": [ + { + "aliases": [ + "uatone", + ], + "denom": "ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6", + "exponent": 0, + }, + { + "denom": "atone", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of AtomOne", + "display": "atone", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/atomone/images/atomone.svg", + }, + "name": "Atone", + "socials": { + "twitter": "https://x.com/_atomone", + "website": "https://atom.one", + }, + "symbol": "ATONE", + "traces": [ + { + "chain": { + "channel_id": "channel-85309", + }, + "counterparty": { + "base_denom": "uatone", + "chain_name": "atomone", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", "coingeckoId": "aura-network", @@ -25887,6 +27210,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "display": "usdt", "images": [ { + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, "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", "theme": { @@ -25917,6 +27244,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz }, { "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "coingeckoId": "axlweth", "denomUnits": [ { "aliases": [ @@ -27386,6 +28714,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, "symbol": "YUM.axl", "traces": [ { @@ -27574,6 +28906,292 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "denomUnits": [ + { + "aliases": [ + "arbitrum-uusdt", + ], + "denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "chainName": "arbitrum", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Arbitrum)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "arbitrum-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "denomUnits": [ + { + "aliases": [ + "optimism-uusdt", + ], + "denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "chainName": "optimism", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Optimism)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "optimism-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "denomUnits": [ + { + "aliases": [ + "polygon-uusdt", + ], + "denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin from Polygon on Axelar", + "display": "usdt", + "images": [ + { + "imageSync": { + "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "chainName": "polygon", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "name": "Tether USD (Polygon)", + "symbol": "axlUSDT", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "polygon-uusdt", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "denomUnits": [ + { + "aliases": [ + "cbbtc-satoshi", + ], + "denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "exponent": 0, + }, + { + "denom": "cbbtc", + "exponent": 8, + }, + ], + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf", + "chainName": "base", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#0052FF", + }, + }, + ], + "name": "Coinbase Warpped Bitcoin", + "symbol": "axl-cbBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "cbbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "denomUnits": [ + { + "aliases": [ + "fbtc-satoshi", + ], + "denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "exponent": 0, + }, + { + "denom": "fbtc", + "exponent": 8, + }, + ], + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0xC96dE26018A54D51c097160568752c4E3BD6C364", + "chainName": "mantle", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", + }, + }, + ], + "name": "Fire Bitcoin", + "symbol": "axlFBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "fbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "denomUnits": [ + { + "aliases": [ + "lbtc-satoshi", + ], + "denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "exponent": 0, + }, + { + "denom": "lbtc", + "exponent": 8, + }, + ], + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", + "images": [ + { + "imageSync": { + "baseDenom": "0x8236a87084f8B84306f72007F36F2618A5634494", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#162E2F", + }, + }, + ], + "name": "Lombard Staked Bitcoin", + "symbol": "axlLBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-208", + }, + "counterparty": { + "base_denom": "lbtc-satoshi", + "chain_name": "axelar", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", "coingeckoId": "band-protocol", @@ -27642,8 +29260,9 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "exponent": 6, }, ], - "description": "BeeZee native blockchain", + "description": "BeeZee network native coin", "display": "bze", + "extendedDescription": "Powered by BZE Coin, BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png", @@ -27658,6 +29277,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg", }, "name": "BeeZee", + "socials": { + "twitter": "https://x.com/BZEdgeCoin", + "website": "https://getbze.com/", + }, "symbol": "BZE", "traces": [ { @@ -27692,6 +29315,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "Vidulum App Token", "display": "vdl", + "extendedDescription": "Vidulum App is your one stop, multi-currency crypto web wallet. Hold, earn, and own your crypto assets in non-custodial fashion from any device, anytime.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", @@ -27706,6 +29330,10 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", }, "name": "Vidulum", + "socials": { + "twitter": "https://x.com/VidulumApp", + "website": "https://vidulum.app/", + }, "symbol": "VDL", "traces": [ { @@ -28717,6 +30345,7 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz ], "description": "The native token of Bluzelle", "display": "bnt", + "extendedDescription": "BeeZee Network offers users access to decentralized services through a variety of applications built on a fast and cost-efficient blockchain.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png", @@ -30560,7 +32189,6 @@ Celestia's unique approach includes a consensus and data availability layer that }, { "base": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "coingeckoId": "harbor-2", "denomUnits": [ { "aliases": [ @@ -32733,7 +34361,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "coingeckoId": "crescent-network", "denomUnits": [ { "aliases": [ @@ -33185,7 +34812,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "coingeckoId": "dig-chain", "denomUnits": [ { "aliases": [ @@ -33277,6 +34903,51 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "denomUnits": [ + { + "aliases": [ + "udgn", + ], + "denom": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "exponent": 0, + }, + { + "denom": "DGN", + "exponent": 6, + }, + ], + "description": "Dungeon native token", + "display": "DGN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + "theme": { + "circle": true, + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dungeon/images/DGN.png", + }, + "name": "Dungeon Coin", + "symbol": "DGN", + "traces": [ + { + "chain": { + "channel_id": "channel-85791", + }, + "counterparty": { + "base_denom": "udgn", + "chain_name": "dungeon", + "channel_id": "channel-2", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "coingeckoId": "dydx-chain", @@ -35941,7 +37612,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "coingeckoId": "gravity-bridge-usdc", "denomUnits": [ { "aliases": [ @@ -36377,7 +38047,7 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, "name": "Islamic Coin", "socials": { - "twitter": "https://x.com/1slamic_coin", + "twitter": "https://x.com/islamic_coin", "website": "https://islamiccoin.net", }, "symbol": "ISLM", @@ -36554,7 +38224,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "coingeckoId": "imv", "denomUnits": [ { "aliases": [ @@ -37985,18 +39654,18 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "base": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/73805AC33463D2C85F69D8B2188610F8B5226CA2A551F824BD356A730E839ECF", + "denom": "ibc/1FE58A615503ACFACF98532376F974F9E20226B2A8FA1BBFE79B96F351E7FC13", "exponent": 0, }, { "denom": "DRUGS", - "exponent": 9, + "exponent": 6, }, ], "description": "Distributing happiness, is a serious business", @@ -38017,7 +39686,7 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "channel_id": "channel-122", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", "chain_name": "injective", "channel_id": "channel-8", }, @@ -38026,6 +39695,235 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "denomUnits": [ + { + "aliases": [ + "uint3", + ], + "denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", + "exponent": 0, + }, + { + "denom": "int3", + "exponent": 6, + }, + ], + "description": "Int3face blockchain native token", + "display": "int3", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", + }, + "name": "Int3face Token", + "socials": { + "twitter": "https://x.com/int3face", + "website": "https://int3face.io/", + }, + "symbol": "INT3", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "uint3", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + ], + "denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", + "exponent": 0, + }, + { + "denom": "btc", + "exponent": 8, + }, + ], + "description": "Bitcoin on Int3face", + "display": "btc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", + }, + "name": "Bitcoin", + "symbol": "BTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + ], + "denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", + "exponent": 0, + }, + { + "denom": "bch", + "exponent": 8, + }, + ], + "description": "Bitcoin-Cash on Int3face", + "display": "bch", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", + }, + "name": "Bitcoin Cash", + "symbol": "BCH", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + ], + "denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "exponent": 0, + }, + { + "denom": "doge", + "exponent": 8, + }, + ], + "description": "Dogecoin on Int3face", + "display": "doge", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", + }, + "name": "Dogecoin", + "symbol": "DOGE", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "denomUnits": [ + { + "aliases": [ + "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + ], + "denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "exponent": 0, + }, + { + "denom": "ltc", + "exponent": 8, + }, + ], + "description": "Litecoin on Int3face", + "display": "ltc", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + "theme": { + "primaryColorHex": "#3d3d3d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", + }, + "name": "Litecoin", + "symbol": "LTC", + "traces": [ + { + "chain": { + "channel_id": "channel-82819", + }, + "counterparty": { + "base_denom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chain_name": "int3face", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", "coingeckoId": "iris-network", @@ -43217,6 +45115,58 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "denomUnits": [ + { + "aliases": [ + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + ], + "denom": "ibc/97ED7D07A5ED3D9FACDD805A14D85F0E1697CB26660EDCFC839AFCEA5264E2B7", + "exponent": 0, + }, + { + "denom": "yum", + "exponent": 18, + }, + ], + "display": "yum", + "images": [ + { + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + "theme": { + "primaryColorHex": "#33a6e7", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-259", + }, + "counterparty": { + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", "coingeckoId": "kyve-network", @@ -43630,6 +45580,79 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "coingeckoId": "mantra-dao", + "denomUnits": [ + { + "aliases": [ + "uom", + ], + "denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "exponent": 0, + }, + { + "denom": "om", + "exponent": 6, + }, + ], + "description": "The native token of MANTRA", + "display": "om", + "extendedDescription": "The first RWA Layer 1 Blockchain, capable of adherence and enforcement of real world regulatory requirements.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", + }, + }, + ], + "keywords": [ + "rwa", + "wasm", + "staking", + ], + "name": "MANTRA Chain", + "socials": { + "twitter": "https://x.com/MANTRA_Chain", + "website": "https://www.mantrachain.io/", + }, + "symbol": "OM", + "traces": [ + { + "chain": { + "channel_id": "channel-85077", + }, + "counterparty": { + "base_denom": "uom", + "chain_name": "mantrachain", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "denomUnits": [ @@ -43833,7 +45856,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "coingeckoId": "microtick", "denomUnits": [ { "aliases": [ @@ -44925,6 +46947,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Neutaro", "display": "neutaro", + "extendedDescription": "Neutaro (NTMPI) serves as the governance token for Timpi (www.timpi.io), a technology pioneer poised to shake up the industry through Decentralization, Web3, and AI.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", @@ -44939,6 +46962,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", }, "name": "Neutaro", + "socials": { + "twitter": "https://twitter.com/Timpi_TheNewWay", + "website": "https://neutaro.com/", + }, "symbol": "NTMPI", "traces": [ { @@ -46766,7 +48793,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "description": "The native token of Nibiru network", "display": "nibi", - "extendedDescription": "Nibiru hosts a variety of ecosystem partners in a wide variety of consumer sectors. From RWAs (Coded Estate) to DeFi (Constella, NOM) to Gaming (Blockchain Game Alliance, IntoTheVerse), Nibiru is advancing multiple emerging blockchain narratives that will onboard the next billion users.", + "extendedDescription": "Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", @@ -46801,6 +48828,111 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "denomUnits": [ + { + "aliases": [ + "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + ], + "denom": "ibc/334F690893DA6708EF71C248F1847222D337EECBB4F1E0F7D2E5F5B73A3103C5", + "exponent": 0, + }, + { + "denom": "stNIBI", + "exponent": 6, + }, + ], + "description": "Liquid Staked Nibiru (Eris)", + "display": "stNIBI", + "extendedDescription": "Liquid Staked Nibiru, powered by Eris Protocol's amplifier contracts. Nibiru is a smart contract ecosystem with a high-performance, EVM-equivalent execution layer. Nibiru is engineered to meet the growing demand for versatile, scalable, and easy-to-use Web3 applications.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + "theme": { + "primaryColorHex": "#14c0ce", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/stnibi-logo-circle-500x500.svg", + }, + "name": "Liquid Staked Nibiru (Eris)", + "socials": { + "twitter": "https://x.com/eris_protocol", + "website": "https://nibiru.fi/docs/learn/liquid-stake/", + }, + "symbol": "stNIBI", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "denomUnits": [ + { + "aliases": [ + "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + ], + "denom": "ibc/845CF2B8420D34B63E66F78D2DF57B9D4EF3E2898177C15B3000C2BE68E015FA", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "Noble USDC on Nibiru", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "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", + "theme": { + "backgroundColorHex": "#ffffff", + "circle": true, + "primaryColorHex": "#a8bbfb", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Noble USDC", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-21113", + }, + "counterparty": { + "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_name": "nibiru", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/A6A1B44D1234A9481D2BA8AD777804E40F42C4B57002072CF2E54462870038CA", "denomUnits": [ @@ -48724,14 +50856,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Staking and governance token for ODIN Protocol", + "description": "ODIN is the Staking and governance token for ODIN Protocol", "display": "odin", "images": [ { - "imageSync": { - "baseDenom": "loki", - "chainName": "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", }, @@ -48741,6 +50869,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", }, "name": "ODIN", + "socials": { + "twitter": "https://twitter.com/odinprotocol", + "website": "https://odinprotocol.io/", + }, "symbol": "ODIN", "traces": [ { @@ -48776,10 +50908,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "geo", "images": [ { - "imageSync": { - "baseDenom": "mGeo", - "chainName": "odin", - }, "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", "theme": { @@ -48808,6 +50936,104 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "coingeckoId": "doki", + "denomUnits": [ + { + "aliases": [ + "udoki", + ], + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "exponent": 0, + }, + { + "denom": "doki", + "exponent": 6, + }, + ], + "description": "DOKI the last Dragon", + "display": "doki", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "theme": { + "primaryColorHex": "#2e2d2a", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + }, + "name": "DOKI", + "socials": { + "twitter": "https://twitter.com/doki_coin", + "website": "https://dokicoin.io/", + }, + "symbol": "DOKI", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "udoki", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "denomUnits": [ + { + "aliases": [ + "umyrk", + ], + "denom": "ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752", + "exponent": 0, + }, + { + "denom": "myrk", + "exponent": 6, + }, + ], + "description": "Myrkur the leader of OLD Order", + "display": "myrk", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "theme": { + "primaryColorHex": "#0a0707", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + }, + "name": "MYRK", + "socials": { + "twitter": "https://twitter.com/myrkweilds", + }, + "symbol": "MYRK", + "traces": [ + { + "chain": { + "channel_id": "channel-258", + }, + "counterparty": { + "base_denom": "umyrk", + "chain_name": "odin", + "channel_id": "channel-3", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "denomUnits": [ @@ -48827,10 +51053,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "display": "O9W", "images": [ { - "imageSync": { - "baseDenom": "mO9W", - "chainName": "odin", - }, "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", "theme": { @@ -48843,6 +51065,10 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", }, "name": "O9W", + "socials": { + "twitter": "https://twitter.com/odin9worlds", + "website": "https://www.odin9worlds.io/", + }, "symbol": "O9W", "traces": [ { @@ -49220,6 +51446,53 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "ics20", }, + { + "base": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "denomUnits": [ + { + "aliases": [ + "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + ], + "denom": "ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token powered by OmniFlixHub", + "display": "ygata", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-199", + }, + "counterparty": { + "base_denom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chain_name": "omniflixhub", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/B8FD98E11799F3D76F184A6976CA25EDA8625AE5F05B1875ACF2D430A611DD99", "denomUnits": [ @@ -49600,6 +51873,113 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + ], + "denom": "ibc/9253F17BA4C45BBCAC44A9DF23476C7011729A6944A9541B372575204A7C6886", + "exponent": 0, + }, + { + "denom": "pepe", + "exponent": 6, + }, + ], + "description": "The PEPE native token of Oraichain", + "display": "pepe", + "images": [ + { + "imageSync": { + "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#cc3233", + }, + }, + ], + "keywords": [ + "meme", + ], + "logoURIs": { + "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", + }, + "name": "Pepe", + "symbol": "PEPE", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "denomUnits": [ + { + "aliases": [ + "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + ], + "denom": "ibc/615422D3409021B2DE968EA1D75B204D4B46F6ED794362D5727F889CE2BFCE17", + "exponent": 0, + }, + { + "denom": "hmstr", + "exponent": 9, + }, + ], + "description": "The Hamster Kombat native token of Oraichain", + "display": "hmstr", + "images": [ + { + "imageSync": { + "baseDenom": "nanohmstr", + "chainName": "ton", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, + "primaryColorHex": "#f4941c", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", + }, + "name": "HMSTR", + "symbol": "HMSTR", + "traces": [ + { + "chain": { + "channel_id": "channel-216", + }, + "counterparty": { + "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR", + "chain_name": "oraichain", + "channel_id": "channel-13", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", "coingeckoId": "medibloc", @@ -49760,9 +52140,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "Persistence is a blockchain platform designed to facilitate institutional decentralized finance (DeFi) and real-world asset tokenization, integrating with the Cosmos ecosystem.", + "description": "Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.", "display": "xprt", - "extendedDescription": "Persistence aims to bridge traditional finance and decentralized finance (DeFi) by enabling the tokenization of real-world assets. The platform supports various financial products, including staking-as-a-service, commodity trading, and debt financing. Persistence leverages the Cosmos SDK for interoperability and scalability, ensuring seamless integration with other blockchain networks. The native token, XPRT, is used for staking, governance, and securing the network. Persistence's mission is to create a decentralized financial ecosystem that brings institutional-grade solutions to the blockchain space.", + "extendedDescription": "Persistence One is building a Bitcoin interoperability solution to enable cross-chain swaps across bitcoin Layer 2s. The rapid rollout of Bitcoin L2s and side chains has led to a significant increase in BTC variants, causing fragmentation and hurting BTCfi scalability. Persistence One is addressing this issue head-on by offering fast, zero-slippage, cross-chain swaps, enabling BTC and related assets to move seamlessly between different L2s.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -50718,7 +53098,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "coingeckoId": "provenance-blockchain", "denomUnits": [ { "aliases": [ @@ -55277,7 +57656,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "coingeckoId": "quasar-2", "denomUnits": [ { "aliases": [ @@ -55292,7 +57670,7 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "exponent": 6, }, ], - "description": "The native token of Quasar", + "description": "The QSR token has transitioned to a legacy token, with migration to the EVM ecosystem currently underway.", "display": "qsr", "images": [ { @@ -55305,12 +57683,12 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, - "name": "Quasar", + "name": "Quasar (legacy)", "socials": { "twitter": "https://twitter.com/QuasarFi", "website": "https://www.quasar.fi/", }, - "symbol": "QSR", + "symbol": "QSR.legacy", "traces": [ { "chain": { @@ -56015,7 +58393,6 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi }, { "base": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "coingeckoId": "qwoyn", "denomUnits": [ { "aliases": [ @@ -58662,6 +61039,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -58734,8 +61162,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 18, }, ], - "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", "display": "stos", + "extendedDescription": "By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", @@ -58750,6 +61179,15 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, "name": "Stratos", + "socials": { + "discord": "https://discord.gg/tpQGpC2nMh", + "github": "https://github.com/stratosnet", + "medium": "https://stratos-network.medium.com/", + "reddit": "https://www.reddit.com/r/stratoscommunity/", + "telegram": "https://t.me/StratosOfficial", + "twitter": "https://x.com/Stratos_Network", + "website": "https://www.thestratos.org/", + }, "symbol": "STOS", "traces": [ { @@ -59009,7 +61447,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -59102,7 +61539,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ @@ -59619,6 +62055,58 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "denomUnits": [ + { + "aliases": [ + "usynt", + ], + "denom": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "exponent": 0, + }, + { + "denom": "SYNT", + "exponent": 6, + }, + ], + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "display": "SYNT", + "extendedDescription": "The Data Layer is a decentralized, permissionless protocol built on Synternet that serves as the customizable execution layer between all blockchains, enabling developers instant access to any cross-chain data. It uses a pub-sub (publish-subscribe) framework where data providers can stream live data to applications and smart contracts", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + }, + "name": "Synternet", + "socials": { + "twitter": "https://twitter.com/synternet_com", + "website": "https://www.synternet.com/", + }, + "symbol": "SYNT", + "traces": [ + { + "chain": { + "channel_id": "channel-85186", + }, + "counterparty": { + "base_denom": "usynt", + "chain_name": "synternet", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "coingeckoId": "teritori", @@ -61988,7 +64476,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "coingeckoId": "tgrade", "denomUnits": [ { "aliases": [ @@ -62350,9 +64837,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 6, }, ], - "description": "Persistence is a blockchain platform designed to facilitate institutional decentralized finance (DeFi) and real-world asset tokenization, integrating with the Cosmos ecosystem.", + "description": "Persistence One is building a Bitcoin Cross-chain Swaps solution, enabling fast, zero-slippage secure swaps across Bitcoin Layer 2s.", "display": "xprt", - "extendedDescription": "Persistence aims to bridge traditional finance and decentralized finance (DeFi) by enabling the tokenization of real-world assets. The platform supports various financial products, including staking-as-a-service, commodity trading, and debt financing. Persistence leverages the Cosmos SDK for interoperability and scalability, ensuring seamless integration with other blockchain networks. The native token, XPRT, is used for staking, governance, and securing the network. Persistence's mission is to create a decentralized financial ecosystem that brings institutional-grade solutions to the blockchain space.", + "extendedDescription": "Persistence One is building a Bitcoin interoperability solution to enable cross-chain swaps across bitcoin Layer 2s. The rapid rollout of Bitcoin L2s and side chains has led to a significant increase in BTC variants, causing fragmentation and hurting BTCfi scalability. Persistence One is addressing this issue head-on by offering fast, zero-slippage, cross-chain swaps, enabling BTC and related assets to move seamlessly between different L2s.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -63308,7 +65795,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "coingeckoId": "provenance-blockchain", "denomUnits": [ { "aliases": [ @@ -67867,7 +70353,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "coingeckoId": "quasar-2", "denomUnits": [ { "aliases": [ @@ -67882,7 +70367,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 6, }, ], - "description": "The native token of Quasar", + "description": "The QSR token has transitioned to a legacy token, with migration to the EVM ecosystem currently underway.", "display": "qsr", "images": [ { @@ -67895,12 +70380,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, - "name": "Quasar", + "name": "Quasar (legacy)", "socials": { "twitter": "https://twitter.com/QuasarFi", "website": "https://www.quasar.fi/", }, - "symbol": "QSR", + "symbol": "QSR.legacy", "traces": [ { "chain": { @@ -68605,7 +71090,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "coingeckoId": "qwoyn", "denomUnits": [ { "aliases": [ @@ -71252,6 +73736,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/40DF3B3CE1F2821C03C73BD227A47A20141D914D93FC5E7F7FE9330791DF1528", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -71324,8 +73859,9 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 18, }, ], - "description": "STOS coin is the token for the Stratos (STOS) cosmos based blockchain", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", "display": "stos", + "extendedDescription": "By spearheading the next generation of decentralized data mesh, Stratos enhances blockchain scalability while upholding the core benefits of a distributed protocol—data ownership, traceability, verifiability, and privacy. Embrace the future of Web 3.0 with Stratos, where cutting-edge innovation meets seamless decentralization. The Stratos Decentralized Storage Network enables projects to break free from centralized dependencies, offering robust storage solutions that enhance performance and decentralization. Surpassing centralized cloud services like Google Drive, our Proof-of-Traffic consensus mechanism rewards network node providers based on real-time file usage. Since launching the Stratos blockchain and decentralized storage mainnet in September 2023, over 800 active storage resource nodes worldwide have contributed to a total capacity nearing 14 PB. Additionally, our videostreaming API service allows your platform to stream live events and content smoothly and securely.", "images": [ { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", @@ -71340,6 +73876,15 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, "name": "Stratos", + "socials": { + "discord": "https://discord.gg/tpQGpC2nMh", + "github": "https://github.com/stratosnet", + "medium": "https://stratos-network.medium.com/", + "reddit": "https://www.reddit.com/r/stratoscommunity/", + "telegram": "https://t.me/StratosOfficial", + "twitter": "https://x.com/Stratos_Network", + "website": "https://www.thestratos.org/", + }, "symbol": "STOS", "traces": [ { @@ -71599,7 +74144,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -71692,7 +74236,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ @@ -72209,6 +74752,58 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "denomUnits": [ + { + "aliases": [ + "usynt", + ], + "denom": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "exponent": 0, + }, + { + "denom": "SYNT", + "exponent": 6, + }, + ], + "description": "Synternet is a blockchain that powers modular, interoperable data infrastructure across all major chains.", + "display": "SYNT", + "extendedDescription": "The Data Layer is a decentralized, permissionless protocol built on Synternet that serves as the customizable execution layer between all blockchains, enabling developers instant access to any cross-chain data. It uses a pub-sub (publish-subscribe) framework where data providers can stream live data to applications and smart contracts", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/synternet/images/synt.svg", + }, + "name": "Synternet", + "socials": { + "twitter": "https://twitter.com/synternet_com", + "website": "https://www.synternet.com/", + }, + "symbol": "SYNT", + "traces": [ + { + "chain": { + "channel_id": "channel-85186", + }, + "counterparty": { + "base_denom": "usynt", + "chain_name": "synternet", + "channel_id": "channel-1", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, { "base": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "coingeckoId": "teritori", @@ -74578,7 +77173,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "coingeckoId": "tgrade", "denomUnits": [ { "aliases": [ diff --git a/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap index 6930cd74c..cdc03e5b0 100644 --- a/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap @@ -732,7 +732,6 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and }, { "base": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", - "coingeckoId": "harbor-2", "denomUnits": [ { "aliases": [ @@ -983,7 +982,6 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction }, { "base": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", - "coingeckoId": "crescent-network", "denomUnits": [ { "aliases": [ @@ -1496,7 +1494,6 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g }, { "base": "ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D", - "coingeckoId": "gravity-bridge-usdc", "denomUnits": [ { "aliases": [ @@ -3284,18 +3281,18 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/B518CAF60AF54B7A3B90BCF7D50554016CFAC872CC767126062E0D3D154E1D35", + "base": "ibc/87B8A8BA4F4D8AC77AAE45512FB188913B822DA83AB2C1F6C665BC39CC06F892", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/B518CAF60AF54B7A3B90BCF7D50554016CFAC872CC767126062E0D3D154E1D35", + "denom": "ibc/87B8A8BA4F4D8AC77AAE45512FB188913B822DA83AB2C1F6C665BC39CC06F892", "exponent": 0, }, { "denom": "DRUGS", - "exponent": 9, + "exponent": 6, }, ], "description": "Distributing happiness, is a serious business", @@ -3316,7 +3313,7 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", "chain_name": "injective", "channel_id": "channel-82", }, @@ -8319,6 +8316,58 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/AB60263D1C6686328A81BBF1FA2AAB59F0A8C884149D68EEAA394779CD2B3D4D", + "denomUnits": [ + { + "aliases": [ + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + ], + "denom": "ibc/AB60263D1C6686328A81BBF1FA2AAB59F0A8C884149D68EEAA394779CD2B3D4D", + "exponent": 0, + }, + { + "denom": "yum", + "exponent": 18, + }, + ], + "display": "yum", + "images": [ + { + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + "theme": { + "primaryColorHex": "#33a6e7", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-152", + }, + "counterparty": { + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-158", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", "coingeckoId": "neutron-3", @@ -11051,7 +11100,7 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg", }, "name": "Polygon", - "symbol": "MATIC", + "symbol": "POL", "traces": [ { "chain": { @@ -12145,7 +12194,7 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "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", }, - "name": "Impacts Hub", + "name": "Impact Hub", "symbol": "IXO", "traces": [ { @@ -12596,15 +12645,8 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu }, }, { - "imageSync": { - "baseDenom": "uvdl", - "chainName": "vidulum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", - "theme": { - "primaryColorHex": "#3454bc", - }, + "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", }, ], "keywords": [ @@ -15437,17 +15479,6 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "primaryColorHex": "#501cad", }, }, - { - "imageSync": { - "baseDenom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", - "theme": { - "primaryColorHex": "#501cad", - }, - }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", @@ -15661,7 +15692,7 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "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", "theme": { - "circle": true, + "circle": false, "darkMode": true, "primaryColorHex": "#FFFFFF", }, @@ -15670,7 +15701,7 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "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", "theme": { - "circle": true, + "circle": false, "darkMode": false, "primaryColorHex": "#000000", }, @@ -20874,13 +20905,13 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540", + "base": "ibc/499EE8178958A9E7C80A439A5BAD0D57FDFFF1AEBAD43A8510A8CE6A021F1B12", "denomUnits": [ { "aliases": [ "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", ], - "denom": "ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540", + "denom": "ibc/499EE8178958A9E7C80A439A5BAD0D57FDFFF1AEBAD43A8510A8CE6A021F1B12", "exponent": 0, }, { @@ -21008,7 +21039,7 @@ Participants in the Filecoin network are incentivized to act honestly and store "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, "name": "Quasar", - "symbol": "QSR", + "symbol": "QSR.legacy", "traces": [ { "chain": { @@ -22056,18 +22087,6 @@ Participants in the Filecoin network are incentivized to act honestly and store "primaryColorHex": "#2775CA", }, }, - { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "theme": { - "circle": true, - "primaryColorHex": "#2775CA", - }, - }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", @@ -25242,17 +25261,6 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "primaryColorHex": "#501cad", }, }, - { - "imageSync": { - "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", - "theme": { - "primaryColorHex": "#501cad", - }, - }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", @@ -25675,7 +25683,7 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg", }, - "name": "Scorum", + "name": "Scorum Network", "symbol": "SCR", "traces": [ { @@ -26097,7 +26105,6 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform }, { "base": "ibc/9B29820FEC9C47B3EA02B44F6E8EF0F31D212B4272B6A2C78E015E0819F5899E", - "coingeckoId": "sail-dao", "denomUnits": [ { "aliases": [ @@ -26725,13 +26732,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/96B1E91F4B6656F05B49DEE62322C8484EC5C4E7DC145A1E6767AF9E7FACB56A", + "base": "ibc/16A4181A009E618AB2E91D86CFC27142605411A58055521F7E89606C836B8DED", "denomUnits": [ { "aliases": [ "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", ], - "denom": "ibc/96B1E91F4B6656F05B49DEE62322C8484EC5C4E7DC145A1E6767AF9E7FACB56A", + "denom": "ibc/16A4181A009E618AB2E91D86CFC27142605411A58055521F7E89606C836B8DED", "exponent": 0, }, { @@ -27561,13 +27568,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/D14C071479FF252ED4841B818E6DF35CD38CB5531058F64F946DFA8FB6292005", + "base": "ibc/0D3D77BFC7A19B226DC900A2B549C7F40FA895DAEA236E7EBFEED567F763088A", "denomUnits": [ { "aliases": [ "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", ], - "denom": "ibc/D14C071479FF252ED4841B818E6DF35CD38CB5531058F64F946DFA8FB6292005", + "denom": "ibc/0D3D77BFC7A19B226DC900A2B549C7F40FA895DAEA236E7EBFEED567F763088A", "exponent": 0, }, { @@ -27614,13 +27621,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/3F5F2447D4A636888E4A7CCF457D1BB6D6F7A77AAF4AAE473FF156841B34BDB4", + "base": "ibc/92C1BA1D0B8F8E6001197C341B772CCC14AFBB9F109D85B19EE3AE834BCB6610", "denomUnits": [ { "aliases": [ "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", ], - "denom": "ibc/3F5F2447D4A636888E4A7CCF457D1BB6D6F7A77AAF4AAE473FF156841B34BDB4", + "denom": "ibc/92C1BA1D0B8F8E6001197C341B772CCC14AFBB9F109D85B19EE3AE834BCB6610", "exponent": 0, }, { @@ -27663,13 +27670,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/C3B58DCCDB758193C1E17885F84602270828D40978AC9B16EAB4BE5B916F0E2E", + "base": "ibc/D30BECDE54EE4B168026809BB1B66349ABD1B3C1B4F968BCC34B1470F94C8E95", "denomUnits": [ { "aliases": [ "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", ], - "denom": "ibc/C3B58DCCDB758193C1E17885F84602270828D40978AC9B16EAB4BE5B916F0E2E", + "denom": "ibc/D30BECDE54EE4B168026809BB1B66349ABD1B3C1B4F968BCC34B1470F94C8E95", "exponent": 0, }, { @@ -27716,13 +27723,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/8B9FC625FC472BBB72F4EA06399111091B35D57AD34B408486A7FF048930308C", + "base": "ibc/36F2AB76D77920810D4B9BC3CA30BBAE830F6A4EC36023EFEAA75986BCE831DC", "denomUnits": [ { "aliases": [ "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", ], - "denom": "ibc/8B9FC625FC472BBB72F4EA06399111091B35D57AD34B408486A7FF048930308C", + "denom": "ibc/36F2AB76D77920810D4B9BC3CA30BBAE830F6A4EC36023EFEAA75986BCE831DC", "exponent": 0, }, { @@ -27765,13 +27772,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/8E045843B1F8211CF56CEA43345FE12E38416540BF6BC09D1CF6C6AE5886DF15", + "base": "ibc/488CA452E5878963B55324297DEF181C594B3BC160EDACD2F8398C98E79F7BB2", "denomUnits": [ { "aliases": [ "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", ], - "denom": "ibc/8E045843B1F8211CF56CEA43345FE12E38416540BF6BC09D1CF6C6AE5886DF15", + "denom": "ibc/488CA452E5878963B55324297DEF181C594B3BC160EDACD2F8398C98E79F7BB2", "exponent": 0, }, { @@ -27807,7 +27814,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", }, - "name": "Tether USD (Ethereum) (Picasso)", + "name": "Tether USD (Ethereum via Picasso)", "symbol": "USDT.eth.pica", "traces": [ { @@ -27825,13 +27832,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/CD5B439429B9EE609B0C998AD6F95EDC8079B99C9AFDF46D002C41EED310CA31", + "base": "ibc/98A4ECEB565354AEAE03CA6B56D6F81D78AB9A5A9F34874062E5A018918FF020", "denomUnits": [ { "aliases": [ "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", ], - "denom": "ibc/CD5B439429B9EE609B0C998AD6F95EDC8079B99C9AFDF46D002C41EED310CA31", + "denom": "ibc/98A4ECEB565354AEAE03CA6B56D6F81D78AB9A5A9F34874062E5A018918FF020", "exponent": 0, }, { @@ -27878,13 +27885,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/75DA832E8BF7E668702AD686AFEAB9BAC74BB0DC35E69610F086D42F0E0B88DE", + "base": "ibc/011122FD754E2A09331DE55F118FCE117B3370468860CC7B0422BD9A2524BAD7", "denomUnits": [ { "aliases": [ "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", ], - "denom": "ibc/75DA832E8BF7E668702AD686AFEAB9BAC74BB0DC35E69610F086D42F0E0B88DE", + "denom": "ibc/011122FD754E2A09331DE55F118FCE117B3370468860CC7B0422BD9A2524BAD7", "exponent": 0, }, { @@ -27931,13 +27938,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/29B7D64637E59751447EA8554FF0635C20439DD26791BFCF4202CEA9E2F6CD85", + "base": "ibc/A6BC84E6092CD5A76006538FEF099DF88AFFEB282B8B3E838E1EA60E866A7D81", "denomUnits": [ { "aliases": [ "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", ], - "denom": "ibc/29B7D64637E59751447EA8554FF0635C20439DD26791BFCF4202CEA9E2F6CD85", + "denom": "ibc/A6BC84E6092CD5A76006538FEF099DF88AFFEB282B8B3E838E1EA60E866A7D81", "exponent": 0, }, { @@ -28749,13 +28756,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/5978236F621AA7A1E49A6EAB2673945DF5709906EB442E17A15418EA0383ED77", + "base": "ibc/CC94C70E3CE31ABF5931A819AD5554E81993924EC760CE399C7F9849D7290FE6", "denomUnits": [ { "aliases": [ "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", ], - "denom": "ibc/5978236F621AA7A1E49A6EAB2673945DF5709906EB442E17A15418EA0383ED77", + "denom": "ibc/CC94C70E3CE31ABF5931A819AD5554E81993924EC760CE399C7F9849D7290FE6", "exponent": 0, }, { @@ -28805,13 +28812,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/C6DA086113B4C4DEFE9606574F39D580D80D7B23A5DA6181FC8E5EDECF10C6A8", + "base": "ibc/74D2B0480F1AB74317EB9B2E0D50D52C32535C298132D371153E21D0AA94AA12", "denomUnits": [ { "aliases": [ "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", ], - "denom": "ibc/C6DA086113B4C4DEFE9606574F39D580D80D7B23A5DA6181FC8E5EDECF10C6A8", + "denom": "ibc/74D2B0480F1AB74317EB9B2E0D50D52C32535C298132D371153E21D0AA94AA12", "exponent": 0, }, { @@ -28915,13 +28922,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/2D018641FBF6B12FD4B01211F499FEA8C22253082ADBF4EDC0D729CA074C3829", + "base": "ibc/CBC84CDD2BA2E6F518BDF73AF691C668D0D35737A9F92C371AE6257D7BEDE8BF", "denomUnits": [ { "aliases": [ "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", ], - "denom": "ibc/2D018641FBF6B12FD4B01211F499FEA8C22253082ADBF4EDC0D729CA074C3829", + "denom": "ibc/CBC84CDD2BA2E6F518BDF73AF691C668D0D35737A9F92C371AE6257D7BEDE8BF", "exponent": 0, }, { @@ -28970,13 +28977,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/2FAE849F9ABDE93F4577B5A9825EB14E64363F2953C228E9421AA79BA43346E2", + "base": "ibc/F2BFBC627763BBE9FF4F40DEA684FA62DA39D420D997B815474B4B6DEFC40E06", "denomUnits": [ { "aliases": [ "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", ], - "denom": "ibc/2FAE849F9ABDE93F4577B5A9825EB14E64363F2953C228E9421AA79BA43346E2", + "denom": "ibc/F2BFBC627763BBE9FF4F40DEA684FA62DA39D420D997B815474B4B6DEFC40E06", "exponent": 0, }, { @@ -29025,13 +29032,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/89C18730CF7A22F0120515F3E89C08687332B1ADB3C16005C1D63460CB662290", + "base": "ibc/89204DEA63E8C18B60E557E87896DD4FDA8336A345D13FD9956A2E4568620EAB", "denomUnits": [ { "aliases": [ "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", ], - "denom": "ibc/89C18730CF7A22F0120515F3E89C08687332B1ADB3C16005C1D63460CB662290", + "denom": "ibc/89204DEA63E8C18B60E557E87896DD4FDA8336A345D13FD9956A2E4568620EAB", "exponent": 0, }, { @@ -29080,13 +29087,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/53D1AAE33F790B5ECA3AF792DC199BF63672D3F86C91021AF5A47807D744538B", + "base": "ibc/93C225DCDFDAB6B81EBE81880E868972760EF23F51A1FF2B7FB651C7588A5C99", "denomUnits": [ { "aliases": [ "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", ], - "denom": "ibc/53D1AAE33F790B5ECA3AF792DC199BF63672D3F86C91021AF5A47807D744538B", + "denom": "ibc/93C225DCDFDAB6B81EBE81880E868972760EF23F51A1FF2B7FB651C7588A5C99", "exponent": 0, }, { @@ -29135,13 +29142,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/66EEC99A5E53F57814845CE01906390A4BEE340DFF64DC8525E5FF8D19EEAFFE", + "base": "ibc/743784A2CE2894B957E27CD92390955870B3EDC4BA0CED372D971700AE1F5C9E", "denomUnits": [ { "aliases": [ "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", ], - "denom": "ibc/66EEC99A5E53F57814845CE01906390A4BEE340DFF64DC8525E5FF8D19EEAFFE", + "denom": "ibc/743784A2CE2894B957E27CD92390955870B3EDC4BA0CED372D971700AE1F5C9E", "exponent": 0, }, { @@ -29328,13 +29335,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/3F4E761B45BB2E9C82093CF78A406360596B4EB336CC2C6A1E71F52EF232D25A", + "base": "ibc/2B8D948B3C4A3EE0B503E18FBED6AC8CFEC9E0E722A05D3C8F5A40ED6BE279A1", "denomUnits": [ { "aliases": [ "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", ], - "denom": "ibc/3F4E761B45BB2E9C82093CF78A406360596B4EB336CC2C6A1E71F52EF232D25A", + "denom": "ibc/2B8D948B3C4A3EE0B503E18FBED6AC8CFEC9E0E722A05D3C8F5A40ED6BE279A1", "exponent": 0, }, { @@ -29373,7 +29380,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", }, - "name": "Tether USD (Solana) (Picasso)", + "name": "Tether USD (Solana via Picasso)", "symbol": "USDT.sol.pica", "traces": [ { @@ -29391,13 +29398,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/F602E35A4EE6151C1A620608FDC5EE67B8A8688369FF2DBC0DA786C2452DB8F8", + "base": "ibc/C7E3223CDF8B6FBD878BF0C9F85C8301B608272FC3275D178569B971D2AADC82", "denomUnits": [ { "aliases": [ "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", ], - "denom": "ibc/F602E35A4EE6151C1A620608FDC5EE67B8A8688369FF2DBC0DA786C2452DB8F8", + "denom": "ibc/C7E3223CDF8B6FBD878BF0C9F85C8301B608272FC3275D178569B971D2AADC82", "exponent": 0, }, { @@ -29446,13 +29453,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/F9859F28B9E1C28A03B9108EB91E6443409F4287C5B7F8FF9F971AFD40787825", + "base": "ibc/C77520401669DC337688068E3E37F0C4B1DD4B6F3734027B6573F645C64682FF", "denomUnits": [ { "aliases": [ "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", ], - "denom": "ibc/F9859F28B9E1C28A03B9108EB91E6443409F4287C5B7F8FF9F971AFD40787825", + "denom": "ibc/C77520401669DC337688068E3E37F0C4B1DD4B6F3734027B6573F645C64682FF", "exponent": 0, }, { @@ -29501,13 +29508,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/0BC457875665DEED0CD963C818A3FA4FCFF6DDAB12C0FDA0CEBC8724423FA476", + "base": "ibc/F81604911688DDA2B3DC9536A533CBF1041DA24820EE69EDB8B4B354CD848DEE", "denomUnits": [ { "aliases": [ "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", ], - "denom": "ibc/0BC457875665DEED0CD963C818A3FA4FCFF6DDAB12C0FDA0CEBC8724423FA476", + "denom": "ibc/F81604911688DDA2B3DC9536A533CBF1041DA24820EE69EDB8B4B354CD848DEE", "exponent": 0, }, { @@ -29556,13 +29563,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/43640CF1F12EDC2F6508B667DFE2A71D6D46015579941D1D50276DA52BFA3897", + "base": "ibc/102C2A723BD74786372EA5F5A58E2900D44311762F0D40C9E379004532AEC7FA", "denomUnits": [ { "aliases": [ "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", ], - "denom": "ibc/43640CF1F12EDC2F6508B667DFE2A71D6D46015579941D1D50276DA52BFA3897", + "denom": "ibc/102C2A723BD74786372EA5F5A58E2900D44311762F0D40C9E379004532AEC7FA", "exponent": 0, }, { @@ -29683,13 +29690,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/4FF52D55A4EEA69C6D0CD41EF599B3710A51FA2150915337F4BE4D6BC475A14E", + "base": "ibc/7BD6E423D471DF65CC5086F4F555DB2DD253412D6B7F1376CCDC2B120C03F19D", "denomUnits": [ { "aliases": [ "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", ], - "denom": "ibc/4FF52D55A4EEA69C6D0CD41EF599B3710A51FA2150915337F4BE4D6BC475A14E", + "denom": "ibc/7BD6E423D471DF65CC5086F4F555DB2DD253412D6B7F1376CCDC2B120C03F19D", "exponent": 0, }, { @@ -29915,8 +29922,8 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png", }, - "name": "Rakoff Token", - "symbol": "RAKOFF", + "name": "Juris Protocol", + "symbol": "JURIS", "traces": [ { "chain": { @@ -31437,17 +31444,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "primaryColorHex": "#E6007A", }, }, - { - "imageSync": { - "baseDenom": "Planck", - "chainName": "polkadot", - }, - "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", - "theme": { - "primaryColorHex": "#e4047c", - }, - }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", @@ -31471,13 +31467,13 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/871377FCB41D5376CE03E1E5A62EE70A477CDDB4C215828D38E7F3B1618DDD20", + "base": "ibc/C736221DD046CAC2890C21CE4AB25336F536765C0BC1AF7B3E335AA8C63875A1", "denomUnits": [ { "aliases": [ "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", ], - "denom": "ibc/871377FCB41D5376CE03E1E5A62EE70A477CDDB4C215828D38E7F3B1618DDD20", + "denom": "ibc/C736221DD046CAC2890C21CE4AB25336F536765C0BC1AF7B3E335AA8C63875A1", "exponent": 0, }, { @@ -31710,8 +31706,8 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", }, - "name": "Tether USD (Ethereum) (Injective)", - "symbol": "USDT.eth.inj", + "name": "Tether USD (Injective)", + "symbol": "USDT.inj", "traces": [ { "chain": { @@ -32034,7 +32030,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", }, - "name": "TON (The Open Network) (Oraichain)", + "name": "Toncoin (Oraichain Labs TON Bridge)", "symbol": "TON.orai", "traces": [ { @@ -32096,7 +32092,7 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", }, - "name": "TON (The Open Network)", + "name": "Toncoin", "symbol": "TON", "traces": [ { @@ -32114,52 +32110,50 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "base": "ibc/1E4C17D6DD988B7DDE356F1471F85369380BD9667A2EA6458B4C8272A10008F6", "denomUnits": [ { "aliases": [ - "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B", ], - "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "denom": "ibc/1E4C17D6DD988B7DDE356F1471F85369380BD9667A2EA6458B4C8272A10008F6", "exponent": 0, }, { - "denom": "fury", - "exponent": 6, + "denom": "display_stBTC", + "exponent": 18, }, ], - "description": "The native token of Furya", - "display": "fury", + "description": "stBTC is the liquid principal token of the Lorenzo protocol, designed to represent staked Bitcoin within the Babylon ecosystem. + +", + "display": "display_stBTC", "images": [ { "imageSync": { - "baseDenom": "ufury", - "chainName": "furya", + "baseDenom": "stBTC", + "chainName": "lorenzo", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#133348", }, }, ], - "keywords": [ - "gaming", - "staking", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg", }, - "name": "furya", - "symbol": "FURY", + "name": "Lorenzo stBTC", + "symbol": "stBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "base_denom": "ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32169,199 +32163,201 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "base": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", "denomUnits": [ { "aliases": [ - "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", ], - "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "denom": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", "exponent": 0, }, { - "denom": "PUNDIX", + "denom": "BVT0", "exponent": 18, }, ], - "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", - "display": "PUNDIX", + "description": "Banana Vault Token - Peelworks Factory II", + "display": "BVT0", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", "theme": { - "primaryColorHex": "#f1d20c", + "primaryColorHex": "#203135", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", }, - "name": "Pundi X Token", - "symbol": "PUNDIX", + "name": "Peelworks Factory", + "symbol": "BVT0", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "base_denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "base": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", "denomUnits": [ { "aliases": [ - "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", ], - "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "denom": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", "exponent": 0, }, { - "denom": "dhp", - "exponent": 6, + "denom": "BVT1", + "exponent": 18, }, ], - "description": "The native token of dHealth", - "display": "dhp", + "description": "Banana Vault Token - Banana Beach (🍹,🌴) II", + "display": "BVT1", "images": [ { - "imageSync": { - "baseDenom": "udhp", - "chainName": "dhealth", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", "theme": { - "primaryColorHex": "#140c7c", + "primaryColorHex": "#00bdc3", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", }, - "name": "dHealth", - "symbol": "DHP", + "name": "Banana Beach", + "symbol": "BVT1", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "base_denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", "denomUnits": [ { "aliases": [ - "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", ], - "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "denom": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", "exponent": 0, }, { - "denom": "SHIDO", + "denom": "AVAIL", "exponent": 18, }, ], - "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", - "display": "SHIDO", + "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", + "display": "AVAIL", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", + "theme": { + "circle": false, + "primaryColorHex": "#2B80D7", + }, + }, { "imageSync": { - "baseDenom": "shido", - "chainName": "shido", + "baseDenom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", "theme": { - "primaryColorHex": "#046ffc", + "circle": false, + "primaryColorHex": "#2B80D7", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", }, - "name": "Shido", - "symbol": "SHIDO", + "name": "Avail (Ethereum via Router)", + "symbol": "AVAIL.eth.rt", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "base": "ibc/18E9EE0D922CC1FF142D2292CA59A104EBBDC25458B3754A8B250F84CD904EC2", "denomUnits": [ { "aliases": [ - "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F", ], - "denom": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "denom": "ibc/18E9EE0D922CC1FF142D2292CA59A104EBBDC25458B3754A8B250F84CD904EC2", "exponent": 0, }, { - "denom": "nstk", + "denom": "eure", "exponent": 6, }, ], - "description": "The Revenue & Governance token of Unstake.fi", - "display": "nstk", + "description": "EURe is a Euro-backed stablecoin issued by Monerium.", + "display": "eure", "images": [ { "imageSync": { - "baseDenom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "chainName": "kujira", + "baseDenom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", + "theme": { + "backgroundColorHex": "#FFFFFF", + "circle": true, + "primaryColorHex": "#0095D7", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", }, - "name": "Unstake Fi", - "symbol": "NSTK", + "name": "Monerium EUR emoney", + "symbol": "EURe", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "base_denom": "ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32371,43 +32367,46 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", + "base": "ibc/A10762AC97E2AB6AD22AFDF998E39DE1DC6604103BCC40175E15F41A7E96A6AC", "denomUnits": [ { "aliases": [ - "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E", ], - "denom": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", + "denom": "ibc/A10762AC97E2AB6AD22AFDF998E39DE1DC6604103BCC40175E15F41A7E96A6AC", "exponent": 0, }, { - "denom": "avalanche-usdc", + "denom": "andr", "exponent": 6, }, ], - "display": "avalanche-usdc", + "description": "The native staking and governance token of Andromeda", + "display": "andr", "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", + "imageSync": { + "baseDenom": "uandr", + "chainName": "andromeda", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", "theme": { - "primaryColorHex": "#2474cb", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", }, - "name": "Wormhole USDC(Avalanche)", - "symbol": "avalanche.USDC.wh", + "name": "Andromeda", + "symbol": "ANDR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "base_denom": "ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32417,94 +32416,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", + "address": "osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm", + "base": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", "denomUnits": [ { "aliases": [ - "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", ], - "denom": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", + "denom": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", "exponent": 0, }, { - "denom": "nom", - "exponent": 6, + "denom": "ckBTC", + "exponent": 8, }, ], - "description": "Nomic's native token.", - "display": "nom", + "description": "Chain-key Bitcoin bridged via Omnity Network.", + "display": "ckBTC", "images": [ { "imageSync": { - "baseDenom": "unom", - "chainName": "nomic", + "baseDenom": "uckBTC", + "chainName": "internetcomputer", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", "theme": { - "primaryColorHex": "#6404fc", + "backgroundColorHex": "#3B00B9", + "circle": true, + "primaryColorHex": "#3B00B9", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", }, - "name": "Nomic", - "symbol": "nomic.NOM", + "name": "Chain-key Bitcoin", + "symbol": "ckBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", - "base": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", "denomUnits": [ { "aliases": [ - "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", ], - "denom": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", + "denom": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", "exponent": 0, }, { - "denom": "ymos", - "exponent": 6, + "denom": "fWIZ", + "exponent": 9, }, ], - "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", - "display": "ymos", + "description": "Fractionalized Pixel Wizards", + "display": "fWIZ", + "extendedDescription": "Fractionalized Pixel Wizards NFT Via Fractal.fun", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", "theme": { - "primaryColorHex": "#2c3554", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", }, - "name": "Yieldmos Coin", - "symbol": "YMOS", + "name": "fWIZ", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fWIZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32514,35 +32524,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", "denomUnits": [ { "aliases": [ - "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", ], - "denom": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", + "denom": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", "exponent": 0, }, + { + "denom": "fWITCH", + "exponent": 9, + }, ], - "description": "Memecoin for The International Brane Wave", - "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "description": "Fractionalized Pixel Witches", + "display": "fWITCH", + "extendedDescription": "Fractionalized Pixel Witches NFT Via Fractal.fun", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", + "theme": { + "primaryColorHex": "#639BFF", + }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", }, - "name": "Branez", - "symbol": "BRNZ", + "name": "fWITCH", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fWITCH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32552,44 +32578,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", - "base": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", "denomUnits": [ { "aliases": [ - "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", ], - "denom": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", + "denom": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", "exponent": 0, }, { - "denom": "ashLAB", - "exponent": 6, + "denom": "fCRYPTONIUM", + "exponent": 9, }, ], - "description": "ashLAB - Burned LAB", - "display": "ashLAB", - "extendedDescription": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", + "description": "Fractionalized Cryptonium Maker", + "display": "fCRYPTONIUM", + "extendedDescription": "Fractionalized Cryptonium Maker NFT Via Fractal.fun", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", "theme": { - "primaryColorHex": "#ebb093", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", }, - "name": "Burned LAB", - "symbol": "ashLAB", + "name": "fCRYPTONIUM", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fCRYPTONIUM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32599,80 +32632,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", "denomUnits": [ { "aliases": [ - "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", ], - "denom": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", + "denom": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", "exponent": 0, }, { - "denom": "grac", - "exponent": 6, + "denom": "fATLAS", + "exponent": 9, }, ], - "description": "GRAC is the official token of Racoon.Bet's gaming platform.", - "display": "grac", + "description": "Fractionalized Atlas DAO", + "display": "fATLAS", + "extendedDescription": "Fractionalized Atlas DAO NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", - "chainName": "migaloo", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", "theme": { - "primaryColorHex": "#f5bf09", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", }, - "name": "Gaming RAC Token", - "symbol": "GRAC", + "name": "fATLAS", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fATLAS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", "denomUnits": [ { "aliases": [ - "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", ], - "denom": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", + "denom": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", "exponent": 0, }, { - "denom": "loopedUSDCmars", - "exponent": 6, + "denom": "fGECK", + "exponent": 9, + }, + ], + "description": "Fractionalized Geckies", + "display": "fGECK", + "extendedDescription": "Fractionalized Geckies NFT Via Fractal.fun", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", + "theme": { + "primaryColorHex": "#639BFF", + }, }, ], - "description": "USDC supplied on Mars looped using Membrane by a vault", - "display": "loopedUSDCmars", - "name": "Mars Looped USDC", - "symbol": "loopedUSDCmars", + "keywords": [ + "nft", + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", + }, + "name": "fGECK", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fGECK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32682,42 +32740,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", "denomUnits": [ { "aliases": [ - "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", ], - "denom": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", + "denom": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", "exponent": 0, }, { - "denom": "BVT0", - "exponent": 18, + "denom": "fBULLS", + "exponent": 9, }, ], - "description": "Banana Vault Token - Peelworks Factory II", - "display": "BVT0", + "description": "Fractionalized Rekt Bulls", + "display": "fBULLS", + "extendedDescription": "Fractionalized Rekt Bulls NFT Via Fractal.fun", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", "theme": { - "primaryColorHex": "#203135", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", }, - "name": "Peelworks Factory", - "symbol": "BVT0", + "name": "fBULLS", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fBULLS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32727,261 +32794,250 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", + "base": "ibc/63B28B422B14E8A0DF752C5C1C613C4F8E9C132C6AD94EBE314440E47809EB62", "denomUnits": [ { "aliases": [ - "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23", ], - "denom": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", + "denom": "ibc/63B28B422B14E8A0DF752C5C1C613C4F8E9C132C6AD94EBE314440E47809EB62", "exponent": 0, }, { - "denom": "BVT1", - "exponent": 18, + "denom": "SIN", + "exponent": 6, }, ], - "description": "Banana Vault Token - Banana Beach (🍹,🌴) II", - "display": "BVT1", + "description": "SinGarden token", + "display": "SIN", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", + "imageSync": { + "baseDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", "theme": { - "primaryColorHex": "#00bdc3", + "primaryColorHex": "#ebf0f4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", }, - "name": "Banana Beach", - "symbol": "BVT1", + "name": "SIN", + "symbol": "SIN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "base_denom": "ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", + "base": "ibc/AFD60AE4F9038EABC06DD784A5954A141406CCFD0E3AC784D581621207978EF1", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71", ], - "denom": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", + "denom": "ibc/AFD60AE4F9038EABC06DD784A5954A141406CCFD0E3AC784D581621207978EF1", "exponent": 0, }, { - "denom": "AVAIL", - "exponent": 18, + "denom": "KIMA", + "exponent": 6, }, ], - "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", - "display": "AVAIL", + "description": "Kima is an asset-agnostic interoperability infrastructure that connects blockchain networks and legacy financial systems, enabling secure, scalable cross-chain transactions and seamless communication across ecosystems.", + "display": "KIMA", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", - "theme": { - "circle": false, - "primaryColorHex": "#2B80D7", - }, - }, { "imageSync": { - "baseDenom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", - "theme": { - "circle": false, - "primaryColorHex": "#2B80D7", + "baseDenom": "uKIMA", + "chainName": "kimanetwork", }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg", }, ], - "name": "Avail", - "symbol": "AVAIL", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg", + }, + "name": "Kima Network", + "symbol": "KIMA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "base_denom": "ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", + "base": "ibc/F80603C85D5DD5BAEBE7CC832D54C7825DEA8B38A79FE2C35EE4CDECB76F4199", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C", ], - "denom": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", + "denom": "ibc/F80603C85D5DD5BAEBE7CC832D54C7825DEA8B38A79FE2C35EE4CDECB76F4199", "exponent": 0, }, { - "denom": "fWIZ", + "denom": "gwei", "exponent": 9, }, + { + "denom": "stos", + "exponent": 18, + }, ], - "description": "Fractionalized Pixel Wizards", - "display": "fWIZ", - "extendedDescription": "Fractionalized Pixel Wizards NFT Via Fractal.fun", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", + "display": "stos", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", + "imageSync": { + "baseDenom": "wei", + "chainName": "stratos", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#04847c", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", - }, - "name": "fWIZ", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, - "symbol": "fWIZ", + "name": "Stratos", + "symbol": "STOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "base_denom": "ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", + "base": "ibc/0A0ED953B6D389834CB47B640DD669F45269C3393264D4EEEDA92BB5CA8102B7", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", ], - "denom": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", + "denom": "ibc/0A0ED953B6D389834CB47B640DD669F45269C3393264D4EEEDA92BB5CA8102B7", "exponent": 0, }, { - "denom": "fWITCH", - "exponent": 9, + "denom": "uni", + "exponent": 18, }, ], - "description": "Fractionalized Pixel Witches", - "display": "fWITCH", - "extendedDescription": "Fractionalized Pixel Witches NFT Via Fractal.fun", + "description": "Uniswap UNI on Osmosis via Axelar", + "display": "uni", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.svg", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#FF007A", }, }, - ], - "keywords": [ - "nft", + { + "imageSync": { + "baseDenom": "uni-wei", + "chainName": "axelar", + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", + }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", - }, - "name": "fWITCH", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.svg", }, - "symbol": "fWITCH", + "name": "Uniswap (Axelar)", + "symbol": "UNI.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "base_denom": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", + "address": "osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8", + "base": "ibc/946EA961850E919BEF67C9B8A7034C734CABC3E6427B586CD56D5A0EC6C81C5E", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI", ], - "denom": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", + "denom": "ibc/946EA961850E919BEF67C9B8A7034C734CABC3E6427B586CD56D5A0EC6C81C5E", "exponent": 0, }, { - "denom": "fCRYPTONIUM", - "exponent": 9, + "denom": "allUNI", + "exponent": 12, }, ], - "description": "Fractionalized Cryptonium Maker", - "display": "fCRYPTONIUM", - "extendedDescription": "Fractionalized Cryptonium Maker NFT Via Fractal.fun", + "description": "An alloy of UNI asset variants on Osmosis.", + "display": "allUNI", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", - "theme": { - "primaryColorHex": "#639BFF", + "imageSync": { + "baseDenom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", }, - "name": "fCRYPTONIUM", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", - }, - "symbol": "fCRYPTONIUM", + "name": "Uniswap", + "symbol": "UNI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "base_denom": "factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -32991,431 +33047,432 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", + "base": "ibc/BF2FD0F016CB9B8421A98230822ADFC5156870AFEAE31CBC529FC236869990CB", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453", ], - "denom": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", + "denom": "ibc/BF2FD0F016CB9B8421A98230822ADFC5156870AFEAE31CBC529FC236869990CB", "exponent": 0, }, { - "denom": "fGECK", - "exponent": 9, + "denom": "lp:8:osmo", + "exponent": 6, }, ], - "description": "Fractionalized Geckies", - "display": "fGECK", - "extendedDescription": "Fractionalized Geckies NFT Via Fractal.fun", + "description": "Pryzm's LP token for OSMO Yield pool", + "display": "lp:8:osmo", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", - "theme": { - "primaryColorHex": "#639BFF", + "imageSync": { + "baseDenom": "lp:8:uosmo", + "chainName": "pryzm", }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg", }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", - }, - "name": "fGECK", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg", }, - "symbol": "fGECK", + "name": "OSMO Yield LP", + "symbol": "OSMO-YIELD-LP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "base_denom": "ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", + "base": "ibc/16551CFB14F1608C8EB0B111F56A884D873832F8E35C32DE747575687E9E4B53", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", ], - "denom": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", + "denom": "ibc/16551CFB14F1608C8EB0B111F56A884D873832F8E35C32DE747575687E9E4B53", "exponent": 0, }, { - "denom": "fATLAS", - "exponent": 9, + "denom": "int3", + "exponent": 6, }, ], - "description": "Fractionalized Atlas DAO", - "display": "fATLAS", - "extendedDescription": "Fractionalized Atlas DAO NFT Via Fractal.fun", + "description": "Int3face blockchain native token", + "display": "int3", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", + "imageSync": { + "baseDenom": "uint3", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", - }, - "name": "fATLAS", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", }, - "symbol": "fATLAS", + "name": "Int3face", + "symbol": "INT3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "base_denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", + "base": "ibc/7D5EE1C16693019176D51D19A4C371D001CA57B42A774A7051A48B8CBB419DF0", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", ], - "denom": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", + "denom": "ibc/7D5EE1C16693019176D51D19A4C371D001CA57B42A774A7051A48B8CBB419DF0", "exponent": 0, }, { - "denom": "fBULLS", - "exponent": 9, + "denom": "doge", + "exponent": 8, }, ], - "description": "Fractionalized Rekt Bulls", - "display": "fBULLS", - "extendedDescription": "Fractionalized Rekt Bulls NFT Via Fractal.fun", + "description": "Dogecoin on Int3face", + "display": "doge", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg", + }, + { + "imageSync": { + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", - }, - "name": "fBULLS", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg", }, - "symbol": "fBULLS", + "name": "Dogecoin (Int3)", + "symbol": "DOGE.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "base_denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", + "base": "ibc/B0EFF2C744022C1822959931496E30522529DF755C608B8BC3AAA5FDBC9B8E97", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", ], - "denom": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", + "denom": "ibc/B0EFF2C744022C1822959931496E30522529DF755C608B8BC3AAA5FDBC9B8E97", "exponent": 0, }, { - "denom": "rbtc", - "exponent": 18, + "denom": "btc", + "exponent": 8, }, ], - "description": "Roostock BTC bridged via Router.", - "display": "rbtc", + "description": "Bitcoin on Int3face", + "display": "btc", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg", + }, { "imageSync": { - "baseDenom": "sat", - "chainName": "rootstock", + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chainName": "int3face", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", "theme": { - "backgroundColorHex": "#00000000", - "circle": false, - "primaryColorHex": "#FF9931", + "primaryColorHex": "#3d3d3d", }, }, ], - "name": "Rootstock Smart Bitcoin", - "symbol": "RBTC", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg", + }, + "name": "Bitcoin (Int3)", + "symbol": "BTC.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "base_denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm", - "base": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", + "base": "ibc/8E9CF1F990B3BC14005B258EC6D7F0948D4CA16B53D4BDF7C79D9831A05AB393", "denomUnits": [ { "aliases": [ - "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", ], - "denom": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", + "denom": "ibc/8E9CF1F990B3BC14005B258EC6D7F0948D4CA16B53D4BDF7C79D9831A05AB393", "exponent": 0, }, { - "denom": "ckBTC", + "denom": "bch", "exponent": 8, }, ], - "description": "Chain-key Bitcoin bridged via Omnity Network.", - "display": "ckBTC", + "description": "Bitcoin-Cash on Int3face", + "display": "bch", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg", + }, { "imageSync": { - "baseDenom": "uckBTC", - "chainName": "internetcomputer", + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chainName": "int3face", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", "theme": { - "backgroundColorHex": "#3B00B9", - "circle": true, - "primaryColorHex": "#3B00B9", + "primaryColorHex": "#3d3d3d", }, }, ], - "name": "Chain-key Bitcoin", - "symbol": "ckBTC", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg", + }, + "name": "Bitcoin Cash (Int3)", + "symbol": "BCH.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "base_denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407", - "coingeckoId": "agoric", + "base": "ibc/77FDA29C85E570E9EFA6EDC37C94C40C66830A8983386C305F4F4F6EDCF3FF03", "denomUnits": [ { "aliases": [ - "ubld", + "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", ], - "denom": "ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407", + "denom": "ibc/77FDA29C85E570E9EFA6EDC37C94C40C66830A8983386C305F4F4F6EDCF3FF03", "exponent": 0, }, { - "denom": "bld", - "exponent": 6, + "denom": "ltc", + "exponent": 8, }, ], - "description": "Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.", - "display": "bld", - "extendedDescription": "Agoric leverages the popular JavaScript programming language to provide a secure and scalable platform for building decentralized applications (dApps). By using a familiar language, Agoric aims to lower the entry barriers for developers and promote the widespread adoption of blockchain technology. The platform's native token, BLD, is used for staking, securing the network, and governance. Agoric's innovative approach focuses on enabling rapid development and deployment of dApps, fostering a robust ecosystem of interoperable blockchain applications.", + "description": "Litecoin on Int3face", + "display": "ltc", "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/osmosis/images/ltc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg", + }, + { + "imageSync": { + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", "theme": { - "primaryColorHex": "#c42b44", + "primaryColorHex": "#3d3d3d", }, }, ], "logoURIs": { - "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", - }, - "name": "Agoric", - "socials": { - "twitter": "https://twitter.com/agoric", - "website": "https://agoric.com/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg", }, - "symbol": "BLD", + "name": "Litecoin (Int3)", + "symbol": "LTC.int3", "traces": [ { "chain": { - "channel_id": "channel-202", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ubld", - "chain_name": "agoric", - "channel_id": "channel-72", + "base_denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF", - "coingeckoId": "inter-stable-token", + "base": "ibc/059A3E9B117CE7E2F136CB4CAB4890471CAD2575C7CDC270296163B2B37F3271", "denomUnits": [ { "aliases": [ - "uist", + "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", ], - "denom": "ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF", + "denom": "ibc/059A3E9B117CE7E2F136CB4CAB4890471CAD2575C7CDC270296163B2B37F3271", "exponent": 0, }, { - "denom": "ist", + "denom": "usdt", "exponent": 6, }, ], - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "display": "ist", + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.arb.axl.svg", + }, + { + "imageSync": { + "baseDenom": "arbitrum-uusdt", + "chainName": "axelar", + }, + "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", "theme": { - "primaryColorHex": "#d485e2", + "primaryColorHex": "#54ac94", }, }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.arb.axl.svg", }, - "name": "Inter Stable Token", - "symbol": "IST", + "name": "Tether USD (Ethereum) (Arbitrum via Axelar)", + "symbol": "USDT.e.arb.axl", "traces": [ { "chain": { - "channel_id": "channel-202", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uist", - "chain_name": "agoric", - "channel_id": "channel-72", + "base_denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C", - "coingeckoId": "akash-network", + "base": "ibc/F0975FF3AFBAA1C719385D5DA632960420E03E0067C3560FBD8F98ECA7644E49", "denomUnits": [ { "aliases": [ - "uakt", + "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", ], - "denom": "ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C", + "denom": "ibc/F0975FF3AFBAA1C719385D5DA632960420E03E0067C3560FBD8F98ECA7644E49", "exponent": 0, }, { - "denom": "akt", + "denom": "usdt", "exponent": 6, }, ], - "description": "Akash Network is a decentralized cloud computing marketplace that connects users with unused computing resources, offering a cost-effective alternative to traditional cloud providers.", - "display": "akt", - "extendedDescription": "Akash Network is revolutionizing the cloud computing industry with its decentralized marketplace that leverages underutilized computing resources. By connecting users with providers offering unused computational capacity, Akash provides a more affordable and flexible alternative to conventional cloud services. This decentralized approach not only reduces costs but also enhances security and resilience, as data and applications are distributed across multiple nodes rather than centralized servers. - -The Akash Network utilizes its native token, AKT, to facilitate transactions and incentivize participants within the ecosystem. Users can pay for cloud services using AKT, while providers earn AKT by offering their computing resources. The network's open-source nature and compatibility with major cloud platforms further enhance its appeal, enabling seamless integration and broad adoption. Akash Network's innovative model is poised to disrupt the traditional cloud computing landscape, offering a decentralized, efficient, and cost-effective solution for developers and enterprises.", + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.op.axl.svg", + }, + { + "imageSync": { + "baseDenom": "optimism-uusdt", + "chainName": "axelar", + }, + "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", "theme": { - "primaryColorHex": "#bc342c", + "primaryColorHex": "#54ac94", }, }, ], "logoURIs": { - "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", - }, - "name": "Akash Network", - "socials": { - "twitter": "https://twitter.com/akashnet_", - "website": "https://akash.network/", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.op.axl.svg", }, - "symbol": "AKT", + "name": "Tether USD (Ethereum) (optimism via Axelar)", + "symbol": "USDT.e.op.axl", "traces": [ { "chain": { - "channel_id": "channel-213", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uakt", - "chain_name": "akash", - "channel_id": "channel-127", + "base_denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347", + "base": "ibc/C8E12342B937F5A7FCCA9D1005D8AB543A232A782BB1C32024EC1445E1688A8B", "denomUnits": [ { "aliases": [ - "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", ], - "denom": "ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347", + "denom": "ibc/C8E12342B937F5A7FCCA9D1005D8AB543A232A782BB1C32024EC1445E1688A8B", "exponent": 0, }, { @@ -33423,38 +33480,38 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "exponent": 6, }, ], - "description": "Tether USDt on Akash", + "description": "Tether's USD stablecoin from Polygon on Axelar", "display": "usdt", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pol.axl.svg", + }, { "imageSync": { - "baseDenom": "erc20/tether/usdt", - "chainName": "kava", + "baseDenom": "polygon-uusdt", + "chainName": "axelar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#54ac94", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "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.pol.axl.svg", }, - "name": "Tether USDt", - "symbol": "USDt", + "name": "Tether USD (Ethereum) (Polygon via Axelar)", + "symbol": "USDT.e.matic.axl", "traces": [ { "chain": { - "channel_id": "channel-213", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", - "chain_name": "akash", - "channel_id": "channel-127", + "base_denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33462,190 +33519,226 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "ics20", }, { - "base": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", - "coingeckoId": "chihuahua-token", + "base": "ibc/48F6CA0E513163AF1B1C22C816B3A97DA97E7F8314B18FCB24035072E75D3650", "denomUnits": [ { "aliases": [ - "uhuahua", + "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", ], - "denom": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", + "denom": "ibc/48F6CA0E513163AF1B1C22C816B3A97DA97E7F8314B18FCB24035072E75D3650", "exponent": 0, }, { - "denom": "huahua", - "exponent": 6, + "denom": "cbbtc", + "exponent": 8, }, ], - "description": "Chihuahua is a community-driven blockchain project focused on creating a fun and engaging ecosystem with an emphasis on social interactions and community building.", - "display": "huahua", - "extendedDescription": "Chihuahua aims to foster a vibrant and interactive community through its blockchain platform, which emphasizes social engagement and entertainment. The native token, HUAHUA, is used for various activities within the ecosystem, including rewards, staking, and governance. Chihuahua's unique approach combines blockchain technology with community engagement, offering a dynamic and enjoyable environment for its users.", + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", "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/osmosis/images/cbbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.svg", + }, + { + "imageSync": { + "baseDenom": "cbbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", "theme": { - "primaryColorHex": "#343434", + "circle": true, + "primaryColorHex": "#0052FF", }, }, ], "logoURIs": { - "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/osmosis/images/cbbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.svg", }, - "name": "Chihuahua", - "symbol": "HUAHUA", + "name": "Coinbase Wrapped BTC (Axelar)", + "symbol": "cbBTC.axl", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uhuahua", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB", + "base": "ibc/D111F2A2ED2A12D5080A21466180E9EBD44B70281C249AAEEA36A186B41F757F", "denomUnits": [ { "aliases": [ - "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", ], - "denom": "ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB", + "denom": "ibc/D111F2A2ED2A12D5080A21466180E9EBD44B70281C249AAEEA36A186B41F757F", "exponent": 0, }, { - "denom": "achihuahuawifhat", - "exponent": 6, + "denom": "fbtc", + "exponent": 8, }, ], - "description": "has a hat", - "display": "achihuahuawifhat", - "extendedDescription": "Chihuahuawifhat is the biggest cult of the Chihuahua chain aiming to take over Cosmos. The token is $BADDOG and we're not playing around.", + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.svg", + }, + { + "imageSync": { + "baseDenom": "fbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", "theme": { - "backgroundColorHex": "#F7E3C0", - "circle": true, - "primaryColorHex": "#F7E3C0", + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", - }, - "name": "Chihuahuawifhat", - "socials": { - "twitter": "https://x.com/chihuahuawifhat", - "website": "https://baddog.lol/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.svg", }, - "symbol": "BADDOG", + "name": "Fire Bitcoin (Axelar)", + "symbol": "FBTC.axl", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8", + "base": "ibc/CF08E32389D349DFA2DBBD511DB8E29A35A8E6525C455FD2BA7682734EA5AC03", "denomUnits": [ { "aliases": [ - "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", ], - "denom": "ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8", + "denom": "ibc/CF08E32389D349DFA2DBBD511DB8E29A35A8E6525C455FD2BA7682734EA5AC03", "exponent": 0, }, { - "denom": "WOOF", - "exponent": 6, + "denom": "lbtc", + "exponent": 8, }, ], - "description": "Woof", - "display": "WOOF", + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.svg", + }, + { + "imageSync": { + "baseDenom": "lbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", "theme": { - "primaryColorHex": "#d9905f", + "circle": true, + "primaryColorHex": "#162E2F", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.svg", }, - "name": "WOOF", - "symbol": "WOOF", + "name": "Lombard Staked Bitcoin (Axelar)", + "symbol": "LBTC.axl", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", "denomUnits": [ { "aliases": [ - "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", ], - "denom": "ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18", + "denom": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", "exponent": 0, }, { - "denom": "TACOS", - "exponent": 6, + "denom": "rbtc", + "exponent": 18, }, ], - "description": "Tacos", - "display": "TACOS", + "description": "Roostock BTC bridged via Router.", + "display": "rbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.svg", + }, + { + "imageSync": { + "baseDenom": "sat", + "chainName": "rootstock", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", "theme": { - "primaryColorHex": "#f3bb5b", + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#FF9931", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.svg", }, - "name": "TACOS", - "symbol": "TACOS", + "name": "Rootstock (Router)", + "symbol": "RBTC.rt", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33653,44 +33746,49 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "sdk.coin", }, { - "base": "ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75", + "address": "osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40", + "base": "ibc/A053EE6F53F29209DFA7C0B0A5DF53A0155A0B0CB08747DA60C87C8AEB1186E6", "denomUnits": [ { "aliases": [ - "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", + "factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE", ], - "denom": "ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75", + "denom": "ibc/A053EE6F53F29209DFA7C0B0A5DF53A0155A0B0CB08747DA60C87C8AEB1186E6", "exponent": 0, }, { - "denom": "WEED", - "exponent": 6, + "denom": "allDOGE", + "exponent": 8, }, ], - "description": "Weed", - "display": "WEED", + "description": "An alloy of DOGE asset variants on Osmosis.", + "display": "allDOGE", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png", + "imageSync": { + "baseDenom": "shibe", + "chainName": "dogecoin", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png", "theme": { - "primaryColorHex": "#43b333", + "primaryColorHex": "#bda148", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png", }, - "name": "WEED", - "symbol": "WEED", + "name": "Dogecoin", + "symbol": "DOGE", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33698,44 +33796,52 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "sdk.coin", }, { - "base": "ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B", + "address": "osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v", + "base": "ibc/91DA8B3EBC6DF0A5FB69CC8770EFBFF97C81A09EDB0DC50F8F44BCB39CBFB31E", "denomUnits": [ { "aliases": [ - "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC", ], - "denom": "ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B", + "denom": "ibc/91DA8B3EBC6DF0A5FB69CC8770EFBFF97C81A09EDB0DC50F8F44BCB39CBFB31E", "exponent": 0, }, { - "denom": "BDOG", - "exponent": 6, + "denom": "allLTC", + "exponent": 8, }, ], - "description": "Bulldog", - "display": "BDOG", + "description": "An alloy of LTC asset variants on Osmosis.", + "display": "allLTC", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png", + "imageSync": { + "baseDenom": "litoshi", + "chainName": "litecoin", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.svg", "theme": { - "primaryColorHex": "#040404", + "circle": true, + "primaryColorHex": "#345D9D", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.svg", }, - "name": "BDOG", - "symbol": "BDOG", + "name": "Litecoin", + "symbol": "LTC", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33743,44 +33849,52 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "sdk.coin", }, { - "base": "ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44", + "address": "osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz", + "base": "ibc/029EBB9C431CCE18275AAECD49D7A9C0E7AA1485AF7F56EF9C6BCD68E545EAF5", "denomUnits": [ { "aliases": [ - "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH", ], - "denom": "ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44", + "denom": "ibc/029EBB9C431CCE18275AAECD49D7A9C0E7AA1485AF7F56EF9C6BCD68E545EAF5", "exponent": 0, }, { - "denom": "CORSO", - "exponent": 6, + "denom": "allBCH", + "exponent": 8, }, ], - "description": "CaneCorso", - "display": "CORSO", + "description": "An alloy of BCH asset variants on Osmosis.", + "display": "allBCH", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", + "imageSync": { + "baseDenom": "sat", + "chainName": "bitcoincash", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.svg", "theme": { - "primaryColorHex": "#d9d2d2", + "circle": true, + "primaryColorHex": "#0AC18E", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.svg", }, - "name": "CORSO", - "symbol": "CORSO", + "name": "Bitcoin Cash", + "symbol": "BCH", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33788,94 +33902,124 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "sdk.coin", }, { - "address": "chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0", - "base": "ibc/A582C7C495DB76FD918AD1D46030629ED5F20C65BEE51C1D5D1357D858A9EA8A", + "base": "ibc/0C50CA8D0B204D52BB4957FE6D1C8B13D3FC35AAEEACCEF48C95E475CE020E03", "denomUnits": [ { "aliases": [ - "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", + "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", ], - "denom": "ibc/A582C7C495DB76FD918AD1D46030629ED5F20C65BEE51C1D5D1357D858A9EA8A", + "denom": "ibc/0C50CA8D0B204D52BB4957FE6D1C8B13D3FC35AAEEACCEF48C95E475CE020E03", "exponent": 0, }, { - "denom": "ashHUAHUA", + "denom": "om", "exponent": 6, }, ], - "description": "ashHUAHUA - Burned HUAHUA", - "display": "ashHUAHUA", - "extendedDescription": "ashHUAHUA - receipt token recieved when burning HUAHUA via ASH DAOs Furnace", + "description": "The native token of MANTRA", + "display": "om", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png", + "imageSync": { + "baseDenom": "uom", + "chainName": "mantrachain", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", "theme": { - "primaryColorHex": "#f46c0f", + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/ashhuahua.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", }, - "name": "Burned HUAHUA", - "symbol": "ashHUAHUA", + "name": "MANTRA", + "symbol": "OM", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/66B3BF43241D56DCB1442FA4E25B2C30850A977F58F1AAFCA297E007CBECD758", + "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "denomUnits": [ { "aliases": [ - "ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99", + "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", ], - "denom": "ibc/66B3BF43241D56DCB1442FA4E25B2C30850A977F58F1AAFCA297E007CBECD758", + "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "exponent": 0, }, { - "denom": "ampGASH", + "denom": "fury", "exponent": 6, }, ], - "display": "ampGASH", + "description": "The native token of Furya", + "display": "fury", "images": [ { "imageSync": { - "baseDenom": "factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH", - "chainName": "migaloo", + "baseDenom": "ufury", + "chainName": "furya", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampgash.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", "theme": { - "primaryColorHex": "#374455", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "gaming", + "staking", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampgash.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", }, - "name": "ampGASH", - "symbol": "ampGASH", + "name": "furya", + "symbol": "FURY", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33883,47 +34027,47 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "ics20", }, { - "base": "ibc/FDD06E86908275C30CAA0B8B4E3A13EA82A1B076D8787637659D05B6F57A0AB2", + "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "denomUnits": [ { "aliases": [ - "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", + "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", ], - "denom": "ibc/FDD06E86908275C30CAA0B8B4E3A13EA82A1B076D8787637659D05B6F57A0AB2", + "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "exponent": 0, }, { - "denom": "GUPPY", - "exponent": 6, + "denom": "PUNDIX", + "exponent": 18, }, ], - "display": "GUPPY", + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "display": "PUNDIX", "images": [ { - "imageSync": { - "baseDenom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "chainName": "migaloo", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", "theme": { - "primaryColorHex": "#d9966e", + "primaryColorHex": "#f1d20c", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", }, - "name": "GUPPY", - "symbol": "GUPPY", + "name": "Pundi X Token", + "symbol": "PUNDIX", "traces": [ { "chain": { - "channel_id": "channel-203", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", - "chain_name": "chihuahua", - "channel_id": "channel-94", + "base_denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -33931,447 +34075,452 @@ The Akash Network utilizes its native token, AKT, to facilitate transactions and "typeAsset": "ics20", }, { - "base": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", - "coingeckoId": "comdex", + "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "denomUnits": [ { "aliases": [ - "ucmdx", + "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", ], - "denom": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", + "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "exponent": 0, }, { - "denom": "cmdx", + "denom": "dhp", "exponent": 6, }, ], - "description": "Native Token of Comdex Protocol", - "display": "cmdx", + "description": "The native token of dHealth", + "display": "dhp", "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", + "imageSync": { + "baseDenom": "udhp", + "chainName": "dhealth", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", "theme": { - "primaryColorHex": "#fc4454", + "primaryColorHex": "#140c7c", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", }, - "name": "Comdex", - "symbol": "CMDX", + "name": "dHealth", + "symbol": "DHP", "traces": [ { "chain": { - "channel_id": "channel-71", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ucmdx", - "chain_name": "comdex", - "channel_id": "channel-57", + "base_denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", - "coingeckoId": "harbor-2", + "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "denomUnits": [ { "aliases": [ - "uharbor", + "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", ], - "denom": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", + "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "exponent": 0, }, { - "denom": "harbor", - "exponent": 6, + "denom": "SHIDO", + "exponent": 18, }, ], - "description": "Governance Token of Harbor protocol on Comdex network", - "display": "harbor", + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "display": "SHIDO", "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", + "imageSync": { + "baseDenom": "shido", + "chainName": "shido", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", "theme": { - "primaryColorHex": "#645ca4", + "primaryColorHex": "#046ffc", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", }, - "name": "Harbor", - "symbol": "HARBOR", + "name": "Shido", + "symbol": "SHIDO", "traces": [ { "chain": { - "channel_id": "channel-71", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uharbor", - "chain_name": "comdex", - "channel_id": "channel-57", + "base_denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", - "coingeckoId": "composite", + "base": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", "denomUnits": [ { "aliases": [ - "ucmst", + "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", ], - "denom": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", + "denom": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", "exponent": 0, }, { - "denom": "cmst", + "denom": "avalanche-usdc", "exponent": 6, }, ], - "description": "Stable Token of Harbor protocol on Comdex network", - "display": "cmst", + "display": "avalanche-usdc", "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/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#2474cb", }, }, ], "logoURIs": { - "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/osmosis/images/usdc.hole.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", }, - "name": "CMST", - "symbol": "CMST", + "name": "Wormhole USDC(Avalanche)", + "symbol": "avalanche.USDC.wh", "traces": [ { "chain": { - "channel_id": "channel-71", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ucmst", - "chain_name": "comdex", - "channel_id": "channel-57", + "base_denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", - "coingeckoId": "cosmos", + "base": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", "denomUnits": [ { "aliases": [ - "uatom", + "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", ], - "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "denom": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", "exponent": 0, }, { - "denom": "atom", + "denom": "nom", "exponent": 6, }, ], - "description": "ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.", - "display": "atom", - "extendedDescription": "ATOM, the native cryptocurrency of the Cosmos network, is essential for achieving the project's goal of creating an 'Internet of Blockchains.' Launched in 2019, Cosmos aims to solve the scalability, usability, and interoperability issues prevalent in existing blockchain ecosystems. The Cosmos Hub, the central blockchain of the network, uses ATOM for transaction fees, staking, and governance. By staking ATOM, users can earn rewards and participate in governance, influencing decisions on network upgrades and changes. - -Cosmos leverages the Tendermint consensus algorithm to achieve high transaction throughput and fast finality. Its Inter-Blockchain Communication (IBC) protocol enables seamless data and value transfer between different blockchains, fostering a highly interconnected and collaborative ecosystem. The flexibility and scalability offered by Cosmos have attracted numerous projects, enhancing its utility and adoption. ATOM's role in securing the network and facilitating governance underscores its importance in the broader blockchain landscape.", + "description": "Nomic's native token.", + "display": "nom", "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", + "imageSync": { + "baseDenom": "unom", + "chainName": "nomic", + }, + "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", "theme": { - "primaryColorHex": "#272d45", + "primaryColorHex": "#6404fc", }, }, ], "logoURIs": { - "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", - }, - "name": "Cosmos Hub Atom", - "socials": { - "twitter": "https://twitter.com/cosmoshub", - "website": "https://cosmos.network", + "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", }, - "symbol": "ATOM", + "name": "Nomic", + "symbol": "nomic.NOM", "traces": [ { "chain": { - "channel_id": "channel-24", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uatom", - "chain_name": "cosmoshub", - "channel_id": "channel-190", + "base_denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C", + "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", + "base": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", "denomUnits": [ { "aliases": [ - "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", ], - "denom": "ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C", + "denom": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", "exponent": 0, }, { - "denom": "usdt", + "denom": "ymos", "exponent": 6, }, ], - "description": "Tether USDt on the Cosmos Hub", - "display": "usdt", + "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", + "display": "ymos", "images": [ { - "imageSync": { - "baseDenom": "erc20/tether/usdt", - "chainName": "kava", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "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/ymos.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#2c3554", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "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/ymos.png", }, - "name": "Tether USDt", - "symbol": "USDt", + "name": "Yieldmos Coin", + "symbol": "YMOS", "traces": [ { "chain": { - "channel_id": "channel-24", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", - "chain_name": "cosmoshub", - "channel_id": "channel-190", + "base_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1", + "base": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", "denomUnits": [ { "aliases": [ - "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", + "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", ], - "denom": "ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1", + "denom": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", "exponent": 0, }, ], - "description": "FX on Cosmos Hub", - "display": "FX", + "description": "Memecoin for The International Brane Wave", + "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", "images": [ { - "imageSync": { - "baseDenom": "FX", - "chainName": "fxcore", - }, - "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", - "theme": { - "primaryColorHex": "#1c1c1c", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", }, ], "logoURIs": { - "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/osmosis/images/BRNZ.svg", }, - "name": "Function X", - "symbol": "FX", + "name": "Branez", + "symbol": "BRNZ", "traces": [ { "chain": { - "channel_id": "channel-24", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", - "chain_name": "cosmoshub", - "channel_id": "channel-190", + "base_denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", - "coingeckoId": "crescent-network", + "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", + "base": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", "denomUnits": [ { "aliases": [ - "ucre", + "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", ], - "denom": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", + "denom": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", "exponent": 0, }, { - "denom": "cre", + "denom": "ashLAB", "exponent": 6, }, ], - "description": "The native token of Crescent", - "display": "cre", + "description": "ashLAB - Burned LAB", + "display": "ashLAB", + "extendedDescription": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", "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/osmosis/images/ashLAB.png", "theme": { - "primaryColorHex": "#3c2832", + "primaryColorHex": "#ebb093", }, }, ], "logoURIs": { - "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/osmosis/images/ashLAB.png", }, - "name": "Crescent", - "symbol": "CRE", + "name": "Burned LAB", + "symbol": "ashLAB", "traces": [ { "chain": { - "channel_id": "channel-68", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ucre", - "chain_name": "crescent", - "channel_id": "channel-30", - }, + "base_denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, "type": "ibc", }, ], "typeAsset": "sdk.coin", }, { - "base": "ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874", - "coingeckoId": "liquid-staking-crescent", + "base": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", "denomUnits": [ { "aliases": [ - "ubcre", + "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", ], - "denom": "ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874", + "denom": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", "exponent": 0, }, { - "denom": "bcre", + "denom": "grac", "exponent": 6, }, ], - "description": "The bonded token of Crescent", - "display": "bcre", + "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "display": "grac", "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", + "imageSync": { + "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", "theme": { - "primaryColorHex": "#df969f", + "primaryColorHex": "#f5bf09", }, }, ], "logoURIs": { - "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/migaloo/images/grac.png", }, - "name": "Bonded Crescent", - "symbol": "bCRE", + "name": "Gaming RAC Token", + "symbol": "GRAC", "traces": [ { "chain": { - "channel_id": "channel-68", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ubcre", - "chain_name": "crescent", - "channel_id": "channel-30", + "base_denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A", - "coingeckoId": "crypto-com-chain", + "base": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", "denomUnits": [ { "aliases": [ - "basecro", + "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", ], - "denom": "ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A", + "denom": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", "exponent": 0, }, { - "denom": "cro", - "exponent": 8, + "denom": "earnUSDC", + "exponent": 6, }, ], - "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", - "display": "cro", - "images": [ + "description": "USDC supplied on Mars looped using Membrane by a vault that also has an entry fee", + "display": "earnUSDC", + "name": "Mars Looped USDC Vault", + "symbol": "earnUSDC", + "traces": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4849D1BCC226A8DC592C3C36DBCA3716428B366CE0F761710C79A6CB4DE5C430", + "denomUnits": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", - "theme": { - "primaryColorHex": "#0c2c71", - }, + "aliases": [ + "factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt", + ], + "denom": "ibc/4849D1BCC226A8DC592C3C36DBCA3716428B366CE0F761710C79A6CB4DE5C430", + "exponent": 0, + }, + { + "denom": "earnCDT", + "exponent": 6, }, ], - "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - }, - "name": "Cronos", - "socials": { - "twitter": "https://twitter.com/cronos_chain", - "website": "https://cronos.org/", - }, - "symbol": "CRO", + "description": "Auto-compounding vault for Membrane's Stability Pool used to ease the UX of compounding CDT", + "display": "earnCDT", + "name": "Earn CDT Vault", + "symbol": "earnCDT", "traces": [ { "chain": { - "channel_id": "channel-11", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "basecro", - "chain_name": "cryptoorgchain", - "channel_id": "channel-17", + "base_denom": "factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -34379,50 +34528,50 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction "typeAsset": "sdk.coin", }, { - "base": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", + "base": "ibc/3FEB50E7D1D46CCBC970A64601E265AC9B1E4B4C026AE832F5566DDA4BBC0CDA", "denomUnits": [ { "aliases": [ - "baseXLM", + "factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice", ], - "denom": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", + "denom": "ibc/3FEB50E7D1D46CCBC970A64601E265AC9B1E4B4C026AE832F5566DDA4BBC0CDA", "exponent": 0, }, { - "denom": "lumen", - "exponent": 7, + "denom": "Spice", + "exponent": 6, }, ], - "description": "Synthetic XLM pegged 1:1 by Crypto.com", - "display": "lumen", + "description": "The Spice memecoin", + "display": "Spice", "images": [ { - "imageSync": { - "baseDenom": "stroop", - "chainName": "stellar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#e5ba44", }, }, ], + "keywords": [ + "meme", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png", }, - "name": "Lumen (XLM) pegged token", - "symbol": "XLM", + "name": "Spice", + "socials": { + "twitter": "https://x.com/spice_coin_", + }, + "symbol": "SPICE", "traces": [ { "chain": { - "channel_id": "channel-11", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "baseXLM", - "chain_name": "cryptoorgchain", - "channel_id": "channel-17", + "base_denom": "factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -34430,50 +34579,51 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction "typeAsset": "sdk.coin", }, { - "base": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", + "base": "ibc/CAF3BB70AB5538288352EE311958EB84CB50F48FC674B7AD6C3E7D447A1668F8", "denomUnits": [ { "aliases": [ - "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", + "ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE", ], - "denom": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", + "denom": "ibc/CAF3BB70AB5538288352EE311958EB84CB50F48FC674B7AD6C3E7D447A1668F8", "exponent": 0, }, { - "denom": "lumen", - "exponent": 7, + "denom": "yum", + "exponent": 18, }, ], - "description": "The native token of Stellar network, transferred via Solo Machine.", - "display": "lumen", + "display": "yum", "images": [ { "imageSync": { - "baseDenom": "stroop", - "chainName": "stellar", + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#33a6e7", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, - "name": "Lumen (Solo Machine)", - "symbol": "XLM", + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", "traces": [ { "chain": { - "channel_id": "channel-11", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", - "chain_name": "cryptoorgchain", - "channel_id": "channel-17", + "base_denom": "ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -34481,60 +34631,52 @@ Cosmos leverages the Tendermint consensus algorithm to achieve high transaction "typeAsset": "ics20", }, { - "base": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", - "coingeckoId": "dydx-chain", + "base": "ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407", + "coingeckoId": "agoric", "denomUnits": [ { "aliases": [ - "adydx", + "ubld", ], - "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "denom": "ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407", "exponent": 0, }, { - "denom": "dydx", - "exponent": 18, + "denom": "bld", + "exponent": 6, }, ], - "description": "DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.", - "display": "dydx", - "extendedDescription": "DYDX is a leading decentralized trading platform specializing in derivatives and perpetual contracts. It enables users to trade with leverage, providing a sophisticated and efficient trading environment without intermediaries. Built on the Ethereum blockchain, DYDX uses smart contracts to ensure transaction security and transparency, giving users full control over their funds and trades. - -The DYDX platform's native token, DYDX, is integral to its ecosystem, used for governance, staking, and fee discounts, incentivizing active participation. DYDX offers a wide range of trading pairs and supports advanced trading features like margin trading and lending. Combining the benefits of decentralized finance with traditional trading platform functionality, DYDX is paving the way for a more open and inclusive financial system.", + "description": "Agoric is a smart contract platform that uses JavaScript to enable developers to build secure and scalable decentralized applications (dApps) easily.", + "display": "bld", + "extendedDescription": "Agoric leverages the popular JavaScript programming language to provide a secure and scalable platform for building decentralized applications (dApps). By using a familiar language, Agoric aims to lower the entry barriers for developers and promote the widespread adoption of blockchain technology. The platform's native token, BLD, is used for staking, securing the network, and governance. Agoric's innovative approach focuses on enabling rapid development and deployment of dApps, fostering a robust ecosystem of interoperable blockchain applications.", "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", - "theme": { - "primaryColorHex": "#21212f", - }, - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.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", "theme": { - "circle": true, + "primaryColorHex": "#c42b44", }, }, ], "logoURIs": { - "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/agoric/images/bld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", }, - "name": "dYdX", + "name": "Agoric", "socials": { - "twitter": "https://twitter.com/dYdX", - "website": "https://dydx.trade/", + "twitter": "https://twitter.com/agoric", + "website": "https://agoric.com/", }, - "symbol": "DYDX", + "symbol": "BLD", "traces": [ { "chain": { - "channel_id": "channel-131", + "channel_id": "channel-202", }, "counterparty": { - "base_denom": "adydx", - "chain_name": "dydx", - "channel_id": "channel-4", + "base_denom": "ubld", + "chain_name": "agoric", + "channel_id": "channel-72", }, "type": "ibc", }, @@ -34542,103 +34684,102 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A", + "base": "ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF", + "coingeckoId": "inter-stable-token", "denomUnits": [ { "aliases": [ - "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "uist", ], - "denom": "ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A", + "denom": "ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF", "exponent": 0, }, { - "denom": "usdc", + "denom": "ist", "exponent": 6, }, ], - "description": "Noble USDC on dYdX Protocol.", - "display": "usdc", + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "display": "ist", "images": [ { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#d485e2", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", }, - "name": "Noble USDC", - "symbol": "USDC", + "name": "Inter Stable Token", + "symbol": "IST", "traces": [ { "chain": { - "channel_id": "channel-131", + "channel_id": "channel-202", }, "counterparty": { - "base_denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", - "chain_name": "dydx", - "channel_id": "channel-4", + "base_denom": "uist", + "chain_name": "agoric", + "channel_id": "channel-72", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", - "coingeckoId": "graviton", + "base": "ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C", + "coingeckoId": "akash-network", "denomUnits": [ { "aliases": [ - "ugraviton", + "uakt", ], - "denom": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", + "denom": "ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C", "exponent": 0, }, { - "denom": "graviton", + "denom": "akt", "exponent": 6, }, ], - "description": "The native token of Gravity Bridge", - "display": "graviton", + "description": "Akash Network is a decentralized cloud computing marketplace that connects users with unused computing resources, offering a cost-effective alternative to traditional cloud providers.", + "display": "akt", + "extendedDescription": "Akash Network is revolutionizing the cloud computing industry with its decentralized marketplace that leverages underutilized computing resources. By connecting users with providers offering unused computational capacity, Akash provides a more affordable and flexible alternative to conventional cloud services. This decentralized approach not only reduces costs but also enhances security and resilience, as data and applications are distributed across multiple nodes rather than centralized servers. + +The Akash Network utilizes its native token, AKT, to facilitate transactions and incentivize participants within the ecosystem. Users can pay for cloud services using AKT, while providers earn AKT by offering their computing resources. The network's open-source nature and compatibility with major cloud platforms further enhance its appeal, enabling seamless integration and broad adoption. Akash Network's innovative model is poised to disrupt the traditional cloud computing landscape, offering a decentralized, efficient, and cost-effective solution for developers and enterprises.", "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/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg", "theme": { - "primaryColorHex": "#042ca4", + "primaryColorHex": "#bc342c", }, }, ], "logoURIs": { - "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/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg", }, - "name": "Graviton", + "name": "Akash Network", "socials": { - "twitter": "https://twitter.com/gravity_bridge", - "website": "https://www.gravitybridge.net/", + "twitter": "https://twitter.com/akashnet_", + "website": "https://akash.network/", }, - "symbol": "GRAV", + "symbol": "AKT", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-213", }, "counterparty": { - "base_denom": "ugraviton", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "uakt", + "chain_name": "akash", + "channel_id": "channel-127", }, "type": "ibc", }, @@ -34646,96 +34787,101 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "base": "ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347", "denomUnits": [ { "aliases": [ - "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", ], - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "denom": "ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347", "exponent": 0, }, { - "denom": "pstake", - "exponent": 18, + "denom": "usdt", + "exponent": 6, }, ], - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "display": "pstake", + "description": "Tether USDt on Akash", + "display": "usdt", "images": [ { "imageSync": { - "baseDenom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "chainName": "ethereum", + "baseDenom": "erc20/tether/usdt", + "chainName": "kava", }, - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#050505", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "pSTAKE Finance", - "symbol": "PSTAKE", + "name": "Tether USDt", + "symbol": "USDt", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-213", }, "counterparty": { - "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", + "chain_name": "akash", + "channel_id": "channel-127", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", + "base": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", + "coingeckoId": "chihuahua-token", "denomUnits": [ { "aliases": [ - "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "uhuahua", ], - "denom": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", + "denom": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", "exponent": 0, }, { - "denom": "gweth", - "exponent": 18, + "denom": "huahua", + "exponent": 6, }, ], - "description": "Gravity Bridge WETH", - "display": "gweth", + "description": "Chihuahua is a community-driven blockchain project focused on creating a fun and engaging ecosystem with an emphasis on social interactions and community building.", + "display": "huahua", + "extendedDescription": "Chihuahua aims to foster a vibrant and interactive community through its blockchain platform, which emphasizes social engagement and entertainment. The native token, HUAHUA, is used for various activities within the ecosystem, including rewards, staking, and governance. Chihuahua's unique approach combines blockchain technology with community engagement, offering a dynamic and enjoyable environment for its users.", "images": [ { - "imageSync": { - "baseDenom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "chainName": "ethereum", + "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", + "theme": { + "primaryColorHex": "#343434", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.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", }, - "name": "Wrapped Ethereum", - "symbol": "WETH", + "name": "Chihuahua", + "symbol": "HUAHUA", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "uhuahua", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34743,52 +34889,51 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D", - "coingeckoId": "gravity-bridge-usdc", + "base": "ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB", "denomUnits": [ { "aliases": [ - "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", ], - "denom": "ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D", + "denom": "ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB", "exponent": 0, }, { - "denom": "gusdc", + "denom": "achihuahuawifhat", "exponent": 6, }, ], - "description": "Gravity Bridge USDC", - "display": "gusdc", + "description": "has a hat", + "display": "achihuahuawifhat", + "extendedDescription": "Chihuahuawifhat is the biggest cult of the Chihuahua chain aiming to take over Cosmos. The token is $BADDOG and we're not playing around.", "images": [ { - "imageSync": { - "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", "theme": { + "backgroundColorHex": "#F7E3C0", "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#F7E3C0", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", }, - "name": "USD Coin", - "symbol": "USDC", + "name": "Chihuahuawifhat", + "socials": { + "twitter": "https://x.com/chihuahuawifhat", + "website": "https://baddog.lol/", + }, + "symbol": "BADDOG", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34796,52 +34941,44 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", + "base": "ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8", "denomUnits": [ { "aliases": [ - "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", ], - "denom": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", + "denom": "ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8", "exponent": 0, }, { - "denom": "gusdt", + "denom": "WOOF", "exponent": 6, }, ], - "description": "Gravity Bridge USDT", - "display": "gusdt", + "description": "Woof", + "display": "WOOF", "images": [ { - "imageSync": { - "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#d9905f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", }, - "name": "Tether USD", - "symbol": "USDT", + "name": "WOOF", + "symbol": "WOOF", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34849,50 +34986,44 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A", + "base": "ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18", "denomUnits": [ { "aliases": [ - "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", ], - "denom": "ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A", + "denom": "ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18", "exponent": 0, }, { - "denom": "gwbtc", - "exponent": 8, + "denom": "TACOS", + "exponent": 6, }, ], - "description": "Gravity Bridge WBTC", - "display": "gwbtc", + "description": "Tacos", + "display": "TACOS", "images": [ { - "imageSync": { - "baseDenom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "chainName": "ethereum", - }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", "theme": { - "primaryColorHex": "#f39444", + "primaryColorHex": "#f3bb5b", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", }, - "name": "Wrapped Bitcoin", - "symbol": "WBTC", + "name": "TACOS", + "symbol": "TACOS", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34900,45 +35031,44 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", + "base": "ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75", "denomUnits": [ { "aliases": [ - "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", ], - "denom": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", + "denom": "ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75", "exponent": 0, }, { - "denom": "gdai", - "exponent": 18, + "denom": "WEED", + "exponent": 6, }, ], - "description": "Gravity Bridge DAI", - "display": "gdai", + "description": "Weed", + "display": "WEED", "images": [ { - "imageSync": { - "baseDenom": "0x6b175474e89094c44da98b954eedeac495271d0f", - "chainName": "ethereum", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png", + "theme": { + "primaryColorHex": "#43b333", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png", }, - "name": "Dai Stablecoin", - "symbol": "DAI", + "name": "WEED", + "symbol": "WEED", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34946,50 +35076,44 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544", + "base": "ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B", "denomUnits": [ { "aliases": [ - "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", ], - "denom": "ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544", + "denom": "ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B", "exponent": 0, }, { - "denom": "gsdai", - "exponent": 18, + "denom": "BDOG", + "exponent": 6, }, ], - "description": "Gravity Bridge sDAI", - "display": "gsdai", + "description": "Bulldog", + "display": "BDOG", "images": [ { - "imageSync": { - "baseDenom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "chainName": "ethereum", - }, - "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/chihuahua/images/bdog.png", "theme": { - "primaryColorHex": "#7ec231", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/chihuahua/images/bdog.png", }, - "name": "Savings Dai", - "symbol": "sDAI", + "name": "BDOG", + "symbol": "BDOG", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -34997,48 +35121,44 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823", + "base": "ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44", "denomUnits": [ { "aliases": [ - "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", ], - "denom": "ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823", + "denom": "ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44", "exponent": 0, }, { - "denom": "gocc", - "exponent": 18, + "denom": "CORSO", + "exponent": 6, }, ], - "description": "Gravity Bridge OCC", - "display": "gocc", + "description": "CaneCorso", + "display": "CORSO", "images": [ { - "imageSync": { - "baseDenom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", "theme": { - "primaryColorHex": "#313648", + "primaryColorHex": "#d9d2d2", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", }, - "name": "OccamFi", - "symbol": "OCC", + "name": "CORSO", + "symbol": "CORSO", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -35046,50 +35166,46 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3", + "address": "chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0", + "base": "ibc/A582C7C495DB76FD918AD1D46030629ED5F20C65BEE51C1D5D1357D858A9EA8A", "denomUnits": [ { "aliases": [ - "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", ], - "denom": "ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3", + "denom": "ibc/A582C7C495DB76FD918AD1D46030629ED5F20C65BEE51C1D5D1357D858A9EA8A", "exponent": 0, }, { - "denom": "page", - "exponent": 8, + "denom": "ashHUAHUA", + "exponent": 6, }, ], - "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", - "display": "page", + "description": "ashHUAHUA - Burned HUAHUA", + "display": "ashHUAHUA", + "extendedDescription": "ashHUAHUA - receipt token recieved when burning HUAHUA via ASH DAOs Furnace", "images": [ { - "imageSync": { - "baseDenom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "chainName": "ethereum", - }, - "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/chihuahua/images/ashhuahua.png", "theme": { - "primaryColorHex": "#ebb324", + "primaryColorHex": "#f46c0f", }, }, ], "logoURIs": { - "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/chihuahua/images/ashhuahua.png", }, - "name": "Page", - "symbol": "PAGE", + "name": "Burned HUAHUA", + "symbol": "ashHUAHUA", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, @@ -35097,211 +35213,190 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "sdk.coin", }, { - "base": "ibc/65A75CC7F56A4D655E46D6615EE8BECC59EDB17C92C663B76D1C4424438D2201", + "base": "ibc/66B3BF43241D56DCB1442FA4E25B2C30850A977F58F1AAFCA297E007CBECD758", "denomUnits": [ { "aliases": [ - "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99", ], - "denom": "ibc/65A75CC7F56A4D655E46D6615EE8BECC59EDB17C92C663B76D1C4424438D2201", + "denom": "ibc/66B3BF43241D56DCB1442FA4E25B2C30850A977F58F1AAFCA297E007CBECD758", "exponent": 0, }, { - "denom": "gpaxg", - "exponent": 18, + "denom": "ampGASH", + "exponent": 6, }, ], - "description": "Gravity Bridge Paxos Gold", - "display": "gpaxg", + "display": "ampGASH", "images": [ { "imageSync": { - "baseDenom": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "chainName": "ethereum", + "baseDenom": "factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH", + "chainName": "migaloo", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampgash.png", "theme": { - "primaryColorHex": "#ebe60e", + "primaryColorHex": "#374455", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampgash.png", }, - "name": "Paxos Gold", - "symbol": "PAXG", + "name": "ampGASH", + "symbol": "ampGASH", "traces": [ { "chain": { - "channel_id": "channel-38", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "chain_name": "gravitybridge", - "channel_id": "channel-24", + "base_denom": "ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", - "coingeckoId": "injective-protocol", + "base": "ibc/FDD06E86908275C30CAA0B8B4E3A13EA82A1B076D8787637659D05B6F57A0AB2", "denomUnits": [ { "aliases": [ - "inj", + "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", ], - "denom": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", + "denom": "ibc/FDD06E86908275C30CAA0B8B4E3A13EA82A1B076D8787637659D05B6F57A0AB2", "exponent": 0, }, { - "denom": "INJ", - "exponent": 18, + "denom": "GUPPY", + "exponent": 6, }, ], - "description": "Injective is a decentralized exchange protocol that enables fast, secure, and fully decentralized trading of derivatives, futures, and spot markets.", - "display": "INJ", - "extendedDescription": "Injective Protocol is a cutting-edge decentralized exchange (DEX) platform facilitating fully decentralized trading of derivatives, futures, and spot markets. Built on the Cosmos SDK, Injective leverages layer-2 scaling solutions for high-speed transactions with low fees, ensuring an efficient trading experience. The platform's design eliminates intermediaries, giving users complete control over their assets and trades. - -The Injective ecosystem is powered by its native token, INJ, used for governance, staking, and fee reduction. By staking INJ, users can participate in network governance, influencing key decisions and protocol upgrades. Injective's features include cross-chain trading, allowing seamless asset trading across different blockchains, and a decentralized order book for transparency and security. Injective transforms the DeFi space with a comprehensive, decentralized solution for trading various financial instruments.", + "display": "GUPPY", "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", + "imageSync": { + "baseDenom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "theme": { - "primaryColorHex": "#04a2fc", + "primaryColorHex": "#d9966e", }, }, ], "logoURIs": { - "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", - }, - "name": "Injective", - "socials": { - "twitter": "https://twitter.com/Injective_", - "website": "https://injective.com/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", }, - "symbol": "INJ", + "name": "GUPPY", + "symbol": "GUPPY", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-203", }, "counterparty": { - "base_denom": "inj", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", + "chain_name": "chihuahua", + "channel_id": "channel-94", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17", + "base": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", + "coingeckoId": "comdex", "denomUnits": [ { "aliases": [ - "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "ucmdx", ], - "denom": "ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17", + "denom": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", "exponent": 0, }, { - "denom": "usdt", + "denom": "cmdx", "exponent": 6, }, ], - "description": "Tether USDt on Injective", - "display": "usdt", + "description": "Native Token of Comdex Protocol", + "display": "cmdx", "images": [ { - "imageSync": { - "baseDenom": "erc20/tether/usdt", - "chainName": "kava", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#fc4454", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", }, - "name": "Tether USDt", - "symbol": "USDTkv", + "name": "Comdex", + "symbol": "CMDX", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-71", }, "counterparty": { - "base_denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ucmdx", + "chain_name": "comdex", + "channel_id": "channel-57", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BD2C20489720B24DFE340E77F1999D7DC1F6254919205A51D5B25E748E7C8733", + "base": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", "denomUnits": [ { "aliases": [ - "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "uharbor", ], - "denom": "ibc/BD2C20489720B24DFE340E77F1999D7DC1F6254919205A51D5B25E748E7C8733", + "denom": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", "exponent": 0, }, { - "denom": "usdt", + "denom": "harbor", "exponent": 6, }, ], - "description": "Tether USDt from Ethereum via Peggy bridge.", - "display": "usdt", + "description": "Governance Token of Harbor protocol on Comdex network", + "display": "harbor", "images": [ { - "imageSync": { - "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#645ca4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", }, - "name": "Tether USDT", - "symbol": "USDT", + "name": "Harbor", + "symbol": "HARBOR", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-71", }, "counterparty": { - "base_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "uharbor", + "chain_name": "comdex", + "channel_id": "channel-57", }, "type": "ibc", }, @@ -35309,44 +35404,47 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7", + "base": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", + "coingeckoId": "composite", "denomUnits": [ { "aliases": [ - "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "ucmst", ], - "denom": "ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7", + "denom": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", "exponent": 0, }, { - "denom": "ampINJ", + "denom": "cmst", "exponent": 6, }, ], - "description": "ERIS liquid staked INJ", - "display": "ampINJ", + "description": "Stable Token of Harbor protocol on Comdex network", + "display": "cmst", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", + "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", "theme": { - "primaryColorHex": "#5480cc", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", + "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", }, - "name": "ERIS Amplified INJ", - "symbol": "ampINJ", + "name": "CMST", + "symbol": "CMST", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-71", }, "counterparty": { - "base_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ucmst", + "chain_name": "comdex", + "channel_id": "channel-57", }, "type": "ibc", }, @@ -35354,45 +35452,54 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C", - "coingeckoId": "autism", + "base": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "coingeckoId": "cosmos", "denomUnits": [ { "aliases": [ - "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "uatom", ], - "denom": "ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C", + "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", "exponent": 0, }, { - "denom": "autism", + "denom": "atom", "exponent": 6, }, ], - "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", - "display": "autism", + "description": "ATOM is the native cryptocurrency of the Cosmos network, designed to facilitate interoperability between multiple blockchains through its innovative hub-and-spoke model.", + "display": "atom", + "extendedDescription": "ATOM, the native cryptocurrency of the Cosmos network, is essential for achieving the project's goal of creating an 'Internet of Blockchains.' Launched in 2019, Cosmos aims to solve the scalability, usability, and interoperability issues prevalent in existing blockchain ecosystems. The Cosmos Hub, the central blockchain of the network, uses ATOM for transaction fees, staking, and governance. By staking ATOM, users can earn rewards and participate in governance, influencing decisions on network upgrades and changes. + +Cosmos leverages the Tendermint consensus algorithm to achieve high transaction throughput and fast finality. Its Inter-Blockchain Communication (IBC) protocol enables seamless data and value transfer between different blockchains, fostering a highly interconnected and collaborative ecosystem. The flexibility and scalability offered by Cosmos have attracted numerous projects, enhancing its utility and adoption. ATOM's role in securing the network and facilitating governance underscores its importance in the broader blockchain landscape.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#272d45", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.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", }, - "name": "Autism", - "symbol": "AUTISM", + "name": "Cosmos Hub Atom", + "socials": { + "twitter": "https://twitter.com/cosmoshub", + "website": "https://cosmos.network", + }, + "symbol": "ATOM", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-24", }, "counterparty": { - "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "uatom", + "chain_name": "cosmoshub", + "channel_id": "channel-190", }, "type": "ibc", }, @@ -35400,142 +35507,146 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/4A03E702D82730C78DE2F055065BDF09BCADB147EB898D2707009597810F9E7F", + "base": "ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C", "denomUnits": [ { "aliases": [ - "factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ", + "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", ], - "denom": "ibc/4A03E702D82730C78DE2F055065BDF09BCADB147EB898D2707009597810F9E7F", + "denom": "ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C", "exponent": 0, }, { - "denom": "bINJ", - "exponent": 18, + "denom": "usdt", + "exponent": 6, }, ], - "description": "BackBone Labs Liquid Staked Injective", - "display": "bINJ", + "description": "Tether USDt on the Cosmos Hub", + "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/binj.png", + "imageSync": { + "baseDenom": "erc20/tether/usdt", + "chainName": "kava", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#04a2fc", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/binj.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "BackBone Labs Liquid Staked Injective", - "symbol": "bINJ", + "name": "Tether USDt", + "symbol": "USDt", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-24", }, "counterparty": { - "base_denom": "factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "chain_name": "cosmoshub", + "channel_id": "channel-190", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C", - "coingeckoId": "dog-wif-nuchucks", + "base": "ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1", "denomUnits": [ { "aliases": [ - "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", ], - "denom": "ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C", + "denom": "ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1", "exponent": 0, }, - { - "denom": "NINJA", - "exponent": 6, - }, ], - "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", - "display": "NINJA", - "extendedDescription": "$NINJA is the premier meme coin on Injective. There is no formal roadmap and no promises made, but NINJAs are builders and masters of surprise. For all intents and purposes, the coin is completely useless, until it's not. And the dog, he has nunchucks.", + "description": "FX on Cosmos Hub", + "display": "FX", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "imageSync": { + "baseDenom": "FX", + "chainName": "fxcore", + }, + "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", "theme": { - "backgroundColorHex": "#00468E", - "circle": true, - "primaryColorHex": "#00468E", + "primaryColorHex": "#1c1c1c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", - }, - "name": "Dog wif nunchucks", - "socials": { - "twitter": "https://x.com/dogwifnunchucks", - "website": "https://www.dogwifnunchucks.com/", + "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", }, - "symbol": "NINJA", + "name": "Function X", + "symbol": "FX", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-24", }, "counterparty": { - "base_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729", + "chain_name": "cosmoshub", + "channel_id": "channel-190", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5", + "base": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", "denomUnits": [ { "aliases": [ - "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "ucre", ], - "denom": "ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5", + "denom": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", "exponent": 0, }, { - "denom": "WGMI", + "denom": "cre", "exponent": 6, }, ], - "description": "The $WGMI Token - We Gonna Make It. Are you ready?", - "display": "WGMI", + "description": "The native token of Crescent", + "display": "cre", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png", + "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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#3c2832", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png", + "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", }, - "name": "WGMI", - "symbol": "WGMI", + "name": "Crescent", + "symbol": "CRE", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-68", }, "counterparty": { - "base_denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ucre", + "chain_name": "crescent", + "channel_id": "channel-30", }, "type": "ibc", }, @@ -35543,103 +35654,100 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE", + "base": "ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874", + "coingeckoId": "liquid-staking-crescent", "denomUnits": [ { "aliases": [ - "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", + "ubcre", ], - "denom": "ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE", + "denom": "ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874", "exponent": 0, }, { - "denom": "WOSMO", + "denom": "bcre", "exponent": 6, }, ], - "description": "The first memecoin on osmosis.", - "display": "WOSMO", + "description": "The bonded token of Crescent", + "display": "bcre", "images": [ { - "imageSync": { - "baseDenom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "chainName": "osmosis", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "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", "theme": { - "primaryColorHex": "#edd5ee", + "primaryColorHex": "#df969f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "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", }, - "name": "Wosmo", - "symbol": "WOSMO", + "name": "Bonded Crescent", + "symbol": "bCRE", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-68", }, "counterparty": { - "base_denom": "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ubcre", + "chain_name": "crescent", + "channel_id": "channel-30", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20", + "base": "ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A", + "coingeckoId": "crypto-com-chain", "denomUnits": [ { "aliases": [ - "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "basecro", ], - "denom": "ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20", + "denom": "ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A", "exponent": 0, }, { - "denom": "glto", - "exponent": 6, + "denom": "cro", + "exponent": 8, }, ], - "description": "GLTO-ERC20 on injective", - "display": "glto", + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "display": "cro", "images": [ { - "imageSync": { - "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "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", "theme": { - "primaryColorHex": "#501cad", + "primaryColorHex": "#0c2c71", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", }, - "name": "Gelotto", + "name": "Cronos", "socials": { - "twitter": "https://twitter.com/Gelotto2", - "website": "https://gelotto.io/", + "twitter": "https://twitter.com/cronos_chain", + "website": "https://cronos.org/", }, - "symbol": "GLTO", + "symbol": "CRO", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-11", }, "counterparty": { - "base_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "basecro", + "chain_name": "cryptoorgchain", + "channel_id": "channel-17", }, "type": "ibc", }, @@ -35647,49 +35755,50 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6", - "coingeckoId": "hava-coin", + "base": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", "denomUnits": [ { "aliases": [ - "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "baseXLM", ], - "denom": "ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6", + "denom": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", "exponent": 0, }, { - "denom": "hava", - "exponent": 6, + "denom": "lumen", + "exponent": 7, }, ], - "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", - "display": "hava", + "description": "Synthetic XLM pegged 1:1 by Crypto.com", + "display": "lumen", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "imageSync": { + "baseDenom": "stroop", + "chainName": "stellar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", "theme": { - "primaryColorHex": "#eacea5", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", - }, - "name": "Hava Coin", - "socials": { - "twitter": "https://twitter.com/Hava_Coin", - "website": "https://havacoin.xyz/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", }, - "symbol": "HAVA", + "name": "Lumen (XLM) pegged token", + "symbol": "XLM", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-11", }, "counterparty": { - "base_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "baseXLM", + "chain_name": "cryptoorgchain", + "channel_id": "channel-17", }, "type": "ibc", }, @@ -35697,48 +35806,50 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19", + "base": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", "denomUnits": [ { "aliases": [ - "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", + "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", ], - "denom": "ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19", + "denom": "ibc/A7A4A7BE83A8FE5EA2DF977A8D30C1EE3C56AFA1E1323A915F8C73124517B7E1", "exponent": 0, }, { - "denom": "BADKID", - "exponent": 6, + "denom": "lumen", + "exponent": 7, }, ], - "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.", - "display": "BADKID", + "description": "The native token of Stellar network, transferred via Solo Machine.", + "display": "lumen", "images": [ { "imageSync": { - "baseDenom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "chainName": "osmosis", + "baseDenom": "stroop", + "chainName": "stellar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", "theme": { - "primaryColorHex": "#57443f", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/stellar/images/xlm.svg", }, - "name": "Badkid", - "symbol": "BADKID", + "name": "Lumen (Solo Machine)", + "symbol": "XLM", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-11", }, "counterparty": { - "base_denom": "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D", + "chain_name": "cryptoorgchain", + "channel_id": "channel-17", }, "type": "ibc", }, @@ -35746,44 +35857,60 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965", + "base": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "coingeckoId": "dydx-chain", "denomUnits": [ { "aliases": [ - "inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88", + "adydx", ], - "denom": "ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965", + "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", "exponent": 0, }, { - "denom": "NINPO", - "exponent": 6, + "denom": "dydx", + "exponent": 18, }, ], - "description": "The second meme coin on Injective.", - "display": "NINPO", + "description": "DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.", + "display": "dydx", + "extendedDescription": "DYDX is a leading decentralized trading platform specializing in derivatives and perpetual contracts. It enables users to trade with leverage, providing a sophisticated and efficient trading environment without intermediaries. Built on the Ethereum blockchain, DYDX uses smart contracts to ensure transaction security and transparency, giving users full control over their funds and trades. + +The DYDX platform's native token, DYDX, is integral to its ecosystem, used for governance, staking, and fee discounts, incentivizing active participation. DYDX offers a wide range of trading pairs and supports advanced trading features like margin trading and lending. Combining the benefits of decentralized finance with traditional trading platform functionality, DYDX is paving the way for a more open and inclusive financial system.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png", + "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", "theme": { - "primaryColorHex": "#31292a", + "primaryColorHex": "#21212f", + }, + }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true, }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png", + "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", }, - "name": "Ninpo", - "symbol": "NINPO", + "name": "dYdX", + "socials": { + "twitter": "https://twitter.com/dYdX", + "website": "https://dydx.trade/", + }, + "symbol": "DYDX", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-131", }, "counterparty": { - "base_denom": "inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "adydx", + "chain_name": "dydx", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -35791,97 +35918,103 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18", + "base": "ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A", "denomUnits": [ { "aliases": [ - "inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h", + "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", ], - "denom": "ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18", + "denom": "ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A", "exponent": 0, }, { - "denom": "JUDO", + "denom": "usdc", "exponent": 6, }, ], - "description": "JUDO is a very futuristic meme token.", - "display": "JUDO", + "description": "Noble USDC on dYdX Protocol.", + "display": "usdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#18120f", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, - "name": "Judo", - "symbol": "JUDO", + "name": "Noble USDC", + "symbol": "USDC", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-131", }, "counterparty": { - "base_denom": "inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "chain_name": "dydx", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/ED543C8B9043304836CFFBA8FFFD2F16CF3F429C1A96C482E864E5E64EA1F440", + "base": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", + "coingeckoId": "graviton", "denomUnits": [ { "aliases": [ - "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "ugraviton", ], - "denom": "ibc/ED543C8B9043304836CFFBA8FFFD2F16CF3F429C1A96C482E864E5E64EA1F440", + "denom": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", "exponent": 0, }, { - "denom": "beast", + "denom": "graviton", "exponent": 6, }, ], - "description": "BEAST-ERC20 on injective", - "display": "beast", + "description": "The native token of Gravity Bridge", + "display": "graviton", "images": [ { - "imageSync": { - "baseDenom": "0xA4426666addBE8c4985377d36683D17FB40c31Be", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.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", "theme": { - "primaryColorHex": "#21172b", + "primaryColorHex": "#042ca4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.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", }, - "name": "Gelotto BEAST", + "name": "Graviton", "socials": { - "twitter": "https://twitter.com/Gelotto2", - "website": "https://gelotto.io/", + "twitter": "https://twitter.com/gravity_bridge", + "website": "https://www.gravitybridge.net/", }, - "symbol": "BEAST", + "symbol": "GRAV", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "ugraviton", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -35889,92 +36022,96 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/E65D6E883A8A0EE5C24B0F0E1C3A400B95C104AAE9EE585BFEBC45D1104DF1F7", + "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", "denomUnits": [ { "aliases": [ - "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", + "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", ], - "denom": "ibc/E65D6E883A8A0EE5C24B0F0E1C3A400B95C104AAE9EE585BFEBC45D1104DF1F7", + "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", "exponent": 0, }, { - "denom": "astro", - "exponent": 6, + "denom": "pstake", + "exponent": 18, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "astro", + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "display": "pstake", "images": [ { "imageSync": { - "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "chainName": "neutron", + "baseDenom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.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", "theme": { - "primaryColorHex": "#4056e9", + "primaryColorHex": "#050505", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.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", }, - "name": "Astroport token", - "symbol": "ASTRO", + "name": "pSTAKE Finance", + "symbol": "PSTAKE", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/017871DB6039C5475238949FEAC22EB77F339511C79B852A21DF150C300EFD7C", + "base": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", "denomUnits": [ { "aliases": [ - "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", + "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", ], - "denom": "ibc/017871DB6039C5475238949FEAC22EB77F339511C79B852A21DF150C300EFD7C", + "denom": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", "exponent": 0, }, { - "denom": "nINJ", + "denom": "gweth", "exponent": 18, }, ], - "description": "A receipt token for lent INJ issued by the Neptune Protocol.", - "display": "nINJ", + "description": "Gravity Bridge WETH", + "display": "gweth", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninj.png", - "theme": { - "primaryColorHex": "#293a6f", + "imageSync": { + "baseDenom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], - "name": "Neptune Receipt INJ", - "symbol": "nINJ", + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + }, + "name": "Wrapped Ethereum", + "symbol": "WETH", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -35982,41 +36119,51 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/874B761C3559D9CAFC1E55C3761F22DEA6A3E1F9258D3734316C28A1EFE4C6A1", + "base": "ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D", "denomUnits": [ { "aliases": [ - "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", + "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", ], - "denom": "ibc/874B761C3559D9CAFC1E55C3761F22DEA6A3E1F9258D3734316C28A1EFE4C6A1", + "denom": "ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D", "exponent": 0, }, { - "denom": "nATOM", + "denom": "gusdc", "exponent": 6, }, ], - "description": "A receipt token for lent ATOM issued by the Neptune Protocol.", - "display": "nATOM", + "description": "Gravity Bridge USDC", + "display": "gusdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/natom.png", + "imageSync": { + "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#272f4b", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], - "name": "Neptune Receipt ATOM", - "symbol": "nATOM", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, + "name": "USD Coin", + "symbol": "USDC", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36024,41 +36171,52 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/4E3FA983B370F8B1697AD6A10F7EC0F983CFFFC6C86152D5B37A72A1B65B38D0", + "base": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", "denomUnits": [ { "aliases": [ - "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", + "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", ], - "denom": "ibc/4E3FA983B370F8B1697AD6A10F7EC0F983CFFFC6C86152D5B37A72A1B65B38D0", + "denom": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", "exponent": 0, }, { - "denom": "nWETH", - "exponent": 18, + "denom": "gusdt", + "exponent": 6, }, ], - "description": "A receipt token for lent WETH issued by the Neptune Protocol.", - "display": "nWETH", + "description": "Gravity Bridge USDT", + "display": "gusdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nweth.png", + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#2a303f", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], - "name": "Neptune Receipt WETH", - "symbol": "nWETH", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + }, + "name": "Tether USD", + "symbol": "USDT", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36066,41 +36224,50 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/4E05C4170B86C3BECC88B91B0424AB8A13F38A3A053E60F7FD25FE07A51827BB", + "base": "ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A", "denomUnits": [ { "aliases": [ - "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", + "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", ], - "denom": "ibc/4E05C4170B86C3BECC88B91B0424AB8A13F38A3A053E60F7FD25FE07A51827BB", + "denom": "ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A", "exponent": 0, }, { - "denom": "nUSDT", - "exponent": 6, + "denom": "gwbtc", + "exponent": 8, }, ], - "description": "A receipt token for lent USDT issued by the Neptune Protocol.", - "display": "nUSDT", + "description": "Gravity Bridge WBTC", + "display": "gwbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png", + "imageSync": { + "baseDenom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chainName": "ethereum", + }, + "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", "theme": { - "primaryColorHex": "#54ac94", + "primaryColorHex": "#f39444", }, }, ], - "name": "Neptune Receipt USDT", - "symbol": "nUSDT", + "logoURIs": { + "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", + }, + "name": "Wrapped Bitcoin", + "symbol": "WBTC", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36108,41 +36275,45 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/0AF7D43CA8D477D5E83CF5857717D025954E0102AC439DB957B168CBFB99EE77", + "base": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", "denomUnits": [ { "aliases": [ - "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", + "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", ], - "denom": "ibc/0AF7D43CA8D477D5E83CF5857717D025954E0102AC439DB957B168CBFB99EE77", + "denom": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", "exponent": 0, }, { - "denom": "nTIA", - "exponent": 6, + "denom": "gdai", + "exponent": 18, }, ], - "description": "A receipt token for lent TIA issued by the Neptune Protocol.", - "display": "nTIA", + "description": "Gravity Bridge DAI", + "display": "gdai", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ntia.png", - "theme": { - "primaryColorHex": "#7931f9", + "imageSync": { + "baseDenom": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", }, ], - "name": "Neptune Receipt TIA", - "symbol": "nTIA", + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + }, + "name": "Dai Stablecoin", + "symbol": "DAI", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36150,94 +36321,99 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/68F34469293C427052CA3AB7F95C16AFA43C8C921A70A2934EB6C9FC7EF4E393", + "base": "ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544", "denomUnits": [ { "aliases": [ - "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", + "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", ], - "denom": "ibc/68F34469293C427052CA3AB7F95C16AFA43C8C921A70A2934EB6C9FC7EF4E393", + "denom": "ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544", "exponent": 0, }, { - "denom": "NBZ", - "exponent": 6, + "denom": "gsdai", + "exponent": 18, }, ], - "description": "Ninja Blaze Token", - "display": "NBZ", + "description": "Gravity Bridge sDAI", + "display": "gsdai", "images": [ { "imageSync": { - "baseDenom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", - "chainName": "neutron", + "baseDenom": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.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", "theme": { - "primaryColorHex": "#9890f9", + "primaryColorHex": "#7ec231", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.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", }, - "name": "Ninja Blaze Token", - "symbol": "NBZ", + "name": "Savings Dai", + "symbol": "sDAI", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/5BA38A7FD80F01D73D60619A2B3F29F05895FE40EBB91A4CD8AC620839E2CC1D", + "base": "ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823", "denomUnits": [ { "aliases": [ - "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", ], - "denom": "ibc/5BA38A7FD80F01D73D60619A2B3F29F05895FE40EBB91A4CD8AC620839E2CC1D", + "denom": "ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823", "exponent": 0, }, { - "denom": "Talis", - "exponent": 6, + "denom": "gocc", + "exponent": 18, }, ], - "description": "Talis governance token", - "display": "Talis", + "description": "Gravity Bridge OCC", + "display": "gocc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/talis.png", + "imageSync": { + "baseDenom": "0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", "theme": { - "primaryColorHex": "#0c0f17", + "primaryColorHex": "#313648", }, }, ], - "name": "Talis Token", - "socials": { - "twitter": "https://twitter.com/ProtocolTalis", - "website": "https://talis.art/", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", }, - "symbol": "TALIS", + "name": "OccamFi", + "symbol": "OCC", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36245,45 +36421,50 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/43051B8EC08F881C9A6E01FAFDE1DD9133780BD261C26BB9226CDDC3C8DEEC08", + "base": "ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3", "denomUnits": [ { "aliases": [ - "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis", + "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", ], - "denom": "ibc/43051B8EC08F881C9A6E01FAFDE1DD9133780BD261C26BB9226CDDC3C8DEEC08", + "denom": "ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3", "exponent": 0, }, { - "denom": "xTalis", - "exponent": 6, + "denom": "page", + "exponent": 8, }, ], - "description": "Talis revenue sharing token", - "display": "xTalis", + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "display": "page", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/xtalis.png", + "imageSync": { + "baseDenom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "chainName": "ethereum", + }, + "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", "theme": { - "primaryColorHex": "#eaf0df", + "primaryColorHex": "#ebb324", }, }, ], - "name": "xTalis Token", - "socials": { - "twitter": "https://twitter.com/ProtocolTalis", - "website": "https://talis.art/", + "logoURIs": { + "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", }, - "symbol": "XTALIS", + "name": "Page", + "symbol": "PAGE", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, @@ -36291,97 +36472,103 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/6EF4B5C603CBF31C47C28ABDDFE28504A7D77583A3D68FA0A76B9D1EE67152B5", + "base": "ibc/65A75CC7F56A4D655E46D6615EE8BECC59EDB17C92C663B76D1C4424438D2201", "denomUnits": [ { "aliases": [ - "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", + "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", ], - "denom": "ibc/6EF4B5C603CBF31C47C28ABDDFE28504A7D77583A3D68FA0A76B9D1EE67152B5", + "denom": "ibc/65A75CC7F56A4D655E46D6615EE8BECC59EDB17C92C663B76D1C4424438D2201", "exponent": 0, }, { - "denom": "usdc", - "exponent": 6, + "denom": "gpaxg", + "exponent": 18, }, ], - "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.", - "display": "usdc", + "description": "Gravity Bridge Paxos Gold", + "display": "gpaxg", "images": [ { "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", + "baseDenom": "0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#ebe60e", }, }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg", }, - "name": "USDC", - "symbol": "USDC", + "name": "Paxos Gold", + "symbol": "PAXG", "traces": [ { "chain": { - "channel_id": "channel-41", + "channel_id": "channel-38", }, "counterparty": { - "base_denom": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", - "chain_name": "injective", - "channel_id": "channel-82", + "base_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "chain_name": "gravitybridge", + "channel_id": "channel-24", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/43B0460DEF31D8B348AB2D5778002697E23A0DD489C79E3FCC697306C65D0BE0", + "base": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", + "coingeckoId": "injective-protocol", "denomUnits": [ { "aliases": [ - "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "inj", ], - "denom": "ibc/43B0460DEF31D8B348AB2D5778002697E23A0DD489C79E3FCC697306C65D0BE0", + "denom": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", "exponent": 0, }, { - "denom": "SYN", - "exponent": 6, + "denom": "INJ", + "exponent": 18, }, ], - "description": "The most degenerate NFT on Injective. Gravedigger collection for $bINJ. Giving power back to the community.", - "display": "SYN", + "description": "Injective is a decentralized exchange protocol that enables fast, secure, and fully decentralized trading of derivatives, futures, and spot markets.", + "display": "INJ", + "extendedDescription": "Injective Protocol is a cutting-edge decentralized exchange (DEX) platform facilitating fully decentralized trading of derivatives, futures, and spot markets. Built on the Cosmos SDK, Injective leverages layer-2 scaling solutions for high-speed transactions with low fees, ensuring an efficient trading experience. The platform's design eliminates intermediaries, giving users complete control over their assets and trades. + +The Injective ecosystem is powered by its native token, INJ, used for governance, staking, and fee reduction. By staking INJ, users can participate in network governance, influencing key decisions and protocol upgrades. Injective's features include cross-chain trading, allowing seamless asset trading across different blockchains, and a decentralized order book for transparency and security. Injective transforms the DeFi space with a comprehensive, decentralized solution for trading various financial instruments.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.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", "theme": { "primaryColorHex": "#04a2fc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.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", }, - "name": "Syndicate", - "symbol": "SYN", + "name": "Injective", + "socials": { + "twitter": "https://twitter.com/Injective_", + "website": "https://injective.com/", + }, + "symbol": "INJ", "traces": [ { "chain": { "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "base_denom": "inj", "chain_name": "injective", "channel_id": "channel-82", }, @@ -36391,89 +36578,103 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/A93ABD16B471A2E0D1A27EA516369E6B7319F758AFBAACF279D356F8F79DDA49", + "base": "ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17", "denomUnits": [ { "aliases": [ - "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", ], - "denom": "ibc/A93ABD16B471A2E0D1A27EA516369E6B7319F758AFBAACF279D356F8F79DDA49", + "denom": "ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17", "exponent": 0, }, { - "denom": "ashSYN", + "denom": "usdt", "exponent": 6, }, ], - "description": "SYN burn Derivative; minted when SYN is burned via The Furnace", - "display": "ashSYN", + "description": "Tether USDt on Injective", + "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png", + "imageSync": { + "baseDenom": "erc20/tether/usdt", + "chainName": "kava", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "theme": { + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", + }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "ASH Syndicate", - "symbol": "ashSYN", + "name": "Tether USDt", + "symbol": "USDTkv", "traces": [ { "chain": { "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "base_denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "chain_name": "injective", "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/671438E5CD852D3309489AE8242C7CF7B3F807C20A94839167779BDB541A2F28", + "base": "ibc/BD2C20489720B24DFE340E77F1999D7DC1F6254919205A51D5B25E748E7C8733", "denomUnits": [ { "aliases": [ - "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", ], - "denom": "ibc/671438E5CD852D3309489AE8242C7CF7B3F807C20A94839167779BDB541A2F28", + "denom": "ibc/BD2C20489720B24DFE340E77F1999D7DC1F6254919205A51D5B25E748E7C8733", "exponent": 0, }, { - "denom": "COSMO", + "denom": "usdt", "exponent": 6, }, ], - "description": "Cosmo is the best currency in the universe.", - "display": "COSMO", - "extendedDescription": "We aim to build a decentralized community by leveraging cutting-edge technologies.", + "description": "Tether USDt from Ethereum via Peggy bridge.", + "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#343169", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", - }, - "name": "Cosmo", - "socials": { - "twitter": "https://x.com/CosmoClub84", - "website": "https://github.com/raphaellafar/Cosmo", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "symbol": "COSMO", + "name": "Tether USDT", + "symbol": "USDT", "traces": [ { "chain": { "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "base_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", "chain_name": "injective", "channel_id": "channel-82", }, @@ -36483,88 +36684,88 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/B202BA609FE21B923A8C4DF40AF3014DFD738FA544A7BDA736F5C7A4A60ECD3D", + "base": "ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7", "denomUnits": [ { "aliases": [ - "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", + "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", ], - "denom": "ibc/B202BA609FE21B923A8C4DF40AF3014DFD738FA544A7BDA736F5C7A4A60ECD3D", + "denom": "ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7", "exponent": 0, }, { - "denom": "XTRUMP", + "denom": "ampINJ", "exponent": 6, }, ], - "description": "The Representative factory token for Trump Kemistry", - "display": "XTRUMP", + "description": "ERIS liquid staked INJ", + "display": "ampINJ", "images": [ { - "imageSync": { - "baseDenom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", - "chainName": "osmosis", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", "theme": { - "primaryColorHex": "#b02b27", + "primaryColorHex": "#5480cc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", }, - "name": "XTRUMP", - "symbol": "XTRUMP", + "name": "ERIS Amplified INJ", + "symbol": "ampINJ", "traces": [ { "chain": { "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", + "base_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", "chain_name": "injective", "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/B518CAF60AF54B7A3B90BCF7D50554016CFAC872CC767126062E0D3D154E1D35", + "base": "ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C", + "coingeckoId": "autism", "denomUnits": [ { "aliases": [ - "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", ], - "denom": "ibc/B518CAF60AF54B7A3B90BCF7D50554016CFAC872CC767126062E0D3D154E1D35", + "denom": "ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C", "exponent": 0, }, { - "denom": "DRUGS", - "exponent": 9, + "denom": "autism", + "exponent": 6, }, ], - "description": "Distributing happiness, is a serious business", - "display": "DRUGS", + "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", + "display": "autism", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "theme": { + "primaryColorHex": "#040404", + }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", }, - "name": "DRUGS", - "symbol": "DRUGS", + "name": "Autism", + "symbol": "AUTISM", "traces": [ { "chain": { "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/inj1sklcy2px26jj73ffs2f7fmxw77zsts66prrqxr/DRUGS", + "base_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", "chain_name": "injective", "channel_id": "channel-82", }, @@ -36574,47 +36775,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B", - "coingeckoId": "iris-network", + "base": "ibc/4A03E702D82730C78DE2F055065BDF09BCADB147EB898D2707009597810F9E7F", "denomUnits": [ { "aliases": [ - "uiris", + "factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ", ], - "denom": "ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B", + "denom": "ibc/4A03E702D82730C78DE2F055065BDF09BCADB147EB898D2707009597810F9E7F", "exponent": 0, }, { - "denom": "iris", - "exponent": 6, + "denom": "bINJ", + "exponent": 18, }, ], - "description": "The IRIS token is the native governance token for the IrisNet chain.", - "display": "iris", + "description": "BackBone Labs Liquid Staked Injective", + "display": "bINJ", "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/binj.png", "theme": { - "primaryColorHex": "#5664ad", + "primaryColorHex": "#04a2fc", }, }, ], "logoURIs": { - "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/binj.png", }, - "name": "IRISnet", - "symbol": "IRIS", + "name": "BackBone Labs Liquid Staked Injective", + "symbol": "bINJ", "traces": [ { "chain": { - "channel_id": "channel-19", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "uiris", - "chain_name": "irisnet", - "channel_id": "channel-15", + "base_denom": "factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -36622,51 +36820,52 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", - "coingeckoId": "juno-network", + "base": "ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C", + "coingeckoId": "dog-wif-nuchucks", "denomUnits": [ { "aliases": [ - "ujuno", + "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", ], - "denom": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", + "denom": "ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C", "exponent": 0, }, { - "denom": "juno", + "denom": "NINJA", "exponent": 6, }, ], - "description": "The native token of JUNO Chain", - "display": "juno", + "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "display": "NINJA", + "extendedDescription": "$NINJA is the premier meme coin on Injective. There is no formal roadmap and no promises made, but NINJAs are builders and masters of surprise. For all intents and purposes, the coin is completely useless, until it's not. And the dog, he has nunchucks.", "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/ninja.png", "theme": { - "primaryColorHex": "#fa7b7b", + "backgroundColorHex": "#00468E", + "circle": true, + "primaryColorHex": "#00468E", }, }, ], "logoURIs": { - "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/ninja.png", }, - "name": "Juno", + "name": "Dog wif nunchucks", "socials": { - "twitter": "https://twitter.com/JunoNetwork", - "website": "https://junonetwork.io/", + "twitter": "https://x.com/dogwifnunchucks", + "website": "https://www.dogwifnunchucks.com/", }, - "symbol": "JUNO", + "symbol": "NINJA", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ujuno", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -36674,242 +36873,247 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B", + "base": "ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5", "denomUnits": [ { "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", ], - "denom": "ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B", + "denom": "ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5", "exponent": 0, }, { - "denom": "atom", + "denom": "WGMI", "exponent": 6, }, ], - "display": "atom", + "description": "The $WGMI Token - We Gonna Make It. Are you ready?", + "display": "WGMI", "images": [ { - "imageSync": { - "baseDenom": "uatom", - "chainName": "cosmoshub", - }, - "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/injective/images/wgmi.png", "theme": { - "primaryColorHex": "#272d45", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/injective/images/wgmi.png", }, - "name": "ATOM on Juno", - "symbol": "ATOM", + "name": "WGMI", + "symbol": "WGMI", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh", - "base": "ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80", + "base": "ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE", "denomUnits": [ { "aliases": [ - "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", ], - "denom": "ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80", + "denom": "ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE", "exponent": 0, }, { - "denom": "nexx", + "denom": "WOSMO", "exponent": 6, }, ], - "display": "nexx", + "description": "The first memecoin on osmosis.", + "display": "WOSMO", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "imageSync": { + "baseDenom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "theme": { - "primaryColorHex": "#040405", + "primaryColorHex": "#edd5ee", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", }, - "name": "NEXX GEN AI", - "symbol": "NEXX", + "name": "Wosmo", + "symbol": "WOSMO", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e", - "base": "ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6", + "base": "ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20", "denomUnits": [ { "aliases": [ - "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", ], - "denom": "ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6", + "denom": "ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20", "exponent": 0, }, { - "denom": "dgl", + "denom": "glto", "exponent": 6, }, ], - "display": "dgl", + "description": "GLTO-ERC20 on injective", + "display": "glto", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "imageSync": { + "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", "theme": { - "primaryColorHex": "#dfe0e0", + "primaryColorHex": "#501cad", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", }, - "name": "Licorice", - "symbol": "DGL", + "name": "Gelotto", + "socials": { + "twitter": "https://twitter.com/Gelotto2", + "website": "https://gelotto.io/", + }, + "symbol": "GLTO", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "chain_name": "juno", - "channel_id": "channel-33", - }, - "type": "ibc", + "base_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "chain_name": "injective", + "channel_id": "channel-82", + }, + "type": "ibc", }, ], "typeAsset": "sdk.coin", }, { - "base": "ibc/BE1A2FD0D31DE2355C78410F440F1547A5A4CA940C65675FDD2EBBC32D47D64F", - "coingeckoId": "usd-coin", + "base": "ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6", + "coingeckoId": "hava-coin", "denomUnits": [ { "aliases": [ - "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", ], - "denom": "ibc/BE1A2FD0D31DE2355C78410F440F1547A5A4CA940C65675FDD2EBBC32D47D64F", + "denom": "ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6", "exponent": 0, }, { - "denom": "usdc", + "denom": "hava", "exponent": 6, }, ], - "description": "USD Coin on Juno", - "display": "usdc", + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", + "display": "hava", "images": [ { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#eacea5", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", }, - "name": "USD Coin", - "symbol": "USDC", + "name": "Hava Coin", + "socials": { + "twitter": "https://twitter.com/Hava_Coin", + "website": "https://havacoin.xyz/", + }, + "symbol": "HAVA", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/17B07291F69C235E62867F91911AD74D17FA53D63A3134A5CCD8A9945DA715C7", + "base": "ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19", "denomUnits": [ { "aliases": [ - "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", + "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", ], - "denom": "ibc/17B07291F69C235E62867F91911AD74D17FA53D63A3134A5CCD8A9945DA715C7", + "denom": "ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19", "exponent": 0, }, { - "denom": "rstk", + "denom": "BADKID", "exponent": 6, }, ], - "display": "rstk", + "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.", + "display": "BADKID", "images": [ { "imageSync": { - "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", - "chainName": "migaloo", + "baseDenom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "chainName": "osmosis", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", "theme": { - "primaryColorHex": "#3ccc64", + "primaryColorHex": "#57443f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", }, - "name": "Restake DAO Token", - "symbol": "RSTK", + "name": "Badkid", + "symbol": "BADKID", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -36917,44 +37121,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "address": "juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq", - "base": "ibc/CCEE4D509807AC244043659B2CFABA53312685A30B63C89D3AA1AACB4B8A5CFE", + "base": "ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965", "denomUnits": [ { "aliases": [ - "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88", ], - "denom": "ibc/CCEE4D509807AC244043659B2CFABA53312685A30B63C89D3AA1AACB4B8A5CFE", + "denom": "ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965", "exponent": 0, }, { - "denom": "wind", + "denom": "NINPO", "exponent": 6, }, ], - "display": "wind", + "description": "The second meme coin on Injective.", + "display": "NINPO", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png", "theme": { - "primaryColorHex": "#122b4d", + "primaryColorHex": "#31292a", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png", }, - "name": "Wind Token", - "symbol": "WIND", + "name": "Ninpo", + "symbol": "NINPO", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -36962,47 +37166,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "address": "juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k", - "base": "ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF", + "base": "ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18", "denomUnits": [ { "aliases": [ - "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h", ], - "denom": "ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF", + "denom": "ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18", "exponent": 0, }, { - "denom": "arena", + "denom": "JUDO", "exponent": 6, }, ], - "description": "The token for the Arena DAO", - "display": "arena", + "description": "JUDO is a very futuristic meme token.", + "display": "JUDO", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png", "theme": { - "primaryColorHex": "#dc6c24", + "primaryColorHex": "#18120f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png", }, - "name": "Arena Token", - "symbol": "ARENA", + "name": "Judo", + "symbol": "JUDO", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37010,41 +37211,52 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5480D563EF40A6DC91311E5064A86CC7CB3E8109EC70C7AE2C68AE0DA9341D39", + "base": "ibc/ED543C8B9043304836CFFBA8FFFD2F16CF3F429C1A96C482E864E5E64EA1F440", "denomUnits": [ { "aliases": [ - "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", + "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", ], - "denom": "ibc/5480D563EF40A6DC91311E5064A86CC7CB3E8109EC70C7AE2C68AE0DA9341D39", + "denom": "ibc/ED543C8B9043304836CFFBA8FFFD2F16CF3F429C1A96C482E864E5E64EA1F440", "exponent": 0, }, { - "denom": "ashWIND", + "denom": "beast", "exponent": 6, }, ], - "description": "ashWIND", - "display": "ashWIND", + "description": "BEAST-ERC20 on injective", + "display": "beast", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png", + "imageSync": { + "baseDenom": "0xA4426666addBE8c4985377d36683D17FB40c31Be", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", + "theme": { + "primaryColorHex": "#21172b", + }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", }, - "name": "ashWIND", - "symbol": "ashWIND", + "name": "Gelotto BEAST", + "socials": { + "twitter": "https://twitter.com/Gelotto2", + "website": "https://gelotto.io/", + }, + "symbol": "BEAST", "traces": [ { "chain": { - "channel_id": "channel-37", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", - "chain_name": "juno", - "channel_id": "channel-33", + "base_denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37052,100 +37264,92 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", - "coingeckoId": "kava", + "base": "ibc/E65D6E883A8A0EE5C24B0F0E1C3A400B95C104AAE9EE585BFEBC45D1104DF1F7", "denomUnits": [ { "aliases": [ - "ukava", + "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", ], - "denom": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", + "denom": "ibc/E65D6E883A8A0EE5C24B0F0E1C3A400B95C104AAE9EE585BFEBC45D1104DF1F7", "exponent": 0, }, { - "denom": "kava", + "denom": "astro", "exponent": 6, }, ], - "description": "Kava is a decentralized finance (DeFi) platform that provides a range of financial services, including lending, borrowing, and stablecoins, leveraging the Cosmos and Ethereum ecosystems.", - "display": "kava", - "extendedDescription": "Kava offers a suite of DeFi services, such as lending, borrowing, and stablecoin issuance, utilizing a cross-chain platform that integrates the Cosmos SDK and Ethereum interoperability. Users can collateralize their assets to borrow Kava's stablecoin, USDX, or participate in lending and liquidity pools to earn rewards. Kava's native token, KAVA, is used for staking, governance, and securing the network. The platform's goal is to provide a decentralized, efficient, and accessible financial ecosystem that bridges multiple blockchain networks.", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "astro", "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", + "imageSync": { + "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", "theme": { - "primaryColorHex": "#e64942", + "primaryColorHex": "#4056e9", }, }, ], "logoURIs": { - "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", - }, - "name": "Kava", - "socials": { - "twitter": "https://twitter.com/KAVA_CHAIN", - "website": "https://www.kava.io/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", }, - "symbol": "KAVA", + "name": "Astroport token", + "symbol": "ASTRO", "traces": [ { "chain": { - "channel_id": "channel-129", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ukava", - "chain_name": "kava", - "channel_id": "channel-134", + "base_denom": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76", - "coingeckoId": "kava-lend", + "base": "ibc/017871DB6039C5475238949FEAC22EB77F339511C79B852A21DF150C300EFD7C", "denomUnits": [ { "aliases": [ - "hard", + "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", ], - "denom": "ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76", + "denom": "ibc/017871DB6039C5475238949FEAC22EB77F339511C79B852A21DF150C300EFD7C", "exponent": 0, }, { - "denom": "HARD", - "exponent": 6, + "denom": "nINJ", + "exponent": 18, }, ], - "description": "Governance token of Kava Lend Protocol", - "display": "HARD", + "description": "A receipt token for lent INJ issued by the Neptune Protocol.", + "display": "nINJ", "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/ninj.png", "theme": { - "primaryColorHex": "#7b34ac", + "primaryColorHex": "#293a6f", }, }, ], - "logoURIs": { - "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", - }, - "name": "Kava Hard", - "symbol": "HARD", + "name": "Neptune Receipt INJ", + "symbol": "nINJ", "traces": [ { "chain": { - "channel_id": "channel-129", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "hard", - "chain_name": "kava", - "channel_id": "channel-134", + "base_denom": "inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37153,47 +37357,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A", - "coingeckoId": "kava-swap", + "base": "ibc/874B761C3559D9CAFC1E55C3761F22DEA6A3E1F9258D3734316C28A1EFE4C6A1", "denomUnits": [ { "aliases": [ - "swp", + "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", ], - "denom": "ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A", + "denom": "ibc/874B761C3559D9CAFC1E55C3761F22DEA6A3E1F9258D3734316C28A1EFE4C6A1", "exponent": 0, }, { - "denom": "SWP", + "denom": "nATOM", "exponent": 6, }, ], - "description": "Governance token of Kava Swap Protocol", - "display": "SWP", + "description": "A receipt token for lent ATOM issued by the Neptune Protocol.", + "display": "nATOM", "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/natom.png", "theme": { - "primaryColorHex": "#544cfc", + "primaryColorHex": "#272f4b", }, }, ], - "logoURIs": { - "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", - }, - "name": "Kava Swap", - "symbol": "SWP", + "name": "Neptune Receipt ATOM", + "symbol": "nATOM", "traces": [ { "chain": { - "channel_id": "channel-129", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "swp", - "chain_name": "kava", - "channel_id": "channel-134", + "base_denom": "inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37201,47 +37399,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51", - "coingeckoId": "usdx", + "base": "ibc/4E3FA983B370F8B1697AD6A10F7EC0F983CFFFC6C86152D5B37A72A1B65B38D0", "denomUnits": [ { "aliases": [ - "usdx", + "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", ], - "denom": "ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51", + "denom": "ibc/4E3FA983B370F8B1697AD6A10F7EC0F983CFFFC6C86152D5B37A72A1B65B38D0", "exponent": 0, }, { - "denom": "USDX", - "exponent": 6, + "denom": "nWETH", + "exponent": 18, }, ], - "description": "The native stablecoin of Kava", - "display": "USDX", + "description": "A receipt token for lent WETH issued by the Neptune Protocol.", + "display": "nWETH", "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/injective/images/nweth.png", "theme": { - "primaryColorHex": "#04d4a3", + "primaryColorHex": "#2a303f", }, }, ], - "logoURIs": { - "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", - }, - "name": "Kava USDX", - "symbol": "USDX", + "name": "Neptune Receipt WETH", + "symbol": "nWETH", "traces": [ { "chain": { - "channel_id": "channel-129", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "usdx", - "chain_name": "kava", - "channel_id": "channel-134", + "base_denom": "inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37249,52 +37441,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", - "coingeckoId": "tether", + "base": "ibc/4E05C4170B86C3BECC88B91B0424AB8A13F38A3A053E60F7FD25FE07A51827BB", "denomUnits": [ { "aliases": [ - "erc20/tether/usdt", + "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", ], - "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "denom": "ibc/4E05C4170B86C3BECC88B91B0424AB8A13F38A3A053E60F7FD25FE07A51827BB", "exponent": 0, }, { - "denom": "usdt", + "denom": "nUSDT", "exponent": 6, }, ], - "display": "usdt", + "description": "A receipt token for lent USDT issued by the Neptune Protocol.", + "display": "nUSDT", "images": [ { - "imageSync": { - "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/nusdt.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#54ac94", }, }, ], - "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - }, - "name": "Tether USD", - "symbol": "USDT", + "name": "Neptune Receipt USDT", + "symbol": "nUSDT", "traces": [ { "chain": { - "channel_id": "channel-129", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "erc20/tether/usdt", - "chain_name": "kava", - "channel_id": "channel-134", + "base_denom": "inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37302,52 +37483,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D", - "coingeckoId": "kujira", + "base": "ibc/0AF7D43CA8D477D5E83CF5857717D025954E0102AC439DB957B168CBFB99EE77", "denomUnits": [ { "aliases": [ - "ukuji", + "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", ], - "denom": "ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D", + "denom": "ibc/0AF7D43CA8D477D5E83CF5857717D025954E0102AC439DB957B168CBFB99EE77", "exponent": 0, }, { - "denom": "kuji", + "denom": "nTIA", "exponent": 6, }, ], - "description": "Kujira is a decentralized finance (DeFi) platform offering a suite of tools and services for managing and optimizing digital assets and investments.", - "display": "kuji", - "extendedDescription": "Kujira provides a comprehensive DeFi platform that includes tools for lending, borrowing, and yield farming, leveraging blockchain technology to offer a transparent, secure, and efficient user experience. The native token, KUJI, is central to the ecosystem, used for transaction fees, staking, and governance. Kujira's user-centric design and innovative features make it a popular choice in the DeFi space, enabling users to maximize their returns and effectively manage their digital assets.", + "description": "A receipt token for lent TIA issued by the Neptune Protocol.", + "display": "nTIA", "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/injective/images/ntia.png", "theme": { - "primaryColorHex": "#e33b34", + "primaryColorHex": "#7931f9", }, }, ], - "logoURIs": { - "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", - }, - "name": "Kujira", - "socials": { - "twitter": "https://twitter.com/TeamKujira", - "website": "https://kujira.network/", - }, - "symbol": "KUJI", + "name": "Neptune Receipt TIA", + "symbol": "nTIA", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ukuji", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37355,89 +37525,94 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E", - "coingeckoId": "usk", + "base": "ibc/68F34469293C427052CA3AB7F95C16AFA43C8C921A70A2934EB6C9FC7EF4E393", "denomUnits": [ { "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", ], - "denom": "ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E", + "denom": "ibc/68F34469293C427052CA3AB7F95C16AFA43C8C921A70A2934EB6C9FC7EF4E393", "exponent": 0, }, { - "denom": "usk", + "denom": "NBZ", "exponent": 6, }, ], - "description": "The native over-collateralized stablecoin from the Kujira chain.", - "display": "usk", + "description": "Ninja Blaze Token", + "display": "NBZ", "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", + "imageSync": { + "baseDenom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png", "theme": { - "primaryColorHex": "#2e363f", + "primaryColorHex": "#9890f9", }, }, ], "logoURIs": { - "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/neutron/images/NBZ.png", }, - "name": "USK", - "symbol": "USK", + "name": "Ninja Blaze Token", + "symbol": "NBZ", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659", + "base": "ibc/5BA38A7FD80F01D73D60619A2B3F29F05895FE40EBB91A4CD8AC620839E2CC1D", "denomUnits": [ { "aliases": [ - "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", ], - "denom": "ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659", + "denom": "ibc/5BA38A7FD80F01D73D60619A2B3F29F05895FE40EBB91A4CD8AC620839E2CC1D", "exponent": 0, }, { - "denom": "qcKUJI", + "denom": "Talis", "exponent": 6, }, ], - "description": "Quark's auto-compounding KUJI derivative", - "display": "qcKUJI", + "description": "Talis governance token", + "display": "Talis", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/talis.png", + "theme": { + "primaryColorHex": "#0c0f17", + }, }, ], - "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", + "name": "Talis Token", + "socials": { + "twitter": "https://twitter.com/ProtocolTalis", + "website": "https://talis.art/", }, - "name": "qcKUJI", - "symbol": "qcKUJI", + "symbol": "TALIS", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37445,46 +37620,45 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32", + "base": "ibc/43051B8EC08F881C9A6E01FAFDE1DD9133780BD261C26BB9226CDDC3C8DEEC08", "denomUnits": [ { "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis", ], - "denom": "ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32", + "denom": "ibc/43051B8EC08F881C9A6E01FAFDE1DD9133780BD261C26BB9226CDDC3C8DEEC08", "exponent": 0, }, { - "denom": "ampKUJI", + "denom": "xTalis", "exponent": 6, }, ], - "description": "ampKUJI", - "display": "ampKUJI", + "description": "Talis revenue sharing token", + "display": "xTalis", "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/injective/images/xtalis.png", "theme": { - "primaryColorHex": "#4b7bbb", + "primaryColorHex": "#eaf0df", }, }, ], - "logoURIs": { - "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", - }, - "name": "ampKUJI", - "symbol": "ampKUJI", + "name": "xTalis Token", + "socials": { + "twitter": "https://twitter.com/ProtocolTalis", + "website": "https://talis.art/", + }, + "symbol": "XTALIS", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37492,89 +37666,99 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918", - "coingeckoId": "mantadao", + "base": "ibc/6EF4B5C603CBF31C47C28ABDDFE28504A7D77583A3D68FA0A76B9D1EE67152B5", "denomUnits": [ { "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", ], - "denom": "ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918", + "denom": "ibc/6EF4B5C603CBF31C47C28ABDDFE28504A7D77583A3D68FA0A76B9D1EE67152B5", "exponent": 0, }, { - "denom": "mnta", + "denom": "usdc", "exponent": 6, }, ], - "description": "MantaDAO Governance Token", - "display": "mnta", + "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.", + "display": "usdc", "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", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#0c141c", + "circle": true, + "primaryColorHex": "#2775CA", }, }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, ], "logoURIs": { - "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/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, - "name": "MantaDAO", - "symbol": "MNTA", + "name": "USDC", + "symbol": "USDC", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569", + "base": "ibc/43B0460DEF31D8B348AB2D5778002697E23A0DD489C79E3FCC697306C65D0BE0", "denomUnits": [ { "aliases": [ - "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", ], - "denom": "ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569", + "denom": "ibc/43B0460DEF31D8B348AB2D5778002697E23A0DD489C79E3FCC697306C65D0BE0", "exponent": 0, }, { - "denom": "qcMNTA", + "denom": "SYN", "exponent": 6, }, ], - "description": "Quark's auto-compounding MNTA derivative", - "display": "qcMNTA", + "description": "The most degenerate NFT on Injective. Gravedigger collection for $bINJ. Giving power back to the community.", + "display": "SYN", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png", + "theme": { + "primaryColorHex": "#04a2fc", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.png", }, - "name": "qcMNTA", - "symbol": "qcMNTA", + "name": "Syndicate", + "symbol": "SYN", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37582,44 +37766,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08", + "base": "ibc/A93ABD16B471A2E0D1A27EA516369E6B7319F758AFBAACF279D356F8F79DDA49", "denomUnits": [ { "aliases": [ - "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", ], - "denom": "ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08", + "denom": "ibc/A93ABD16B471A2E0D1A27EA516369E6B7319F758AFBAACF279D356F8F79DDA49", "exponent": 0, }, { - "denom": "ampMNTA", + "denom": "ashSYN", "exponent": 6, }, ], - "description": "ERIS Liquid Staked MNTA", - "display": "ampMNTA", + "description": "SYN burn Derivative; minted when SYN is burned via The Furnace", + "display": "ashSYN", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", - "theme": { - "primaryColorHex": "#618bc8", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/syn.ash.png", }, - "name": "ERIS Amplified MNTA", - "symbol": "ampMNTA", + "name": "ASH Syndicate", + "symbol": "ashSYN", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37627,46 +37808,49 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98", + "base": "ibc/671438E5CD852D3309489AE8242C7CF7B3F807C20A94839167779BDB541A2F28", "denomUnits": [ { "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", ], - "denom": "ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98", + "denom": "ibc/671438E5CD852D3309489AE8242C7CF7B3F807C20A94839167779BDB541A2F28", "exponent": 0, }, { - "denom": "wink", + "denom": "COSMO", "exponent": 6, }, ], - "description": "The content house of Kujira", - "display": "wink", + "description": "Cosmo is the best currency in the universe.", + "display": "COSMO", + "extendedDescription": "We aim to build a decentralized community by leveraging cutting-edge technologies.", "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/injective/images/cosmo.png", "theme": { - "primaryColorHex": "#fc7991", + "primaryColorHex": "#343169", }, }, ], "logoURIs": { - "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/injective/images/cosmo.png", }, - "name": "WINK", - "symbol": "WINK", + "name": "Cosmo", + "socials": { + "twitter": "https://x.com/CosmoClub84", + "website": "https://github.com/raphaellafar/Cosmo", + }, + "symbol": "COSMO", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, @@ -37674,142 +37858,138 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64", + "base": "ibc/B202BA609FE21B923A8C4DF40AF3014DFD738FA544A7BDA736F5C7A4A60ECD3D", "denomUnits": [ { "aliases": [ - "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", ], - "denom": "ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64", + "denom": "ibc/B202BA609FE21B923A8C4DF40AF3014DFD738FA544A7BDA736F5C7A4A60ECD3D", "exponent": 0, }, { - "denom": "blend", + "denom": "XTRUMP", "exponent": 6, }, ], - "description": "Blend Token", - "display": "blend", + "description": "The Representative factory token for Trump Kemistry", + "display": "XTRUMP", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", + "imageSync": { + "baseDenom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "theme": { + "primaryColorHex": "#b02b27", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", }, - "name": "BLEND", - "symbol": "BLEND", + "name": "XTRUMP", + "symbol": "XTRUMP", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28", + "base": "ibc/87B8A8BA4F4D8AC77AAE45512FB188913B822DA83AB2C1F6C665BC39CC06F892", "denomUnits": [ { "aliases": [ - "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", ], - "denom": "ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28", + "denom": "ibc/87B8A8BA4F4D8AC77AAE45512FB188913B822DA83AB2C1F6C665BC39CC06F892", "exponent": 0, }, { - "denom": "usdt", + "denom": "DRUGS", "exponent": 6, }, ], - "description": "Tether USDt on Kujira", - "display": "usdt", + "description": "Distributing happiness, is a serious business", + "display": "DRUGS", "images": [ { - "imageSync": { - "baseDenom": "erc20/tether/usdt", - "chainName": "kava", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/drugs.png", }, - "name": "Tether USD", - "symbol": "USDT", + "name": "DRUGS", + "symbol": "DRUGS", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-41", }, "counterparty": { - "base_denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS", + "chain_name": "injective", + "channel_id": "channel-82", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E", - "coingeckoId": "fuzion", + "base": "ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B", + "coingeckoId": "iris-network", "denomUnits": [ { "aliases": [ - "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "uiris", ], - "denom": "ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E", + "denom": "ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B", "exponent": 0, }, { - "denom": "fuzn", + "denom": "iris", "exponent": 6, }, ], - "description": "The staking and governance token of Fuzion", - "display": "fuzn", + "description": "The IRIS token is the native governance token for the IrisNet chain.", + "display": "iris", "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/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg", "theme": { - "primaryColorHex": "#f05d8d", + "primaryColorHex": "#5664ad", }, }, ], "logoURIs": { - "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/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg", }, - "name": "Fuzion", - "symbol": "FUZN", + "name": "IRISnet", + "symbol": "IRIS", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-19", }, "counterparty": { - "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "uiris", + "chain_name": "irisnet", + "channel_id": "channel-15", }, "type": "ibc", }, @@ -37817,44 +37997,51 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8", + "base": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", + "coingeckoId": "juno-network", "denomUnits": [ { "aliases": [ - "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "ujuno", ], - "denom": "ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8", + "denom": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", "exponent": 0, }, { - "denom": "rfuzn", + "denom": "juno", "exponent": 6, }, ], - "description": "The receipt token of Fuzion", - "display": "rfuzn", + "description": "The native token of JUNO Chain", + "display": "juno", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", + "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", "theme": { - "primaryColorHex": "#949494", + "primaryColorHex": "#fa7b7b", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", + "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", }, - "name": "Fuzion Receipt", - "symbol": "rFUZN", + "name": "Juno", + "socials": { + "twitter": "https://twitter.com/JunoNetwork", + "website": "https://junonetwork.io/", + }, + "symbol": "JUNO", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ujuno", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, @@ -37862,83 +38049,94 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140", + "base": "ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B", "denomUnits": [ { "aliases": [ - "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", ], - "denom": "ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140", + "denom": "ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B", "exponent": 0, }, { - "denom": "yfuzn", + "denom": "atom", "exponent": 6, }, ], - "description": "The yield token of Fuzion", - "display": "yfuzn", + "display": "atom", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg", + "imageSync": { + "baseDenom": "uatom", + "chainName": "cosmoshub", + }, + "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", + "theme": { + "primaryColorHex": "#272d45", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.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", }, - "name": "Fuzion Yield", - "symbol": "yFUZN", + "name": "ATOM on Juno", + "symbol": "ATOM", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0", + "address": "juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh", + "base": "ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80", "denomUnits": [ { "aliases": [ - "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", ], - "denom": "ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0", + "denom": "ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80", "exponent": 0, }, { - "denom": "qcFUZN", + "denom": "nexx", "exponent": 6, }, ], - "description": "Quark's auto-compounding FUZN derivative", - "display": "qcFUZN", + "display": "nexx", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "theme": { + "primaryColorHex": "#040405", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", }, - "name": "qcFUZN", - "symbol": "qcFUZN", + "name": "NEXX GEN AI", + "symbol": "NEXX", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, @@ -37946,41 +38144,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/EB7C58B57E48F3D55BA4D101E2199DCB198734806B6E8B108C43D518FA831595", + "address": "juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e", + "base": "ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6", "denomUnits": [ { "aliases": [ - "factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt", + "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", ], - "denom": "ibc/EB7C58B57E48F3D55BA4D101E2199DCB198734806B6E8B108C43D518FA831595", + "denom": "ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6", "exponent": 0, }, { - "denom": "qcAQLA", + "denom": "dgl", "exponent": 6, }, ], - "description": "Quark's auto-compounding AQLA derivative", - "display": "qcAQLA", + "display": "dgl", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcaqla.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "theme": { + "primaryColorHex": "#dfe0e0", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcaqla.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", }, - "name": "qcAQLA", - "symbol": "qcAQLA", + "name": "Licorice", + "symbol": "DGL", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, @@ -37988,130 +38189,147 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/51E4204AD14ECA94510811D307FC4830C3C0B51734CB34AFBC311B9FA28E4D7B", - "coingeckoId": "aqualibre", + "base": "ibc/BE1A2FD0D31DE2355C78410F440F1547A5A4CA940C65675FDD2EBBC32D47D64F", + "coingeckoId": "usd-coin", "denomUnits": [ { "aliases": [ - "factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla", + "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", ], - "denom": "ibc/51E4204AD14ECA94510811D307FC4830C3C0B51734CB34AFBC311B9FA28E4D7B", + "denom": "ibc/BE1A2FD0D31DE2355C78410F440F1547A5A4CA940C65675FDD2EBBC32D47D64F", "exponent": 0, }, { - "denom": "AQLA", + "denom": "usdc", "exponent": 6, }, ], - "description": "The Aqualibre project's token", - "display": "AQLA", + "description": "USD Coin on Juno", + "display": "usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#2775CA", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, - "name": "AQLA", - "symbol": "AQLA", + "name": "USD Coin", + "symbol": "USDC", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60", - "coingeckoId": "unstake-fi", + "base": "ibc/17B07291F69C235E62867F91911AD74D17FA53D63A3134A5CCD8A9945DA715C7", "denomUnits": [ { "aliases": [ - "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", ], - "denom": "ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60", + "denom": "ibc/17B07291F69C235E62867F91911AD74D17FA53D63A3134A5CCD8A9945DA715C7", "exponent": 0, }, { - "denom": "nstk", + "denom": "rstk", "exponent": 6, }, ], - "description": "The Revenue & Governance token of Unstake.fi", - "display": "nstk", + "display": "rstk", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "imageSync": { + "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "theme": { + "primaryColorHex": "#3ccc64", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", }, - "name": "Unstake Fi", - "symbol": "NSTK", + "name": "Restake DAO Token", + "symbol": "RSTK", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717", + "address": "juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq", + "base": "ibc/CCEE4D509807AC244043659B2CFABA53312685A30B63C89D3AA1AACB4B8A5CFE", "denomUnits": [ { "aliases": [ - "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", ], - "denom": "ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717", + "denom": "ibc/CCEE4D509807AC244043659B2CFABA53312685A30B63C89D3AA1AACB4B8A5CFE", "exponent": 0, }, { - "denom": "local", + "denom": "wind", "exponent": 6, }, ], - "description": "Local Money", - "display": "local", + "display": "wind", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png", "theme": { - "primaryColorHex": "#242424", + "primaryColorHex": "#122b4d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.png", }, - "name": "LOCAL", - "symbol": "LOCAL", + "name": "Wind Token", + "symbol": "WIND", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, @@ -38119,44 +38337,47 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4", + "address": "juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k", + "base": "ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF", "denomUnits": [ { "aliases": [ - "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", ], - "denom": "ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4", + "denom": "ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF", "exponent": 0, }, { - "denom": "PLNK", + "denom": "arena", "exponent": 6, }, ], - "description": "Food for whales", - "display": "PLNK", + "description": "The token for the Arena DAO", + "display": "arena", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", "theme": { - "primaryColorHex": "#c87ae9", + "primaryColorHex": "#dc6c24", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena.svg", }, - "name": "Plankton", - "symbol": "PLNK", + "name": "Arena Token", + "symbol": "ARENA", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, @@ -38164,740 +38385,703 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2", + "base": "ibc/5480D563EF40A6DC91311E5064A86CC7CB3E8109EC70C7AE2C68AE0DA9341D39", "denomUnits": [ { "aliases": [ - "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", ], - "denom": "ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2", + "denom": "ibc/5480D563EF40A6DC91311E5064A86CC7CB3E8109EC70C7AE2C68AE0DA9341D39", "exponent": 0, }, { - "denom": "sol", - "exponent": 8, + "denom": "ashWIND", + "exponent": 6, }, ], - "display": "sol", + "description": "ashWIND", + "display": "ashWIND", "images": [ { - "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", - "chainName": "gateway", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", - "theme": { - "backgroundColorHex": "#000000", - "circle": true, - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png", }, - "name": "Wormhole Solana", - "symbol": "SOL.wh", + "name": "ashWIND", + "symbol": "ashWIND", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-37", }, "counterparty": { - "base_denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash", + "chain_name": "juno", + "channel_id": "channel-33", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC", + "base": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", + "coingeckoId": "kava", "denomUnits": [ { "aliases": [ - "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "ukava", ], - "denom": "ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC", + "denom": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", "exponent": 0, }, { - "denom": "evmos", - "exponent": 18, + "denom": "kava", + "exponent": 6, }, ], - "display": "evmos", + "description": "Kava is a decentralized finance (DeFi) platform that provides a range of financial services, including lending, borrowing, and stablecoins, leveraging the Cosmos and Ethereum ecosystems.", + "display": "kava", + "extendedDescription": "Kava offers a suite of DeFi services, such as lending, borrowing, and stablecoin issuance, utilizing a cross-chain platform that integrates the Cosmos SDK and Ethereum interoperability. Users can collateralize their assets to borrow Kava's stablecoin, USDX, or participate in lending and liquidity pools to earn rewards. Kava's native token, KAVA, is used for staking, governance, and securing the network. The platform's goal is to provide a decentralized, efficient, and accessible financial ecosystem that bridges multiple blockchain networks.", "images": [ { - "imageSync": { - "baseDenom": "aevmos", - "chainName": "evmos", - }, - "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/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg", "theme": { - "primaryColorHex": "#ec4c34", + "primaryColorHex": "#e64942", }, }, ], "logoURIs": { - "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/kava/images/kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg", }, - "name": "Evmos", - "symbol": "EVMOS", + "name": "Kava", + "socials": { + "twitter": "https://twitter.com/KAVA_CHAIN", + "website": "https://www.kava.io/", + }, + "symbol": "KAVA", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-129", }, "counterparty": { - "base_denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "ukava", + "chain_name": "kava", + "channel_id": "channel-134", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/B102DF6CC210E327D3C679A785BBF1569D523CDF8BA2EF8B7043C38DBFD511D0", + "base": "ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76", + "coingeckoId": "kava-lend", "denomUnits": [ { "aliases": [ - "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "hard", ], - "denom": "ibc/B102DF6CC210E327D3C679A785BBF1569D523CDF8BA2EF8B7043C38DBFD511D0", + "denom": "ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76", "exponent": 0, }, { - "denom": "avax", - "exponent": 18, + "denom": "HARD", + "exponent": 6, }, ], - "display": "avax", + "description": "Governance token of Kava Lend Protocol", + "display": "HARD", "images": [ { - "imageSync": { - "baseDenom": "wavax-wei", - "chainName": "axelar", + "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", + "theme": { + "primaryColorHex": "#7b34ac", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.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", }, - "name": "Axelar Wrapped AVAX", - "symbol": "wAVAX", + "name": "Kava Hard", + "symbol": "HARD", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-129", }, "counterparty": { - "base_denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "hard", + "chain_name": "kava", + "channel_id": "channel-134", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8", + "base": "ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A", + "coingeckoId": "kava-swap", "denomUnits": [ { "aliases": [ - "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "swp", ], - "denom": "ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8", + "denom": "ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A", "exponent": 0, }, { - "denom": "usdc", + "denom": "SWP", "exponent": 6, }, ], - "display": "usdc", + "description": "Governance token of Kava Swap Protocol", + "display": "SWP", "images": [ { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#544cfc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", }, - "name": "Noble USD Coin", - "symbol": "USDC", + "name": "Kava Swap", + "symbol": "SWP", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-129", }, "counterparty": { - "base_denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "swp", + "chain_name": "kava", + "channel_id": "channel-134", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C", + "base": "ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51", + "coingeckoId": "usdx", "denomUnits": [ { "aliases": [ - "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "usdx", ], - "denom": "ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C", + "denom": "ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51", "exponent": 0, }, { - "denom": "osmo", + "denom": "USDX", "exponent": 6, }, ], - "display": "osmo", + "description": "The native stablecoin of Kava", + "display": "USDX", "images": [ { - "imageSync": { - "baseDenom": "uosmo", - "chainName": "osmosis", - }, - "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/kava/images/usdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg", "theme": { - "primaryColorHex": "#760dbb", + "primaryColorHex": "#04d4a3", }, }, ], "logoURIs": { - "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/kava/images/usdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg", }, - "name": "Osmosis", - "symbol": "OSMO", + "name": "Kava USDX", + "symbol": "USDX", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-129", }, "counterparty": { - "base_denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "usdx", + "chain_name": "kava", + "channel_id": "channel-134", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917", + "base": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "coingeckoId": "tether", "denomUnits": [ { "aliases": [ - "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "erc20/tether/usdt", ], - "denom": "ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917", + "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", "exponent": 0, }, { - "denom": "usdc", + "denom": "usdt", "exponent": 6, }, ], - "display": "usdc", + "display": "usdt", "images": [ { "imageSync": { - "baseDenom": "uusdc", - "chainName": "axelar", + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", }, - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#2474cc", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "Axelar USD Coin", - "symbol": "axlUSDC", + "name": "Tether USD", + "symbol": "USDT", "traces": [ { "chain": { - "channel_id": "channel-152", + "channel_id": "channel-129", }, "counterparty": { - "base_denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", - "chain_name": "kujira", - "channel_id": "channel-158", + "base_denom": "erc20/tether/usdt", + "chain_name": "kava", + "channel_id": "channel-134", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98", + "base": "ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D", + "coingeckoId": "kujira", "denomUnits": [ { "aliases": [ - "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "ukuji", ], - "denom": "ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98", + "denom": "ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D", "exponent": 0, }, { - "denom": "cmdx", + "denom": "kuji", "exponent": 6, }, ], - "display": "cmdx", + "description": "Kujira is a decentralized finance (DeFi) platform offering a suite of tools and services for managing and optimizing digital assets and investments.", + "display": "kuji", + "extendedDescription": "Kujira provides a comprehensive DeFi platform that includes tools for lending, borrowing, and yield farming, leveraging blockchain technology to offer a transparent, secure, and efficient user experience. The native token, KUJI, is central to the ecosystem, used for transaction fees, staking, and governance. Kujira's user-centric design and innovative features make it a popular choice in the DeFi space, enabling users to maximize their returns and effectively manage their digital assets.", "images": [ { - "imageSync": { - "baseDenom": "ucmdx", - "chainName": "comdex", - }, - "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/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg", "theme": { - "primaryColorHex": "#fc4454", + "primaryColorHex": "#e33b34", }, }, ], "logoURIs": { - "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/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg", }, - "name": "Comdex", - "symbol": "CMDX", + "name": "Kujira", + "socials": { + "twitter": "https://twitter.com/TeamKujira", + "website": "https://kujira.network/", + }, + "symbol": "KUJI", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "base_denom": "ukuji", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0", + "base": "ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E", + "coingeckoId": "usk", "denomUnits": [ { "aliases": [ - "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", ], - "denom": "ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0", + "denom": "ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E", "exponent": 0, }, { - "denom": "juno", + "denom": "usk", "exponent": 6, }, ], - "display": "juno", + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "display": "usk", "images": [ { - "imageSync": { - "baseDenom": "ujuno", - "chainName": "juno", - }, - "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/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg", "theme": { - "primaryColorHex": "#fa7b7b", + "primaryColorHex": "#2e363f", }, }, ], "logoURIs": { - "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/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg", }, - "name": "Juno", - "symbol": "JUNO", + "name": "USK", + "symbol": "USK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26", + "base": "ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659", "denomUnits": [ { "aliases": [ - "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", ], - "denom": "ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26", + "denom": "ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659", "exponent": 0, }, { - "denom": "weth", - "exponent": 18, + "denom": "qcKUJI", + "exponent": 6, }, ], - "display": "weth", + "description": "Quark's auto-compounding KUJI derivative", + "display": "qcKUJI", "images": [ { - "imageSync": { - "baseDenom": "weth-wei", - "chainName": "axelar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "theme": { - "primaryColorHex": "#3a3444", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", }, - "name": "Axelar Wrapped Ether", - "symbol": "wETH.axl", + "name": "qcKUJI", + "symbol": "qcKUJI", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "base_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7", + "base": "ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32", "denomUnits": [ { "aliases": [ - "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", ], - "denom": "ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7", + "denom": "ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32", "exponent": 0, }, { - "denom": "atom", + "denom": "ampKUJI", "exponent": 6, }, ], - "display": "atom", + "description": "ampKUJI", + "display": "ampKUJI", "images": [ { - "imageSync": { - "baseDenom": "uatom", - "chainName": "cosmoshub", - }, - "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/kujira/images/ampkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg", "theme": { - "primaryColorHex": "#272d45", + "primaryColorHex": "#4b7bbb", }, }, ], "logoURIs": { - "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/kujira/images/ampkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg", }, - "name": "Cosmos Hub Atom", - "symbol": "ATOM", + "name": "ampKUJI", + "symbol": "ampKUJI", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58", + "base": "ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918", + "coingeckoId": "mantadao", "denomUnits": [ { "aliases": [ - "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", ], - "denom": "ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58", + "denom": "ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918", "exponent": 0, }, { - "denom": "luna", + "denom": "mnta", "exponent": 6, }, ], - "display": "luna", + "description": "MantaDAO Governance Token", + "display": "mnta", "images": [ { - "imageSync": { - "baseDenom": "uluna", - "chainName": "terra2", - }, - "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/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", "theme": { - "primaryColorHex": "#f4de6f", + "primaryColorHex": "#0c141c", }, }, ], "logoURIs": { - "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/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", }, - "name": "Luna", - "symbol": "LUNA", + "name": "MantaDAO", + "symbol": "MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068", + "base": "ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569", "denomUnits": [ { "aliases": [ - "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", ], - "denom": "ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068", + "denom": "ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569", "exponent": 0, }, { - "denom": "stars", + "denom": "qcMNTA", "exponent": 6, }, ], - "display": "stars", + "description": "Quark's auto-compounding MNTA derivative", + "display": "qcMNTA", "images": [ { - "imageSync": { - "baseDenom": "ustars", - "chainName": "stargaze", - }, - "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", - "theme": { - "primaryColorHex": "#db2777", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", }, - "name": "Stargaze", - "symbol": "STARS", + "name": "qcMNTA", + "symbol": "qcMNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "base_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31", + "base": "ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08", "denomUnits": [ { "aliases": [ - "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", ], - "denom": "ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31", + "denom": "ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08", "exponent": 0, }, { - "denom": "scrt", + "denom": "ampMNTA", "exponent": 6, }, ], - "display": "scrt", + "description": "ERIS Liquid Staked MNTA", + "display": "ampMNTA", "images": [ { - "imageSync": { - "baseDenom": "uscrt", - "chainName": "secretnetwork", - }, - "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/kujira/images/ampmnta.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#618bc8", }, }, ], "logoURIs": { - "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/kujira/images/ampmnta.png", }, - "name": "Secret Network", - "symbol": "SCRT", + "name": "ERIS Amplified MNTA", + "symbol": "ampMNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "base_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4", + "base": "ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98", "denomUnits": [ { "aliases": [ - "ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8", + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", ], - "denom": "ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4", + "denom": "ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98", "exponent": 0, }, { - "aliases": [ - "stk/atom", - ], - "denom": "stkatom", + "denom": "wink", "exponent": 6, }, ], - "display": "stkatom", + "description": "The content house of Kujira", + "display": "wink", "images": [ { - "imageSync": { - "baseDenom": "stk/uatom", - "chainName": "persistence", - }, - "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/kujira/images/wink.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", "theme": { - "primaryColorHex": "#c4444c", + "primaryColorHex": "#fc7991", }, }, ], "logoURIs": { - "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/kujira/images/wink.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", }, - "name": "PSTAKE staked ATOM", - "symbol": "stkATOM", + "name": "WINK", + "symbol": "WINK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/A2B0C36F1111C6C4EEEF58BF5C397E2F6348D129AD214CDD827931EFA0AC53DD", + "base": "ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64", "denomUnits": [ { "aliases": [ - "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", ], - "denom": "ibc/A2B0C36F1111C6C4EEEF58BF5C397E2F6348D129AD214CDD827931EFA0AC53DD", + "denom": "ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64", "exponent": 0, }, { - "denom": "bKUJI", + "denom": "blend", "exponent": 6, }, ], - "description": "BackBone Labs Liquid Staked KUJI", - "display": "bKUJI", + "description": "Blend Token", + "display": "blend", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", - "theme": { - "primaryColorHex": "#cc3533", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", }, - "name": "BackBone Labs Liquid Staked KUJI", - "symbol": "bKUJI", + "name": "BLEND", + "symbol": "BLEND", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "base_denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -38907,47 +39091,50 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/43CC65B448B591FE4EAD8633481106BD28130C46C3721CE59CDD2A5FEDE2D80B", + "base": "ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28", "denomUnits": [ { "aliases": [ - "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", + "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", ], - "denom": "ibc/43CC65B448B591FE4EAD8633481106BD28130C46C3721CE59CDD2A5FEDE2D80B", + "denom": "ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28", "exponent": 0, }, { - "denom": "rstk", + "denom": "usdt", "exponent": 6, }, ], - "display": "rstk", + "description": "Tether USDt on Kujira", + "display": "usdt", "images": [ { "imageSync": { - "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", - "chainName": "migaloo", + "baseDenom": "erc20/tether/usdt", + "chainName": "kava", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#3ccc64", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "Restake DAO Token", - "symbol": "RSTK", + "name": "Tether USD", + "symbol": "USDT", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", + "base_denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -38957,42 +39144,45 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/6D16DD78F0641DB3A7DE7562AAFB524B81C8B26AE23026099A4D484C3C490223", + "base": "ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E", + "coingeckoId": "fuzion", "denomUnits": [ { "aliases": [ - "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", ], - "denom": "ibc/6D16DD78F0641DB3A7DE7562AAFB524B81C8B26AE23026099A4D484C3C490223", + "denom": "ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E", "exponent": 0, }, { - "denom": "xusk", + "denom": "fuzn", "exponent": 6, }, ], - "description": "Ghost Vault USK", - "display": "xusk", + "description": "The staking and governance token of Fuzion", + "display": "fuzn", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", + "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", "theme": { - "primaryColorHex": "#303741", + "primaryColorHex": "#f05d8d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", + "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", }, - "name": "Ghost Vault USK", - "symbol": "xUSK", + "name": "Fuzion", + "symbol": "FUZN", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39002,42 +39192,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/280215F2FF36A4CCEC2C6BD690665A65BF18BC07B363E835FD7E8F1642726929", + "base": "ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8", "denomUnits": [ { "aliases": [ - "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", ], - "denom": "ibc/280215F2FF36A4CCEC2C6BD690665A65BF18BC07B363E835FD7E8F1642726929", + "denom": "ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8", "exponent": 0, }, { - "denom": "xmnta", + "denom": "rfuzn", "exponent": 6, }, ], - "description": "Ghost Vault MNTA", - "display": "xmnta", + "description": "The receipt token of Fuzion", + "display": "rfuzn", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", "theme": { - "primaryColorHex": "#0f151f", + "primaryColorHex": "#949494", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", }, - "name": "Ghost Vault MNTA", - "symbol": "xMNTA", + "name": "Fuzion Receipt", + "symbol": "rFUZN", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39047,190 +39237,166 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/DBAA879D0950B6B7122FE2B33AA6F98C1889393D0800B66E5EFA804C1D6C8FF0", + "base": "ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140", "denomUnits": [ { "aliases": [ - "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", ], - "denom": "ibc/DBAA879D0950B6B7122FE2B33AA6F98C1889393D0800B66E5EFA804C1D6C8FF0", + "denom": "ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140", "exponent": 0, }, { - "denom": "statom", + "denom": "yfuzn", "exponent": 6, }, ], - "description": "Stride staked ATOM", - "display": "statom", + "description": "The yield token of Fuzion", + "display": "yfuzn", "images": [ { - "imageSync": { - "baseDenom": "stuatom", - "chainName": "stride", - }, - "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", - "theme": { - "primaryColorHex": "#e40474", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg", }, - "name": "stATOM", - "symbol": "stATOM", + "name": "Fuzion Yield", + "symbol": "yFUZN", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "base_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BA593480CB2744C1DE7AEF0973D86131FA2B4F8D98A923BCAE830638B184A805", + "base": "ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0", "denomUnits": [ { "aliases": [ - "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", ], - "denom": "ibc/BA593480CB2744C1DE7AEF0973D86131FA2B4F8D98A923BCAE830638B184A805", + "denom": "ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0", "exponent": 0, }, { - "denom": "wbtc.axl", + "denom": "qcFUZN", "exponent": 6, }, ], - "description": "Axelar Bridged wBTC", - "display": "wbtc.axl", + "description": "Quark's auto-compounding FUZN derivative", + "display": "qcFUZN", "images": [ { - "imageSync": { - "baseDenom": "wbtc-satoshi", - "chainName": "axelar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "theme": { - "primaryColorHex": "#41394d", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", }, - "name": "Axelar Bridged wBTC", - "symbol": "wBTC.axl", + "name": "qcFUZN", + "symbol": "qcFUZN", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "base_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/63B65636219EDCE24ABC81148FC5CEE020235F6F5A6197F2AEB12D0AF08E9F88", + "base": "ibc/EB7C58B57E48F3D55BA4D101E2199DCB198734806B6E8B108C43D518FA831595", "denomUnits": [ { "aliases": [ - "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", + "factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt", ], - "denom": "ibc/63B65636219EDCE24ABC81148FC5CEE020235F6F5A6197F2AEB12D0AF08E9F88", + "denom": "ibc/EB7C58B57E48F3D55BA4D101E2199DCB198734806B6E8B108C43D518FA831595", "exponent": 0, }, { - "denom": "stosmo", + "denom": "qcAQLA", "exponent": 6, }, ], - "description": "Stride staked OSMO", - "display": "stosmo", + "description": "Quark's auto-compounding AQLA derivative", + "display": "qcAQLA", "images": [ { - "imageSync": { - "baseDenom": "stuosmo", - "chainName": "stride", - }, - "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", - "theme": { - "primaryColorHex": "#e40474", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcaqla.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcaqla.svg", }, - "name": "Stride staked OSMO", - "symbol": "stOSMO", + "name": "qcAQLA", + "symbol": "qcAQLA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", + "base_denom": "factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/12F9B042554B39D5CA5E709381F53EF714C42EC78063C809A85F6F74EFEBCD08", + "base": "ibc/51E4204AD14ECA94510811D307FC4830C3C0B51734CB34AFBC311B9FA28E4D7B", + "coingeckoId": "aqualibre", "denomUnits": [ { "aliases": [ - "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla", ], - "denom": "ibc/12F9B042554B39D5CA5E709381F53EF714C42EC78063C809A85F6F74EFEBCD08", + "denom": "ibc/51E4204AD14ECA94510811D307FC4830C3C0B51734CB34AFBC311B9FA28E4D7B", "exponent": 0, }, { - "denom": "lp-dot-mnta", + "denom": "AQLA", "exponent": 6, }, ], - "description": "LP Bow: DOT.axl-MNTA", - "display": "lp-dot-mnta", + "description": "The Aqualibre project's token", + "display": "AQLA", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/aqla.svg", }, - "name": "LP Bow: DOT.axl-MNTA", - "symbol": "LP DOT.axl-MNTA", + "name": "AQLA", + "symbol": "AQLA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "base_denom": "factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39240,39 +39406,40 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/C9CF2C3186DE1FE0F3F075E64FF5ECCA5A247D0C98ECB762F69EA122ACB918C5", + "base": "ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60", + "coingeckoId": "unstake-fi", "denomUnits": [ { "aliases": [ - "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", ], - "denom": "ibc/C9CF2C3186DE1FE0F3F075E64FF5ECCA5A247D0C98ECB762F69EA122ACB918C5", + "denom": "ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60", "exponent": 0, }, { - "denom": "lp-shd-mnta", + "denom": "nstk", "exponent": 6, }, ], - "description": "LP Bow: SHD-MNTA", - "display": "lp-shd-mnta", + "description": "The Revenue & Governance token of Unstake.fi", + "display": "nstk", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, - "name": "LP Bow: SHD-MNTA", - "symbol": "LP SHD-MNTA", + "name": "Unstake Fi", + "symbol": "NSTK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "base_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39282,39 +39449,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8F2515E94A339FD92DCC8BC9DE96AED26D1756041DA6EA3788345BDEC04BB941", + "base": "ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717", "denomUnits": [ { "aliases": [ - "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", ], - "denom": "ibc/8F2515E94A339FD92DCC8BC9DE96AED26D1756041DA6EA3788345BDEC04BB941", + "denom": "ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717", "exponent": 0, }, { - "denom": "lp-dydx-mnta", + "denom": "local", "exponent": 6, }, ], - "description": "LP Bow: DYDX-MNTA", - "display": "lp-dydx-mnta", + "description": "Local Money", + "display": "local", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "theme": { + "primaryColorHex": "#242424", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", }, - "name": "LP Bow: DYDX-MNTA", - "symbol": "LP DYDX-MNTA", + "name": "LOCAL", + "symbol": "LOCAL", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "base_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39324,39 +39494,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/FF5137EAA59BB522CBB82796904449BD8216C989D88DFFD2570C3F33D249CEF4", + "base": "ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4", "denomUnits": [ { "aliases": [ - "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", + "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", ], - "denom": "ibc/FF5137EAA59BB522CBB82796904449BD8216C989D88DFFD2570C3F33D249CEF4", + "denom": "ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4", "exponent": 0, }, { - "denom": "lp-wavax-mnta", + "denom": "PLNK", "exponent": 6, }, ], - "description": "LP Bow: wAVAX.axl-MNTA", - "display": "lp-wavax-mnta", + "description": "Food for whales", + "display": "PLNK", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "theme": { + "primaryColorHex": "#c87ae9", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", }, - "name": "LP Bow: wAVAX.axl-MNTA", - "symbol": "LP wAVAX.axl-MNTA", + "name": "Plankton", + "symbol": "PLNK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", + "base_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39366,627 +39539,740 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/ABB85BACAC0D4CF8BB28FCA29550D9921DDBC8A9C98E96EB5A972610F2DB22B2", + "base": "ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2", "denomUnits": [ { "aliases": [ - "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", ], - "denom": "ibc/ABB85BACAC0D4CF8BB28FCA29550D9921DDBC8A9C98E96EB5A972610F2DB22B2", + "denom": "ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2", "exponent": 0, }, { - "denom": "lp-cheq-mnta", - "exponent": 6, + "denom": "sol", + "exponent": 8, }, ], - "description": "LP Bow: CHEQ-MNTA", - "display": "lp-cheq-mnta", + "display": "sol", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "chainName": "gateway", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "theme": { + "backgroundColorHex": "#000000", + "circle": true, + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", }, - "name": "LP Bow: CHEQ-MNTA", - "symbol": "LP CHEQ-MNTA", + "name": "Wormhole Solana", + "symbol": "SOL.wh", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "base_denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/03831B5438584343CD424C302B4842D2E46D3AD2B86C7324E6A19567F8FB5EA4", + "base": "ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC", "denomUnits": [ { "aliases": [ - "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", ], - "denom": "ibc/03831B5438584343CD424C302B4842D2E46D3AD2B86C7324E6A19567F8FB5EA4", + "denom": "ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC", "exponent": 0, }, { - "denom": "lp-fuzn-mnta", - "exponent": 6, + "denom": "evmos", + "exponent": 18, }, ], - "description": "LP Bow: FUZN-MNTA", - "display": "lp-fuzn-mnta", + "display": "evmos", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "aevmos", + "chainName": "evmos", + }, + "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", + "theme": { + "primaryColorHex": "#ec4c34", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: FUZN-MNTA", - "symbol": "LP FUZN-MNTA", + "name": "Evmos", + "symbol": "EVMOS", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "base_denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/3A97F81FCEB521F56E5E60639FF01B5D094757CE0438F16EE06694AD3501D119", + "base": "ibc/B102DF6CC210E327D3C679A785BBF1569D523CDF8BA2EF8B7043C38DBFD511D0", "denomUnits": [ { "aliases": [ - "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", ], - "denom": "ibc/3A97F81FCEB521F56E5E60639FF01B5D094757CE0438F16EE06694AD3501D119", + "denom": "ibc/B102DF6CC210E327D3C679A785BBF1569D523CDF8BA2EF8B7043C38DBFD511D0", "exponent": 0, }, { - "denom": "lp-somm-mnta", - "exponent": 6, + "denom": "avax", + "exponent": 18, }, ], - "description": "LP Bow: SOMM-MNTA", - "display": "lp-somm-mnta", + "display": "avax", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "wavax-wei", + "chainName": "axelar", + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", }, - "name": "LP Bow: SOMM-MNTA", - "symbol": "LP SOMM-MNTA", + "name": "Axelar Wrapped AVAX", + "symbol": "wAVAX", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "base_denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6185490AC04C932A7DC13F9ED6BDD88A3A927270E40C74489F00FEB8760E3E24", + "base": "ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8", "denomUnits": [ { "aliases": [ - "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", + "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", ], - "denom": "ibc/6185490AC04C932A7DC13F9ED6BDD88A3A927270E40C74489F00FEB8760E3E24", + "denom": "ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8", "exponent": 0, }, { - "denom": "lp-weth-mnta", + "denom": "usdc", "exponent": 6, }, ], - "description": "LP Bow: wETH.axl-MNTA", - "display": "lp-weth-mnta", + "display": "usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#2775CA", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, - "name": "LP Bow: wETH.axl-MNTA", - "symbol": "LP wETH.axl-MNTA", + "name": "Noble USD Coin", + "symbol": "USDC", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", + "base_denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/2E700ABFE647067FD36216148C3838F4D57AFCF7D1D5EA040148932DF580C12D", + "base": "ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C", "denomUnits": [ { "aliases": [ - "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", ], - "denom": "ibc/2E700ABFE647067FD36216148C3838F4D57AFCF7D1D5EA040148932DF580C12D", + "denom": "ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C", "exponent": 0, }, { - "denom": "lp-ntrn-mnta", + "denom": "osmo", "exponent": 6, }, ], - "description": "LP Bow: NTRN-MNTA", - "display": "lp-ntrn-mnta", + "display": "osmo", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uosmo", + "chainName": "osmosis", + }, + "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", + "theme": { + "primaryColorHex": "#760dbb", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: NTRN-MNTA", - "symbol": "LP NTRN-MNTA", + "name": "Osmosis", + "symbol": "OSMO", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "base_denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6F6C38D53A2F55927EBB0F723B564BBE73336105BEA000D98FBB141B143404ED", + "base": "ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917", "denomUnits": [ { "aliases": [ - "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", ], - "denom": "ibc/6F6C38D53A2F55927EBB0F723B564BBE73336105BEA000D98FBB141B143404ED", + "denom": "ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917", "exponent": 0, }, { - "denom": "lp-wftm-mnta", + "denom": "usdc", "exponent": 6, }, ], - "description": "LP Bow: wFTM.axl-MNTA", - "display": "lp-wftm-mnta", + "display": "usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "axelar", + }, + "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", + "theme": { + "primaryColorHex": "#2474cc", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: wFTM.axl-MNTA", - "symbol": "LP wFTM.axl-MNTA", + "name": "Axelar USD Coin", + "symbol": "axlUSDC", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "base_denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/C6C11D0E2DBF825AD7C11628BA560B6BAE4073131E60EEECDA14E4D9BFFBC101", + "base": "ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98", "denomUnits": [ { "aliases": [ - "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", + "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", ], - "denom": "ibc/C6C11D0E2DBF825AD7C11628BA560B6BAE4073131E60EEECDA14E4D9BFFBC101", + "denom": "ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98", "exponent": 0, }, { - "denom": "lp-stars-mnta", + "denom": "cmdx", "exponent": 6, }, ], - "description": "LP Bow: STARS-MNTA", - "display": "lp-stars-mnta", + "display": "cmdx", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "ucmdx", + "chainName": "comdex", + }, + "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", + "theme": { + "primaryColorHex": "#fc4454", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: STARS-MNTA", - "symbol": "LP STARS-MNTA", + "name": "Comdex", + "symbol": "CMDX", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", + "base_denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/8EF8E9711ADC150CC3C6413380F2F642A06B7C9D2896E3FFB0A1341E411452C8", + "base": "ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0", "denomUnits": [ { "aliases": [ - "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", + "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", ], - "denom": "ibc/8EF8E9711ADC150CC3C6413380F2F642A06B7C9D2896E3FFB0A1341E411452C8", + "denom": "ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0", "exponent": 0, }, { - "denom": "lp-tia-mnta", + "denom": "juno", "exponent": 6, }, ], - "description": "LP Bow: TIA-MNTA", - "display": "lp-tia-mnta", + "display": "juno", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "ujuno", + "chainName": "juno", + }, + "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", + "theme": { + "primaryColorHex": "#fa7b7b", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: TIA-MNTA", - "symbol": "LP TIA-MNTA", + "name": "Juno", + "symbol": "JUNO", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", + "base_denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/54F33E8FA0791A25B315636097831FED75462A5EEA50E1B078D94067DB5729B8", + "base": "ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26", "denomUnits": [ { "aliases": [ - "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", + "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", ], - "denom": "ibc/54F33E8FA0791A25B315636097831FED75462A5EEA50E1B078D94067DB5729B8", + "denom": "ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26", "exponent": 0, }, { - "denom": "lp-sol-mnta", - "exponent": 6, + "denom": "weth", + "exponent": 18, }, ], - "description": "LP Bow: SOL.wh-MNTA", - "display": "lp-sol-mnta", + "display": "weth", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "weth-wei", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "theme": { + "primaryColorHex": "#3a3444", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", }, - "name": "LP Bow: SOL.wh-MNTA", - "symbol": "LP SOL.wh-MNTA", + "name": "Axelar Wrapped Ether", + "symbol": "wETH.axl", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", + "base_denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/4F1A1E37E8BD403E16D44AA117AFA8CE8BED0A9D080D6B4213BBD911D0DF99E9", + "base": "ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7", "denomUnits": [ { "aliases": [ - "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", + "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", ], - "denom": "ibc/4F1A1E37E8BD403E16D44AA117AFA8CE8BED0A9D080D6B4213BBD911D0DF99E9", + "denom": "ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7", "exponent": 0, }, { - "denom": "lp-dym-mnta", + "denom": "atom", "exponent": 6, }, ], - "description": "LP Bow: DYM-MNTA", - "display": "lp-dym-mnta", + "display": "atom", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uatom", + "chainName": "cosmoshub", + }, + "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", + "theme": { + "primaryColorHex": "#272d45", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: DYM-MNTA", - "symbol": "LP DYM-MNTA", + "name": "Cosmos Hub Atom", + "symbol": "ATOM", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/49001A9E5AEADC0FB98C6B000F1CDE97AA84AF77E9676C1D2AEEBD4B644FEBF2", + "base": "ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58", "denomUnits": [ { "aliases": [ - "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", + "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", ], - "denom": "ibc/49001A9E5AEADC0FB98C6B000F1CDE97AA84AF77E9676C1D2AEEBD4B644FEBF2", + "denom": "ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58", "exponent": 0, }, { - "denom": "lp-akt-mnta", + "denom": "luna", "exponent": 6, }, ], - "description": "LP Bow: AKT-MNTA", - "display": "lp-akt-mnta", + "display": "luna", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uluna", + "chainName": "terra2", + }, + "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", + "theme": { + "primaryColorHex": "#f4de6f", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: AKT-MNTA", - "symbol": "LP AKT-MNTA", + "name": "Luna", + "symbol": "LUNA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", + "base_denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F1C6397EE0AC80D7375A2A891ED899F37F654017F211CD87AD056B540C253EA4", + "base": "ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068", "denomUnits": [ { "aliases": [ - "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", + "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", ], - "denom": "ibc/F1C6397EE0AC80D7375A2A891ED899F37F654017F211CD87AD056B540C253EA4", + "denom": "ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068", "exponent": 0, }, { - "denom": "lp-link-mnta", + "denom": "stars", "exponent": 6, }, ], - "description": "LP Bow: LINK.axl-MNTA", - "display": "lp-link-mnta", + "display": "stars", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "ustars", + "chainName": "stargaze", + }, + "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", + "theme": { + "primaryColorHex": "#db2777", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: LINK.axl-MNTA", - "symbol": "LP LINK.axl-MNTA", + "name": "Stargaze", + "symbol": "STARS", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", + "base_denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/11BF85DF900A59705647CDE3226A01276741EC9B82D7A4E3C916623807FF31FB", + "base": "ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31", "denomUnits": [ { "aliases": [ - "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", ], - "denom": "ibc/11BF85DF900A59705647CDE3226A01276741EC9B82D7A4E3C916623807FF31FB", + "denom": "ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31", "exponent": 0, }, { - "denom": "lp-wtao-mnta", + "denom": "scrt", "exponent": 6, }, ], - "description": "LP Bow: wTAO.grv-MNTA", - "display": "lp-wtao-mnta", + "display": "scrt", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "uscrt", + "chainName": "secretnetwork", + }, + "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", + "theme": { + "primaryColorHex": "#040404", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: wTAO.grv-MNTA", - "symbol": "LP wTAO.grv-MNTA", + "name": "Secret Network", + "symbol": "SCRT", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "base_denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/5C7FB2CB73BA24A4ACB5169CCF542C0D37A4A57B0F443C00C8AA6484E689E307", + "base": "ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4", "denomUnits": [ { "aliases": [ - "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8", ], - "denom": "ibc/5C7FB2CB73BA24A4ACB5169CCF542C0D37A4A57B0F443C00C8AA6484E689E307", + "denom": "ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4", "exponent": 0, }, { - "denom": "lp-mnta-kuji", + "aliases": [ + "stk/atom", + ], + "denom": "stkatom", "exponent": 6, }, ], - "description": "LP Bow: MNTA-KUJI", - "display": "lp-mnta-kuji", + "display": "stkatom", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "stk/uatom", + "chainName": "persistence", + }, + "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", + "theme": { + "primaryColorHex": "#c4444c", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: MNTA-KUJI", - "symbol": "LP MNTA-KUJI", + "name": "PSTAKE staked ATOM", + "symbol": "stkATOM", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "base_denom": "ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/DDEC92BC917E7FCC5FF5BEDC4740D9F2A6B3B257839236191CC27144CD045FB3", + "base": "ibc/A2B0C36F1111C6C4EEEF58BF5C397E2F6348D129AD214CDD827931EFA0AC53DD", "denomUnits": [ { "aliases": [ - "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", + "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", ], - "denom": "ibc/DDEC92BC917E7FCC5FF5BEDC4740D9F2A6B3B257839236191CC27144CD045FB3", + "denom": "ibc/A2B0C36F1111C6C4EEEF58BF5C397E2F6348D129AD214CDD827931EFA0AC53DD", "exponent": 0, }, { - "denom": "lp-axl-mnta", + "denom": "bKUJI", "exponent": 6, }, ], - "description": "LP Bow: AXL-MNTA", - "display": "lp-axl-mnta", + "description": "BackBone Labs Liquid Staked KUJI", + "display": "bKUJI", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", + "theme": { + "primaryColorHex": "#cc3533", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", }, - "name": "LP Bow: AXL-MNTA", - "symbol": "LP AXL-MNTA", + "name": "BackBone Labs Liquid Staked KUJI", + "symbol": "bKUJI", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", + "base_denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -39996,81 +40282,92 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/D0200323EAB49E2DAB5ADC70E6D009A633C509383476537AE882570E3AD0D168", + "base": "ibc/43CC65B448B591FE4EAD8633481106BD28130C46C3721CE59CDD2A5FEDE2D80B", "denomUnits": [ { "aliases": [ - "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", ], - "denom": "ibc/D0200323EAB49E2DAB5ADC70E6D009A633C509383476537AE882570E3AD0D168", + "denom": "ibc/43CC65B448B591FE4EAD8633481106BD28130C46C3721CE59CDD2A5FEDE2D80B", "exponent": 0, }, { - "denom": "lp-atom-mnta", + "denom": "rstk", "exponent": 6, }, ], - "description": "LP Bow: ATOM-MNTA", - "display": "lp-atom-mnta", + "display": "rstk", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "theme": { + "primaryColorHex": "#3ccc64", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", }, - "name": "LP Bow: ATOM-MNTA", - "symbol": "LP ATOM-MNTA", + "name": "Restake DAO Token", + "symbol": "RSTK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "base_denom": "ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/7DCE434AD60E46DC40EF1FB085E870E9181D8D1F26F892D80177C0050DAB1E77", + "base": "ibc/6D16DD78F0641DB3A7DE7562AAFB524B81C8B26AE23026099A4D484C3C490223", "denomUnits": [ { "aliases": [ - "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", + "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", ], - "denom": "ibc/7DCE434AD60E46DC40EF1FB085E870E9181D8D1F26F892D80177C0050DAB1E77", + "denom": "ibc/6D16DD78F0641DB3A7DE7562AAFB524B81C8B26AE23026099A4D484C3C490223", "exponent": 0, }, { - "denom": "lp-arb-mnta", + "denom": "xusk", "exponent": 6, }, ], - "description": "LP Bow: ARB-MNTA", - "display": "lp-arb-mnta", + "description": "Ghost Vault USK", + "display": "xusk", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", + "theme": { + "primaryColorHex": "#303741", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", }, - "name": "LP Bow: ARB-MNTA", - "symbol": "LP ARB-MNTA", + "name": "Ghost Vault USK", + "symbol": "xUSK", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", + "base_denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40080,39 +40377,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/DA4D1E76C8B6F41BC17FBBAD8A2C9D36EFD91E991D1075D7C20642B45C1DC937", + "base": "ibc/280215F2FF36A4CCEC2C6BD690665A65BF18BC07B363E835FD7E8F1642726929", "denomUnits": [ { "aliases": [ - "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", + "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", ], - "denom": "ibc/DA4D1E76C8B6F41BC17FBBAD8A2C9D36EFD91E991D1075D7C20642B45C1DC937", + "denom": "ibc/280215F2FF36A4CCEC2C6BD690665A65BF18BC07B363E835FD7E8F1642726929", "exponent": 0, }, { - "denom": "lp-whale-mnta", + "denom": "xmnta", "exponent": 6, }, ], - "description": "LP Bow: WHALE-MNTA", - "display": "lp-whale-mnta", + "description": "Ghost Vault MNTA", + "display": "xmnta", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png", + "theme": { + "primaryColorHex": "#0f151f", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png", }, - "name": "LP Bow: WHALE-MNTA", - "symbol": "LP WHALE-MNTA", + "name": "Ghost Vault MNTA", + "symbol": "xMNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", + "base_denom": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40122,148 +40422,173 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5739C0A2443302BFDB1E5E9197C9C2EC533CFFA858987D0D49CCBD5A749F2E27", + "base": "ibc/DBAA879D0950B6B7122FE2B33AA6F98C1889393D0800B66E5EFA804C1D6C8FF0", "denomUnits": [ { "aliases": [ - "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", + "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", ], - "denom": "ibc/5739C0A2443302BFDB1E5E9197C9C2EC533CFFA858987D0D49CCBD5A749F2E27", + "denom": "ibc/DBAA879D0950B6B7122FE2B33AA6F98C1889393D0800B66E5EFA804C1D6C8FF0", "exponent": 0, }, { - "denom": "lp-scrt-mnta", + "denom": "statom", "exponent": 6, }, ], - "description": "LP Bow: SCRT-MNTA", - "display": "lp-scrt-mnta", + "description": "Stride staked ATOM", + "display": "statom", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "stuatom", + "chainName": "stride", + }, + "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", + "theme": { + "primaryColorHex": "#e40474", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: SCRT-MNTA", - "symbol": "LP SCRT-MNTA", + "name": "stATOM", + "symbol": "stATOM", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", + "base_denom": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/9B41972292144CC723B51E9BF6D4567A1EA07D5AE385F7CE7952111DCB274361", + "base": "ibc/BA593480CB2744C1DE7AEF0973D86131FA2B4F8D98A923BCAE830638B184A805", "denomUnits": [ { "aliases": [ - "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", + "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", ], - "denom": "ibc/9B41972292144CC723B51E9BF6D4567A1EA07D5AE385F7CE7952111DCB274361", + "denom": "ibc/BA593480CB2744C1DE7AEF0973D86131FA2B4F8D98A923BCAE830638B184A805", "exponent": 0, }, { - "denom": "lp-wsteth-mnta", + "denom": "wbtc.axl", "exponent": 6, }, ], - "description": "LP Bow: wstETH.axl-MNTA", - "display": "lp-wsteth-mnta", + "description": "Axelar Bridged wBTC", + "display": "wbtc.axl", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", }, - "name": "LP Bow: wstETH.axl-MNTA", - "symbol": "LP wstETH.axl-MNTA", + "name": "Axelar Bridged wBTC", + "symbol": "wBTC.axl", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", + "base_denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/EE59D8E2F5B63FA5705BAC30D440B25BC8C18C4C3FE4E9F2BE3C3DAD6AD89EE9", + "base": "ibc/63B65636219EDCE24ABC81148FC5CEE020235F6F5A6197F2AEB12D0AF08E9F88", "denomUnits": [ { "aliases": [ - "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", ], - "denom": "ibc/EE59D8E2F5B63FA5705BAC30D440B25BC8C18C4C3FE4E9F2BE3C3DAD6AD89EE9", + "denom": "ibc/63B65636219EDCE24ABC81148FC5CEE020235F6F5A6197F2AEB12D0AF08E9F88", "exponent": 0, }, { - "denom": "lp-wmatic-mnta", + "denom": "stosmo", "exponent": 6, }, ], - "description": "LP Bow: wMATIC.axl-MNTA", - "display": "lp-wmatic-mnta", + "description": "Stride staked OSMO", + "display": "stosmo", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "imageSync": { + "baseDenom": "stuosmo", + "chainName": "stride", + }, + "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", + "theme": { + "primaryColorHex": "#e40474", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.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", }, - "name": "LP Bow: wMATIC.axl-MNTA", - "symbol": "LP wMATIC.axl-MNTA", + "name": "Stride staked OSMO", + "symbol": "stOSMO", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "base_denom": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", "chain_name": "kujira", "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/70D3640CC11037825623229C49B4CA0DB74D801211F4A549ABC94DF72E4CD6D1", + "base": "ibc/12F9B042554B39D5CA5E709381F53EF714C42EC78063C809A85F6F74EFEBCD08", "denomUnits": [ { "aliases": [ - "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", ], - "denom": "ibc/70D3640CC11037825623229C49B4CA0DB74D801211F4A549ABC94DF72E4CD6D1", + "denom": "ibc/12F9B042554B39D5CA5E709381F53EF714C42EC78063C809A85F6F74EFEBCD08", "exponent": 0, }, { - "denom": "lp-uni-mnta", + "denom": "lp-dot-mnta", "exponent": 6, }, ], - "description": "LP Bow: UNI.axl-MNTA", - "display": "lp-uni-mnta", + "description": "LP Bow: DOT.axl-MNTA", + "display": "lp-dot-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40272,15 +40597,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: UNI.axl-MNTA", - "symbol": "LP UNI.axl-MNTA", + "name": "LP Bow: DOT.axl-MNTA", + "symbol": "LP DOT.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "base_denom": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40290,22 +40615,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/F5A5B8B3C625220D39D7F22A04F9470DABDF360F1E0978F8C10A3BAB17BE8F78", + "base": "ibc/C9CF2C3186DE1FE0F3F075E64FF5ECCA5A247D0C98ECB762F69EA122ACB918C5", "denomUnits": [ { "aliases": [ - "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", + "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", ], - "denom": "ibc/F5A5B8B3C625220D39D7F22A04F9470DABDF360F1E0978F8C10A3BAB17BE8F78", + "denom": "ibc/C9CF2C3186DE1FE0F3F075E64FF5ECCA5A247D0C98ECB762F69EA122ACB918C5", "exponent": 0, }, { - "denom": "lp-yieldeth-mnta", + "denom": "lp-shd-mnta", "exponent": 6, }, ], - "description": "LP Bow: yieldETH.axl-MNTA", - "display": "lp-yieldeth-mnta", + "description": "LP Bow: SHD-MNTA", + "display": "lp-shd-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40314,15 +40639,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: yieldETH.axl-MNTA", - "symbol": "LP yieldETH.axl-MNTA", + "name": "LP Bow: SHD-MNTA", + "symbol": "LP SHD-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", + "base_denom": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40332,22 +40657,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/D939D7546BEBEACE9C9EA637E5CA63FC105015723E092B2B50C30A648E5D6FF6", + "base": "ibc/8F2515E94A339FD92DCC8BC9DE96AED26D1756041DA6EA3788345BDEC04BB941", "denomUnits": [ { "aliases": [ - "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", ], - "denom": "ibc/D939D7546BEBEACE9C9EA637E5CA63FC105015723E092B2B50C30A648E5D6FF6", + "denom": "ibc/8F2515E94A339FD92DCC8BC9DE96AED26D1756041DA6EA3788345BDEC04BB941", "exponent": 0, }, { - "denom": "lp-wbtc-mnta", + "denom": "lp-dydx-mnta", "exponent": 6, }, ], - "description": "LP Bow: wBTC.axl-MNTA", - "display": "lp-wbtc-mnta", + "description": "LP Bow: DYDX-MNTA", + "display": "lp-dydx-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40356,15 +40681,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wBTC.axl-MNTA", - "symbol": "LP wBTC.axl-MNTA", + "name": "LP Bow: DYDX-MNTA", + "symbol": "LP DYDX-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "base_denom": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40374,22 +40699,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/20AF1B2A0D027CF71C39485C7F482B245AC002E1E7DEFA7DF2E43D5B02991BB4", + "base": "ibc/FF5137EAA59BB522CBB82796904449BD8216C989D88DFFD2570C3F33D249CEF4", "denomUnits": [ { "aliases": [ - "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", + "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", ], - "denom": "ibc/20AF1B2A0D027CF71C39485C7F482B245AC002E1E7DEFA7DF2E43D5B02991BB4", + "denom": "ibc/FF5137EAA59BB522CBB82796904449BD8216C989D88DFFD2570C3F33D249CEF4", "exponent": 0, }, { - "denom": "lp-paxg-mnta", + "denom": "lp-wavax-mnta", "exponent": 6, }, ], - "description": "LP Bow: PAXG.grv-MNTA", - "display": "lp-paxg-mnta", + "description": "LP Bow: wAVAX.axl-MNTA", + "display": "lp-wavax-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40398,15 +40723,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: PAXG.grv-MNTA", - "symbol": "LP PAXG.grv-MNTA", + "name": "LP Bow: wAVAX.axl-MNTA", + "symbol": "LP wAVAX.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", + "base_denom": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40416,22 +40741,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/99F6253E2984CF33D4D79A9C74867492E5B50FCBF37933CAECDEA017B3FA3400", + "base": "ibc/ABB85BACAC0D4CF8BB28FCA29550D9921DDBC8A9C98E96EB5A972610F2DB22B2", "denomUnits": [ { "aliases": [ - "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", ], - "denom": "ibc/99F6253E2984CF33D4D79A9C74867492E5B50FCBF37933CAECDEA017B3FA3400", + "denom": "ibc/ABB85BACAC0D4CF8BB28FCA29550D9921DDBC8A9C98E96EB5A972610F2DB22B2", "exponent": 0, }, { - "denom": "lp-wbnb-mnta", + "denom": "lp-cheq-mnta", "exponent": 6, }, ], - "description": "LP Bow: wBNB.axl-MNTA", - "display": "lp-wbnb-mnta", + "description": "LP Bow: CHEQ-MNTA", + "display": "lp-cheq-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40440,15 +40765,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wBNB.axl-MNTA", - "symbol": "LP wBNB.axl-MNTA", + "name": "LP Bow: CHEQ-MNTA", + "symbol": "LP CHEQ-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "base_denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40458,22 +40783,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5E07865CB0DDB5C5F998CB15902A964AE208DE2286DF039A27F6E8C00D5C01D1", + "base": "ibc/03831B5438584343CD424C302B4842D2E46D3AD2B86C7324E6A19567F8FB5EA4", "denomUnits": [ { "aliases": [ - "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", + "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", ], - "denom": "ibc/5E07865CB0DDB5C5F998CB15902A964AE208DE2286DF039A27F6E8C00D5C01D1", + "denom": "ibc/03831B5438584343CD424C302B4842D2E46D3AD2B86C7324E6A19567F8FB5EA4", "exponent": 0, }, { - "denom": "lp-osmo-mnta", + "denom": "lp-fuzn-mnta", "exponent": 6, }, ], - "description": "LP Bow: OSMO-MNTA", - "display": "lp-osmo-mnta", + "description": "LP Bow: FUZN-MNTA", + "display": "lp-fuzn-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40482,15 +40807,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: OSMO-MNTA", - "symbol": "LP OSMO-MNTA", + "name": "LP Bow: FUZN-MNTA", + "symbol": "LP FUZN-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", + "base_denom": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40500,22 +40825,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1A348CC48BB27A03D5366EF300875E18843084A1D591443FECA6DF7535B0D470", + "base": "ibc/3A97F81FCEB521F56E5E60639FF01B5D094757CE0438F16EE06694AD3501D119", "denomUnits": [ { "aliases": [ - "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", ], - "denom": "ibc/1A348CC48BB27A03D5366EF300875E18843084A1D591443FECA6DF7535B0D470", + "denom": "ibc/3A97F81FCEB521F56E5E60639FF01B5D094757CE0438F16EE06694AD3501D119", "exponent": 0, }, { - "denom": "lp-inj-mnta", + "denom": "lp-somm-mnta", "exponent": 6, }, ], - "description": "LP Bow: INJ-MNTA", - "display": "lp-inj-mnta", + "description": "LP Bow: SOMM-MNTA", + "display": "lp-somm-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40524,15 +40849,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: INJ-MNTA", - "symbol": "LP INJ-MNTA", + "name": "LP Bow: SOMM-MNTA", + "symbol": "LP SOMM-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "base_denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40542,22 +40867,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/4C424E48E0CE289FD9C330FC9B5BF3F2D7932E1DA1B614096251C484BA2B10C1", + "base": "ibc/6185490AC04C932A7DC13F9ED6BDD88A3A927270E40C74489F00FEB8760E3E24", "denomUnits": [ { "aliases": [ - "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", ], - "denom": "ibc/4C424E48E0CE289FD9C330FC9B5BF3F2D7932E1DA1B614096251C484BA2B10C1", + "denom": "ibc/6185490AC04C932A7DC13F9ED6BDD88A3A927270E40C74489F00FEB8760E3E24", "exponent": 0, }, { - "denom": "lp-stosmo-osmo", + "denom": "lp-weth-mnta", "exponent": 6, }, ], - "description": "LP Bow: stOSMO-OSMO", - "display": "lp-stosmo-osmo", + "description": "LP Bow: wETH.axl-MNTA", + "display": "lp-weth-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40566,15 +40891,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: stOSMO-OSMO", - "symbol": "LP stOSMO-OSMO", + "name": "LP Bow: wETH.axl-MNTA", + "symbol": "LP wETH.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "base_denom": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40584,22 +40909,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/7D270ADD95EF2C77FBBD362DA2BEA502AE99B278B25718CFB89EA5EEB9967FD7", + "base": "ibc/2E700ABFE647067FD36216148C3838F4D57AFCF7D1D5EA040148932DF580C12D", "denomUnits": [ { "aliases": [ - "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", ], - "denom": "ibc/7D270ADD95EF2C77FBBD362DA2BEA502AE99B278B25718CFB89EA5EEB9967FD7", + "denom": "ibc/2E700ABFE647067FD36216148C3838F4D57AFCF7D1D5EA040148932DF580C12D", "exponent": 0, }, { - "denom": "lp-wsteth-weth", + "denom": "lp-ntrn-mnta", "exponent": 6, }, ], - "description": "LP Bow: wstETH.axl-wETH.axl", - "display": "lp-wsteth-weth", + "description": "LP Bow: NTRN-MNTA", + "display": "lp-ntrn-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40608,15 +40933,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wstETH.axl-wETH.axl", - "symbol": "LP wstETH.axl-wETH.axl", + "name": "LP Bow: NTRN-MNTA", + "symbol": "LP NTRN-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "base_denom": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40626,22 +40951,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/D41A27D21332614AD8DACE6BCD13C2E7F5696CF35C08D421894D173458CE0FEA", + "base": "ibc/6F6C38D53A2F55927EBB0F723B564BBE73336105BEA000D98FBB141B143404ED", "denomUnits": [ { "aliases": [ - "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", ], - "denom": "ibc/D41A27D21332614AD8DACE6BCD13C2E7F5696CF35C08D421894D173458CE0FEA", + "denom": "ibc/6F6C38D53A2F55927EBB0F723B564BBE73336105BEA000D98FBB141B143404ED", "exponent": 0, }, { - "denom": "lp-qcmnta-mnta", + "denom": "lp-wftm-mnta", "exponent": 6, }, ], - "description": "LP Bow: qcMNTA-MNTA", - "display": "lp-qcmnta-mnta", + "description": "LP Bow: wFTM.axl-MNTA", + "display": "lp-wftm-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40650,15 +40975,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: qcMNTA-MNTA", - "symbol": "LP qcMNTA-MNTA", + "name": "LP Bow: wFTM.axl-MNTA", + "symbol": "LP wFTM.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "base_denom": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40668,22 +40993,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/984F5D5A2607F7243BBC78AFFB2861299856902DA119C3BCF9E433D7810B95E1", + "base": "ibc/C6C11D0E2DBF825AD7C11628BA560B6BAE4073131E60EEECDA14E4D9BFFBC101", "denomUnits": [ { "aliases": [ - "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", ], - "denom": "ibc/984F5D5A2607F7243BBC78AFFB2861299856902DA119C3BCF9E433D7810B95E1", + "denom": "ibc/C6C11D0E2DBF825AD7C11628BA560B6BAE4073131E60EEECDA14E4D9BFFBC101", "exponent": 0, }, { - "denom": "lp-ampmnta-mnta", + "denom": "lp-stars-mnta", "exponent": 6, }, ], - "description": "LP Bow: ampMNTA-MNTA", - "display": "lp-ampmnta-mnta", + "description": "LP Bow: STARS-MNTA", + "display": "lp-stars-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40692,15 +41017,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: ampMNTA-MNTA", - "symbol": "LP ampMNTA-MNTA", + "name": "LP Bow: STARS-MNTA", + "symbol": "LP STARS-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "base_denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40710,22 +41035,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/2D3342E5316871FEFBF0191B994E9B03EA3E9C3E662ECDB29BD102AE914423D7", + "base": "ibc/8EF8E9711ADC150CC3C6413380F2F642A06B7C9D2896E3FFB0A1341E411452C8", "denomUnits": [ { "aliases": [ - "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", ], - "denom": "ibc/2D3342E5316871FEFBF0191B994E9B03EA3E9C3E662ECDB29BD102AE914423D7", + "denom": "ibc/8EF8E9711ADC150CC3C6413380F2F642A06B7C9D2896E3FFB0A1341E411452C8", "exponent": 0, }, { - "denom": "lp-weth-usk", + "denom": "lp-tia-mnta", "exponent": 6, }, ], - "description": "LP Bow: wETH.axl-USK", - "display": "lp-weth-usk", + "description": "LP Bow: TIA-MNTA", + "display": "lp-tia-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -40734,15 +41059,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wETH.axl-USK", - "symbol": "LP wETH.axl-USK", + "name": "LP Bow: TIA-MNTA", + "symbol": "LP TIA-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "base_denom": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40752,45 +41077,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/B0D7B120F2635EF79F83835D9F1D1344F84219728C8EC6419EE5189D5268334E", - "coingeckoId": "nami-protocol", + "base": "ibc/54F33E8FA0791A25B315636097831FED75462A5EEA50E1B078D94067DB5729B8", "denomUnits": [ { "aliases": [ - "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", ], - "denom": "ibc/B0D7B120F2635EF79F83835D9F1D1344F84219728C8EC6419EE5189D5268334E", + "denom": "ibc/54F33E8FA0791A25B315636097831FED75462A5EEA50E1B078D94067DB5729B8", "exponent": 0, }, { - "denom": "nami", + "denom": "lp-sol-mnta", "exponent": 6, }, ], - "description": "The token of NAMI", - "display": "nami", + "description": "LP Bow: SOL.wh-MNTA", + "display": "lp-sol-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg", - "theme": { - "primaryColorHex": "#1a1b1b", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "NAMI", - "symbol": "NAMI", + "name": "LP Bow: SOL.wh-MNTA", + "symbol": "LP SOL.wh-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "base_denom": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40800,41 +41119,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/34C675159D7EE4355AE3019F69261CDA245D6F195F8E74DCE2831CA5324A1C0A", + "base": "ibc/4F1A1E37E8BD403E16D44AA117AFA8CE8BED0A9D080D6B4213BBD911D0DF99E9", "denomUnits": [ { "aliases": [ - "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", + "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", ], - "denom": "ibc/34C675159D7EE4355AE3019F69261CDA245D6F195F8E74DCE2831CA5324A1C0A", + "denom": "ibc/4F1A1E37E8BD403E16D44AA117AFA8CE8BED0A9D080D6B4213BBD911D0DF99E9", "exponent": 0, }, { - "denom": "nausd", + "denom": "lp-dym-mnta", "exponent": 6, }, ], - "description": "The receipt token of NAMI Protocol", - "display": "nausd", + "description": "LP Bow: DYM-MNTA", + "display": "lp-dym-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "NAUSD", - "symbol": "NAUSD", + "name": "LP Bow: DYM-MNTA", + "symbol": "LP DYM-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", + "base_denom": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40844,42 +41161,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/05083F882685B720D7D4826AC969ABCEE0844B6ABD73EF390353B780923AC8D8", + "base": "ibc/49001A9E5AEADC0FB98C6B000F1CDE97AA84AF77E9676C1D2AEEBD4B644FEBF2", "denomUnits": [ { "aliases": [ - "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", + "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", ], - "denom": "ibc/05083F882685B720D7D4826AC969ABCEE0844B6ABD73EF390353B780923AC8D8", + "denom": "ibc/49001A9E5AEADC0FB98C6B000F1CDE97AA84AF77E9676C1D2AEEBD4B644FEBF2", "exponent": 0, }, { - "denom": "mctest", + "denom": "lp-akt-mnta", "exponent": 6, }, ], - "description": "The token of MCTest", - "display": "mctest", + "description": "LP Bow: AKT-MNTA", + "display": "lp-akt-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png", - "theme": { - "primaryColorHex": "#1a1b1b", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "MCTEST", - "symbol": "MC01", + "name": "LP Bow: AKT-MNTA", + "symbol": "LP AKT-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", + "base_denom": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40889,42 +41203,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/978C91BCBE5CD5C1DE4F577ED738F488DD575999CA12B7C98033A1F7305106B8", + "base": "ibc/F1C6397EE0AC80D7375A2A891ED899F37F654017F211CD87AD056B540C253EA4", "denomUnits": [ { "aliases": [ - "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", + "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", ], - "denom": "ibc/978C91BCBE5CD5C1DE4F577ED738F488DD575999CA12B7C98033A1F7305106B8", + "denom": "ibc/F1C6397EE0AC80D7375A2A891ED899F37F654017F211CD87AD056B540C253EA4", "exponent": 0, }, { - "denom": "auto", + "denom": "lp-link-mnta", "exponent": 6, }, ], - "description": "The token of AUTO", - "display": "auto", + "description": "LP Bow: LINK.axl-MNTA", + "display": "lp-link-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png", - "theme": { - "primaryColorHex": "#1a1b1b", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "AUTO", - "symbol": "AUTO", + "name": "LP Bow: LINK.axl-MNTA", + "symbol": "LP LINK.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", + "base_denom": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40934,39 +41245,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1B7AA926809880A67BEB03F95CF98CFED1F2A2BDC9F0607EA304BFE0092EA83A", + "base": "ibc/11BF85DF900A59705647CDE3226A01276741EC9B82D7A4E3C916623807FF31FB", "denomUnits": [ { "aliases": [ - "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", + "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", ], - "denom": "ibc/1B7AA926809880A67BEB03F95CF98CFED1F2A2BDC9F0607EA304BFE0092EA83A", + "denom": "ibc/11BF85DF900A59705647CDE3226A01276741EC9B82D7A4E3C916623807FF31FB", "exponent": 0, }, { - "denom": "qcDYDX", - "exponent": 18, + "denom": "lp-wtao-mnta", + "exponent": 6, }, ], - "description": "Quark's auto-compounding DYDX derivative", - "display": "qcDYDX", + "description": "LP Bow: wTAO.grv-MNTA", + "display": "lp-wtao-mnta", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "qcDYDX", - "symbol": "qcDYDX", + "name": "LP Bow: wTAO.grv-MNTA", + "symbol": "LP wTAO.grv-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", + "base_denom": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -40976,41 +41287,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/7ADC237C909C84575A7748ACDD8D4486C0FC9CA8BC99F6F365CCDF51646F138E", + "base": "ibc/5C7FB2CB73BA24A4ACB5169CCF542C0D37A4A57B0F443C00C8AA6484E689E307", "denomUnits": [ { "aliases": [ - "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", + "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", ], - "denom": "ibc/7ADC237C909C84575A7748ACDD8D4486C0FC9CA8BC99F6F365CCDF51646F138E", + "denom": "ibc/5C7FB2CB73BA24A4ACB5169CCF542C0D37A4A57B0F443C00C8AA6484E689E307", "exponent": 0, }, { - "denom": "rkuji", + "denom": "lp-mnta-kuji", "exponent": 6, }, ], - "description": "The Kujira Recovery Token", - "display": "rkuji", + "description": "LP Bow: MNTA-KUJI", + "display": "lp-mnta-kuji", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "rKUJI", - "symbol": "rKUJI", + "name": "LP Bow: MNTA-KUJI", + "symbol": "LP MNTA-KUJI", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", + "base_denom": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41020,22 +41329,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1CFE67C35EA3C91AE29DC0DD903E4950ED8816EF2395BDE728C73F8CE07C0815", + "base": "ibc/DDEC92BC917E7FCC5FF5BEDC4740D9F2A6B3B257839236191CC27144CD045FB3", "denomUnits": [ { "aliases": [ - "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", + "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", ], - "denom": "ibc/1CFE67C35EA3C91AE29DC0DD903E4950ED8816EF2395BDE728C73F8CE07C0815", + "denom": "ibc/DDEC92BC917E7FCC5FF5BEDC4740D9F2A6B3B257839236191CC27144CD045FB3", "exponent": 0, }, { - "denom": "lp-atom-usk", + "denom": "lp-axl-mnta", "exponent": 6, }, ], - "description": "LP Bow: ATOM-USK", - "display": "lp-atom-usk", + "description": "LP Bow: AXL-MNTA", + "display": "lp-axl-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41044,15 +41353,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: ATOM-USK", - "symbol": "LP ATOM-USK", + "name": "LP Bow: AXL-MNTA", + "symbol": "LP AXL-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", + "base_denom": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41062,22 +41371,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/F3BB7A098C5B712D46981C68D4132E6E60953AA7B92ADBA51CF2ABF06CBBB349", + "base": "ibc/D0200323EAB49E2DAB5ADC70E6D009A633C509383476537AE882570E3AD0D168", "denomUnits": [ { "aliases": [ - "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", + "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", ], - "denom": "ibc/F3BB7A098C5B712D46981C68D4132E6E60953AA7B92ADBA51CF2ABF06CBBB349", + "denom": "ibc/D0200323EAB49E2DAB5ADC70E6D009A633C509383476537AE882570E3AD0D168", "exponent": 0, }, { - "denom": "lp-weth-usk", + "denom": "lp-atom-mnta", "exponent": 6, }, ], - "description": "LP Bow: wETH.axl-USK", - "display": "lp-weth-usk", + "description": "LP Bow: ATOM-MNTA", + "display": "lp-atom-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41086,15 +41395,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wETH.axl-USK", - "symbol": "LP wETH.axl-USK", + "name": "LP Bow: ATOM-MNTA", + "symbol": "LP ATOM-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", + "base_denom": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41104,22 +41413,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/D7E551427C74296DF1854A08C211F0F88F0AE6E6E43DC7116D81CF4A26F908D6", + "base": "ibc/7DCE434AD60E46DC40EF1FB085E870E9181D8D1F26F892D80177C0050DAB1E77", "denomUnits": [ { "aliases": [ - "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", + "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", ], - "denom": "ibc/D7E551427C74296DF1854A08C211F0F88F0AE6E6E43DC7116D81CF4A26F908D6", + "denom": "ibc/7DCE434AD60E46DC40EF1FB085E870E9181D8D1F26F892D80177C0050DAB1E77", "exponent": 0, }, { - "denom": "lp-sol-usk", + "denom": "lp-arb-mnta", "exponent": 6, }, ], - "description": "LP Bow: SOL.wh-USK", - "display": "lp-sol-usk", + "description": "LP Bow: ARB-MNTA", + "display": "lp-arb-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41128,15 +41437,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: SOL.wh-USK", - "symbol": "LP SOL.wh-USK", + "name": "LP Bow: ARB-MNTA", + "symbol": "LP ARB-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", + "base_denom": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41146,22 +41455,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1201D348B31EC36E29DFAC3F85D7E355D3A75B43CD1C09BA24FB21ADEB4A9EBF", + "base": "ibc/DA4D1E76C8B6F41BC17FBBAD8A2C9D36EFD91E991D1075D7C20642B45C1DC937", "denomUnits": [ { "aliases": [ - "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", + "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", ], - "denom": "ibc/1201D348B31EC36E29DFAC3F85D7E355D3A75B43CD1C09BA24FB21ADEB4A9EBF", + "denom": "ibc/DA4D1E76C8B6F41BC17FBBAD8A2C9D36EFD91E991D1075D7C20642B45C1DC937", "exponent": 0, }, { - "denom": "lp-weth-usdc", + "denom": "lp-whale-mnta", "exponent": 6, }, ], - "description": "LP Bow: wETH.axl-USDC", - "display": "lp-weth-usdc", + "description": "LP Bow: WHALE-MNTA", + "display": "lp-whale-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41170,15 +41479,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wETH.axl-USDC", - "symbol": "LP wETH.axl-USDC", + "name": "LP Bow: WHALE-MNTA", + "symbol": "LP WHALE-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", + "base_denom": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41188,22 +41497,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8FE12F3084F60A99C1B440506244B85E6430EA75B98676C6145D00F3893E6D12", + "base": "ibc/5739C0A2443302BFDB1E5E9197C9C2EC533CFFA858987D0D49CCBD5A749F2E27", "denomUnits": [ { "aliases": [ - "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", + "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", ], - "denom": "ibc/8FE12F3084F60A99C1B440506244B85E6430EA75B98676C6145D00F3893E6D12", + "denom": "ibc/5739C0A2443302BFDB1E5E9197C9C2EC533CFFA858987D0D49CCBD5A749F2E27", "exponent": 0, }, { - "denom": "lp-dydx-usk", + "denom": "lp-scrt-mnta", "exponent": 6, }, ], - "description": "LP Bow: DYDX-USK", - "display": "lp-dydx-usk", + "description": "LP Bow: SCRT-MNTA", + "display": "lp-scrt-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41212,15 +41521,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: DYDX-USK", - "symbol": "LP DYDX-USK", + "name": "LP Bow: SCRT-MNTA", + "symbol": "LP SCRT-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", + "base_denom": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41230,22 +41539,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/6780786E8C140E992ED28AD45D4A87A38A895C200B1F3E10F78A48D4A3721F37", + "base": "ibc/9B41972292144CC723B51E9BF6D4567A1EA07D5AE385F7CE7952111DCB274361", "denomUnits": [ { "aliases": [ - "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", + "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", ], - "denom": "ibc/6780786E8C140E992ED28AD45D4A87A38A895C200B1F3E10F78A48D4A3721F37", + "denom": "ibc/9B41972292144CC723B51E9BF6D4567A1EA07D5AE385F7CE7952111DCB274361", "exponent": 0, }, { - "denom": "lp-akt-usdc", + "denom": "lp-wsteth-mnta", "exponent": 6, }, ], - "description": "LP Bow: AKT-USDC", - "display": "lp-akt-usdc", + "description": "LP Bow: wstETH.axl-MNTA", + "display": "lp-wsteth-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41254,15 +41563,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: AKT-USDC", - "symbol": "LP AKT-USDC", + "name": "LP Bow: wstETH.axl-MNTA", + "symbol": "LP wstETH.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", + "base_denom": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41272,22 +41581,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/F89CAF5B5F2D1590B20E4828F29657F709FF00826A3E23F3A96F1C9CC99A6DDC", + "base": "ibc/EE59D8E2F5B63FA5705BAC30D440B25BC8C18C4C3FE4E9F2BE3C3DAD6AD89EE9", "denomUnits": [ { "aliases": [ - "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", + "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", ], - "denom": "ibc/F89CAF5B5F2D1590B20E4828F29657F709FF00826A3E23F3A96F1C9CC99A6DDC", + "denom": "ibc/EE59D8E2F5B63FA5705BAC30D440B25BC8C18C4C3FE4E9F2BE3C3DAD6AD89EE9", "exponent": 0, }, { - "denom": "lp-wbtc-usk", + "denom": "lp-wmatic-mnta", "exponent": 6, }, ], - "description": "LP Bow: wBTC-USK", - "display": "lp-wbtc-usk", + "description": "LP Bow: wMATIC.axl-MNTA", + "display": "lp-wmatic-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41296,15 +41605,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wBTC-USK", - "symbol": "LP wBTC-USK", + "name": "LP Bow: wMATIC.axl-MNTA", + "symbol": "LP wMATIC.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", + "base_denom": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41314,22 +41623,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/90996657B0A0E8F2A36CA9BA234B4FED3A8604F48273FC4BAB4EE186BFE97CB8", + "base": "ibc/70D3640CC11037825623229C49B4CA0DB74D801211F4A549ABC94DF72E4CD6D1", "denomUnits": [ { "aliases": [ - "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", + "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", ], - "denom": "ibc/90996657B0A0E8F2A36CA9BA234B4FED3A8604F48273FC4BAB4EE186BFE97CB8", + "denom": "ibc/70D3640CC11037825623229C49B4CA0DB74D801211F4A549ABC94DF72E4CD6D1", "exponent": 0, }, { - "denom": "lp-wbtc-wbtc", - "exponent": 8, + "denom": "lp-uni-mnta", + "exponent": 6, }, ], - "description": "LP Bow: wBTC.axl-wBTC", - "display": "lp-wbtc-wbtc", + "description": "LP Bow: UNI.axl-MNTA", + "display": "lp-uni-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41338,15 +41647,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: wBTC.axl-wBTC", - "symbol": "LP wBTC.axl-wBTC", + "name": "LP Bow: UNI.axl-MNTA", + "symbol": "LP UNI.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", + "base_denom": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41356,22 +41665,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/00A152056E06B4F5B657B3B4F0EE5F6A04DDF918D29082667CBA5FDA9CE8D8AC", + "base": "ibc/F5A5B8B3C625220D39D7F22A04F9470DABDF360F1E0978F8C10A3BAB17BE8F78", "denomUnits": [ { "aliases": [ - "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", + "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", ], - "denom": "ibc/00A152056E06B4F5B657B3B4F0EE5F6A04DDF918D29082667CBA5FDA9CE8D8AC", + "denom": "ibc/F5A5B8B3C625220D39D7F22A04F9470DABDF360F1E0978F8C10A3BAB17BE8F78", "exponent": 0, }, { - "denom": "lp-inj-usdc", + "denom": "lp-yieldeth-mnta", "exponent": 6, }, ], - "description": "LP Bow: INJ-USDC", - "display": "lp-inj-usdc", + "description": "LP Bow: yieldETH.axl-MNTA", + "display": "lp-yieldeth-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41380,15 +41689,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: INJ-USDC", - "symbol": "LP INJ-USDC", + "name": "LP Bow: yieldETH.axl-MNTA", + "symbol": "LP yieldETH.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", + "base_denom": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41398,22 +41707,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/7CF42C2C9BDD38A7C9429DBB1E3FE7B08525489BEE5E7DF2A17D09105444503D", + "base": "ibc/D939D7546BEBEACE9C9EA637E5CA63FC105015723E092B2B50C30A648E5D6FF6", "denomUnits": [ { "aliases": [ - "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", + "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", ], - "denom": "ibc/7CF42C2C9BDD38A7C9429DBB1E3FE7B08525489BEE5E7DF2A17D09105444503D", + "denom": "ibc/D939D7546BEBEACE9C9EA637E5CA63FC105015723E092B2B50C30A648E5D6FF6", "exponent": 0, }, { - "denom": "lp-atom-usdc", + "denom": "lp-wbtc-mnta", "exponent": 6, }, ], - "description": "LP Bow: ATOM-USDC", - "display": "lp-atom-usdc", + "description": "LP Bow: wBTC.axl-MNTA", + "display": "lp-wbtc-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41422,15 +41731,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: ATOM-USDC", - "symbol": "LP ATOM-USDC", + "name": "LP Bow: wBTC.axl-MNTA", + "symbol": "LP wBTC.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", + "base_denom": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41440,22 +41749,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5C576CD77B7BA8F0294953E6C707FF0762834C0C949A20EDF571C2D03E09897A", + "base": "ibc/20AF1B2A0D027CF71C39485C7F482B245AC002E1E7DEFA7DF2E43D5B02991BB4", "denomUnits": [ { "aliases": [ - "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", + "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", ], - "denom": "ibc/5C576CD77B7BA8F0294953E6C707FF0762834C0C949A20EDF571C2D03E09897A", + "denom": "ibc/20AF1B2A0D027CF71C39485C7F482B245AC002E1E7DEFA7DF2E43D5B02991BB4", "exponent": 0, }, { - "denom": "lp-mnta-usdc", + "denom": "lp-paxg-mnta", "exponent": 6, }, ], - "description": "LP Bow: MNTA-USDC", - "display": "lp-mnta-usdc", + "description": "LP Bow: PAXG.grv-MNTA", + "display": "lp-paxg-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41464,15 +41773,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: MNTA-USDC", - "symbol": "LP MNTA-USDC", + "name": "LP Bow: PAXG.grv-MNTA", + "symbol": "LP PAXG.grv-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", + "base_denom": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41482,22 +41791,22 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/37F0AE7AAADECDA1310BAC92FC781ADD8A2682C100EEBDEE8EDA4652C809F6C1", + "base": "ibc/99F6253E2984CF33D4D79A9C74867492E5B50FCBF37933CAECDEA017B3FA3400", "denomUnits": [ { "aliases": [ - "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", + "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", ], - "denom": "ibc/37F0AE7AAADECDA1310BAC92FC781ADD8A2682C100EEBDEE8EDA4652C809F6C1", + "denom": "ibc/99F6253E2984CF33D4D79A9C74867492E5B50FCBF37933CAECDEA017B3FA3400", "exponent": 0, }, { - "denom": "lp-mnta-usk", + "denom": "lp-wbnb-mnta", "exponent": 6, }, ], - "description": "LP Bow: MNTA-USK", - "display": "lp-mnta-usk", + "description": "LP Bow: wBNB.axl-MNTA", + "display": "lp-wbnb-mnta", "images": [ { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", @@ -41506,15 +41815,15 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "logoURIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "LP Bow: MNTA-USK", - "symbol": "LP MNTA-USK", + "name": "LP Bow: wBNB.axl-MNTA", + "symbol": "LP wBNB.axl-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", + "base_denom": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41524,41 +41833,39 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/9F7B2AC3DE923D2B7BD0A56776F7367E5008F55C588AE23DF9B378C92E59E22D", + "base": "ibc/5E07865CB0DDB5C5F998CB15902A964AE208DE2286DF039A27F6E8C00D5C01D1", "denomUnits": [ { "aliases": [ - "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", + "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", ], - "denom": "ibc/9F7B2AC3DE923D2B7BD0A56776F7367E5008F55C588AE23DF9B378C92E59E22D", + "denom": "ibc/5E07865CB0DDB5C5F998CB15902A964AE208DE2286DF039A27F6E8C00D5C01D1", "exponent": 0, }, { - "denom": "boon", + "denom": "lp-osmo-mnta", "exponent": 6, }, ], - "description": "The token that fuels the Boon app", - "display": "boon", + "description": "LP Bow: OSMO-MNTA", + "display": "lp-osmo-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Boon", - "symbol": "BOON", + "name": "LP Bow: OSMO-MNTA", + "symbol": "LP OSMO-MNTA", "traces": [ { "chain": { "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", + "base_denom": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", "chain_name": "kujira", "channel_id": "channel-158", }, @@ -41568,54 +41875,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", - "coingeckoId": "neutron-3", + "base": "ibc/1A348CC48BB27A03D5366EF300875E18843084A1D591443FECA6DF7535B0D470", "denomUnits": [ { "aliases": [ - "untrn", + "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", ], - "denom": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", + "denom": "ibc/1A348CC48BB27A03D5366EF300875E18843084A1D591443FECA6DF7535B0D470", "exponent": 0, }, { - "denom": "ntrn", + "denom": "lp-inj-mnta", "exponent": 6, }, ], - "description": "Neutron is a smart contract blockchain within the Cosmos ecosystem, leveraging the Cosmos Hub's security to provide cross-chain DeFi applications.", - "display": "ntrn", - "extendedDescription": "Neutron is a blockchain network designed to bring smart contracts to the Cosmos ecosystem using CosmWasm. It leverages Interchain Security to rely on the Cosmos Hub's validator set, enhancing its security without needing its own validators. This allows Neutron to provide robust, cross-chain smart contract applications across more than 50 interconnected blockchains. Neutron's focus on interchain queries and transactions enables secure data retrieval and transaction execution across multiple chains, fostering the development of complex and decentralized applications within the Cosmos network.", + "description": "LP Bow: INJ-MNTA", + "display": "lp-inj-mnta", "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", - "theme": { - "backgroundColorHex": "#000000", - "circle": true, - "primaryColorHex": "#040404", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "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", - }, - "name": "Neutron", - "socials": { - "twitter": "https://twitter.com/Neutron_org", - "website": "https://neutron.org/", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "symbol": "NTRN", + "name": "LP Bow: INJ-MNTA", + "symbol": "LP INJ-MNTA", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "untrn", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -41623,197 +41917,167 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331", + "base": "ibc/4C424E48E0CE289FD9C330FC9B5BF3F2D7932E1DA1B614096251C484BA2B10C1", "denomUnits": [ { "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", ], - "denom": "ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331", + "denom": "ibc/4C424E48E0CE289FD9C330FC9B5BF3F2D7932E1DA1B614096251C484BA2B10C1", "exponent": 0, }, { - "denom": "atom", + "denom": "lp-stosmo-osmo", "exponent": 6, }, ], - "description": "IBC uatom through cosmoshub-4 transfer/channel-1", - "display": "atom", + "description": "LP Bow: stOSMO-OSMO", + "display": "lp-stosmo-osmo", "images": [ { - "imageSync": { - "baseDenom": "uatom", - "chainName": "cosmoshub", - }, - "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", - "theme": { - "primaryColorHex": "#272d45", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "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/kujira/images/bow.svg", }, - "name": "IBC atom", - "symbol": "ATOM", + "name": "LP Bow: stOSMO-OSMO", + "symbol": "LP stOSMO-OSMO", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625", + "base": "ibc/7D270ADD95EF2C77FBBD362DA2BEA502AE99B278B25718CFB89EA5EEB9967FD7", "denomUnits": [ { "aliases": [ - "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", ], - "denom": "ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625", + "denom": "ibc/7D270ADD95EF2C77FBBD362DA2BEA502AE99B278B25718CFB89EA5EEB9967FD7", "exponent": 0, }, { - "denom": "axlusdc", + "denom": "lp-wsteth-weth", "exponent": 6, }, ], - "description": "IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2", - "display": "axlusdc", + "description": "LP Bow: wstETH.axl-wETH.axl", + "display": "lp-wsteth-weth", "images": [ { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "axelar", - }, - "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", - "theme": { - "primaryColorHex": "#2474cc", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "USD Coin (Axelar)", - "symbol": "axlUSDC", + "name": "LP Bow: wstETH.axl-wETH.axl", + "symbol": "LP wstETH.axl-wETH.axl", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F", + "base": "ibc/D41A27D21332614AD8DACE6BCD13C2E7F5696CF35C08D421894D173458CE0FEA", "denomUnits": [ { "aliases": [ - "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", ], - "denom": "ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F", + "denom": "ibc/D41A27D21332614AD8DACE6BCD13C2E7F5696CF35C08D421894D173458CE0FEA", "exponent": 0, }, { - "denom": "tia", + "denom": "lp-qcmnta-mnta", "exponent": 6, }, ], - "description": "Tia on Neutron", - "display": "tia", + "description": "LP Bow: qcMNTA-MNTA", + "display": "lp-qcmnta-mnta", "images": [ { - "imageSync": { - "baseDenom": "utia", - "chainName": "celestia", - }, - "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", - "theme": { - "primaryColorHex": "#7c2cfb", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Celestia TIA", - "symbol": "TIA", + "name": "LP Bow: qcMNTA-MNTA", + "symbol": "LP qcMNTA-MNTA", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D", + "base": "ibc/984F5D5A2607F7243BBC78AFFB2861299856902DA119C3BCF9E433D7810B95E1", "denomUnits": [ { "aliases": [ - "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", ], - "denom": "ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D", + "denom": "ibc/984F5D5A2607F7243BBC78AFFB2861299856902DA119C3BCF9E433D7810B95E1", "exponent": 0, }, { - "denom": "ASTROPEPE", + "denom": "lp-ampmnta-mnta", "exponent": 6, }, ], - "description": "Astropepe meme coin", - "display": "ASTROPEPE", + "description": "LP Bow: ampMNTA-MNTA", + "display": "lp-ampmnta-mnta", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", - "theme": { - "primaryColorHex": "#47391d", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "AstroPepe", - "symbol": "ASTROPEPE", + "name": "LP Bow: ampMNTA-MNTA", + "symbol": "LP ampMNTA-MNTA", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -41821,45 +42085,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D", + "base": "ibc/2D3342E5316871FEFBF0191B994E9B03EA3E9C3E662ECDB29BD102AE914423D7", "denomUnits": [ { "aliases": [ - "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", ], - "denom": "ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D", + "denom": "ibc/2D3342E5316871FEFBF0191B994E9B03EA3E9C3E662ECDB29BD102AE914423D7", "exponent": 0, }, { - "denom": "wstETH", - "exponent": 18, + "denom": "lp-weth-usk", + "exponent": 6, }, ], - "description": "wstETH on Neutron", - "display": "wstETH", + "description": "LP Bow: wETH.axl-USK", + "display": "lp-weth-usk", "images": [ { - "imageSync": { - "baseDenom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "chainName": "ethereum", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "wstETH", - "symbol": "wstETH", + "name": "LP Bow: wETH.axl-USK", + "symbol": "LP wETH.axl-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -41867,147 +42127,136 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38", + "base": "ibc/B0D7B120F2635EF79F83835D9F1D1344F84219728C8EC6419EE5189D5268334E", + "coingeckoId": "nami-protocol", "denomUnits": [ { "aliases": [ - "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", + "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", ], - "denom": "ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38", + "denom": "ibc/B0D7B120F2635EF79F83835D9F1D1344F84219728C8EC6419EE5189D5268334E", "exponent": 0, }, { - "denom": "sat", + "denom": "nami", "exponent": 6, }, ], - "description": "NBTC on Neutron", - "display": "sat", + "description": "The token of NAMI", + "display": "nami", "images": [ { - "imageSync": { - "baseDenom": "usat", - "chainName": "nomic", - }, - "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/kujira/images/nami.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg", "theme": { - "primaryColorHex": "#8436e6", + "primaryColorHex": "#1a1b1b", }, }, ], "logoURIs": { - "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/kujira/images/nami.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nami.svg", }, - "name": "Nomic NBTC", - "symbol": "SAT", + "name": "NAMI", + "symbol": "NAMI", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D", + "base": "ibc/34C675159D7EE4355AE3019F69261CDA245D6F195F8E74DCE2831CA5324A1C0A", "denomUnits": [ { "aliases": [ - "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", ], - "denom": "ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D", + "denom": "ibc/34C675159D7EE4355AE3019F69261CDA245D6F195F8E74DCE2831CA5324A1C0A", "exponent": 0, }, { - "denom": "dydx", - "exponent": 18, + "denom": "nausd", + "exponent": 6, }, ], - "description": "DYDX on Neutron", - "display": "dydx", + "description": "The receipt token of NAMI Protocol", + "display": "nausd", "images": [ { - "imageSync": { - "baseDenom": "adydx", - "chainName": "dydx", - }, - "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", - "theme": { - "primaryColorHex": "#21212f", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg", }, ], "logoURIs": { - "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/kujira/images/nausd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nausd.svg", }, - "name": "DYDX", - "symbol": "DYDX", + "name": "NAUSD", + "symbol": "NAUSD", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E", - "coingeckoId": "newt", + "base": "ibc/05083F882685B720D7D4826AC969ABCEE0844B6ABD73EF390353B780923AC8D8", "denomUnits": [ { "aliases": [ - "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", ], - "denom": "ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E", + "denom": "ibc/05083F882685B720D7D4826AC969ABCEE0844B6ABD73EF390353B780923AC8D8", "exponent": 0, }, { - "denom": "newt", + "denom": "mctest", "exponent": 6, }, ], - "description": "The cutest NEWT token on Neutron chain.", - "display": "newt", + "description": "The token of MCTest", + "display": "mctest", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png", "theme": { - "primaryColorHex": "#16233d", + "primaryColorHex": "#1a1b1b", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mctest.png", }, - "name": "Newt", - "symbol": "NEWT", + "name": "MCTEST", + "symbol": "MC01", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42015,51 +42264,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/540431A5BFED5015F277F57669350EB0AB378B4D8BE6C55B6721199096E0A401", - "coingeckoId": "astroport-fi", + "base": "ibc/978C91BCBE5CD5C1DE4F577ED738F488DD575999CA12B7C98033A1F7305106B8", "denomUnits": [ { "aliases": [ - "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", ], - "denom": "ibc/540431A5BFED5015F277F57669350EB0AB378B4D8BE6C55B6721199096E0A401", + "denom": "ibc/978C91BCBE5CD5C1DE4F577ED738F488DD575999CA12B7C98033A1F7305106B8", "exponent": 0, }, { - "denom": "astro", + "denom": "auto", "exponent": 6, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "astro", + "description": "The token of AUTO", + "display": "auto", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png", "theme": { - "primaryColorHex": "#4056e9", + "primaryColorHex": "#1a1b1b", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", - }, - "name": "Astroport token", - "socials": { - "twitter": "https://twitter.com/astroport_fi", - "website": "https://astroport.fi/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/auto.png", }, - "symbol": "ASTRO", + "name": "AUTO", + "symbol": "AUTO", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42067,45 +42309,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/BC9C49492EC40D00C8FD6097BEA6085679A7BCBC43C2CF070D41985BA4218BB0", + "base": "ibc/1B7AA926809880A67BEB03F95CF98CFED1F2A2BDC9F0607EA304BFE0092EA83A", "denomUnits": [ { "aliases": [ - "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", ], - "denom": "ibc/BC9C49492EC40D00C8FD6097BEA6085679A7BCBC43C2CF070D41985BA4218BB0", + "denom": "ibc/1B7AA926809880A67BEB03F95CF98CFED1F2A2BDC9F0607EA304BFE0092EA83A", "exponent": 0, }, { - "denom": "xASTRO", - "exponent": 6, + "denom": "qcDYDX", + "exponent": 18, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "xASTRO", + "description": "Quark's auto-compounding DYDX derivative", + "display": "qcDYDX", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", - }, - "name": "Staked Astroport Token", - "socials": { - "twitter": "https://twitter.com/astroport_fi", - "website": "https://astroport.fi/", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcdydx.svg", }, - "symbol": "xASTRO", + "name": "qcDYDX", + "symbol": "qcDYDX", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42113,90 +42351,85 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0", + "base": "ibc/7ADC237C909C84575A7748ACDD8D4486C0FC9CA8BC99F6F365CCDF51646F138E", "denomUnits": [ { "aliases": [ - "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", ], - "denom": "ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0", + "denom": "ibc/7ADC237C909C84575A7748ACDD8D4486C0FC9CA8BC99F6F365CCDF51646F138E", "exponent": 0, }, { - "denom": "astro.cw20", + "denom": "rkuji", "exponent": 6, }, ], - "description": "ASTRO.cw20 on Neutron", - "display": "astro.cw20", + "description": "The Kujira Recovery Token", + "display": "rkuji", "images": [ { - "imageSync": { - "baseDenom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "chainName": "terra2", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/rkuji.svg", }, - "name": "Astroport CW20 token", - "symbol": "ASTRO.cw20", - "traces": [ + "name": "rKUJI", + "symbol": "rKUJI", + "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0", + "base": "ibc/1CFE67C35EA3C91AE29DC0DD903E4950ED8816EF2395BDE728C73F8CE07C0815", "denomUnits": [ { "aliases": [ - "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", ], - "denom": "ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0", + "denom": "ibc/1CFE67C35EA3C91AE29DC0DD903E4950ED8816EF2395BDE728C73F8CE07C0815", "exponent": 0, }, { - "denom": "corgi", + "denom": "lp-atom-usk", "exponent": 6, }, ], - "description": "Baby Corgi is the real doggo of Neutron!", - "display": "corgi", + "description": "LP Bow: ATOM-USK", + "display": "lp-atom-usk", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", - "theme": { - "primaryColorHex": "#fab442", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Baby Corgi", - "symbol": "CORGI", + "name": "LP Bow: ATOM-USK", + "symbol": "LP ATOM-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42204,44 +42437,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236", + "base": "ibc/F3BB7A098C5B712D46981C68D4132E6E60953AA7B92ADBA51CF2ABF06CBBB349", "denomUnits": [ { "aliases": [ - "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", ], - "denom": "ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236", + "denom": "ibc/F3BB7A098C5B712D46981C68D4132E6E60953AA7B92ADBA51CF2ABF06CBBB349", "exponent": 0, }, { - "denom": "circus", + "denom": "lp-weth-usk", "exponent": 6, }, ], - "description": "clownmaxxed store of value", - "display": "circus", + "description": "LP Bow: wETH.axl-USK", + "display": "lp-weth-usk", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", - "theme": { - "primaryColorHex": "#242033", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "AtomEconomicZone69JaeKwonInu", - "symbol": "CIRCUS", + "name": "LP Bow: wETH.axl-USK", + "symbol": "LP wETH.axl-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42249,44 +42479,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE", + "base": "ibc/D7E551427C74296DF1854A08C211F0F88F0AE6E6E43DC7116D81CF4A26F908D6", "denomUnits": [ { "aliases": [ - "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", ], - "denom": "ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE", + "denom": "ibc/D7E551427C74296DF1854A08C211F0F88F0AE6E6E43DC7116D81CF4A26F908D6", "exponent": 0, }, { - "denom": "jimmy", + "denom": "lp-sol-usk", "exponent": 6, }, ], - "description": "Jimmy Neutron Finance", - "display": "jimmy", + "description": "LP Bow: SOL.wh-USK", + "display": "lp-sol-usk", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", - "theme": { - "primaryColorHex": "#7d3c20", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "jimmy", - "symbol": "JIMMY", + "name": "LP Bow: SOL.wh-USK", + "symbol": "LP SOL.wh-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42294,44 +42521,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A", + "base": "ibc/1201D348B31EC36E29DFAC3F85D7E355D3A75B43CD1C09BA24FB21ADEB4A9EBF", "denomUnits": [ { "aliases": [ - "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", ], - "denom": "ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A", + "denom": "ibc/1201D348B31EC36E29DFAC3F85D7E355D3A75B43CD1C09BA24FB21ADEB4A9EBF", "exponent": 0, }, { - "denom": "bad", + "denom": "lp-weth-usdc", "exponent": 6, }, ], - "description": "Baddest coin on Cosmos", - "display": "bad", + "description": "LP Bow: wETH.axl-USDC", + "display": "lp-weth-usdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", - "theme": { - "primaryColorHex": "#211a0d", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Badcoin", - "symbol": "BAD", + "name": "LP Bow: wETH.axl-USDC", + "symbol": "LP wETH.axl-USDC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42339,44 +42563,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E", + "base": "ibc/8FE12F3084F60A99C1B440506244B85E6430EA75B98676C6145D00F3893E6D12", "denomUnits": [ { "aliases": [ - "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", ], - "denom": "ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E", + "denom": "ibc/8FE12F3084F60A99C1B440506244B85E6430EA75B98676C6145D00F3893E6D12", "exponent": 0, }, { - "denom": "bitcosmos", + "denom": "lp-dydx-usk", "exponent": 6, }, ], - "description": "BITCOSMOS", - "display": "bitcosmos", + "description": "LP Bow: DYDX-USK", + "display": "lp-dydx-usk", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png", - "theme": { - "primaryColorHex": "#1b0847", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Bitcosmos", - "symbol": "BTC", + "name": "LP Bow: DYDX-USK", + "symbol": "LP DYDX-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42384,44 +42605,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907", + "base": "ibc/6780786E8C140E992ED28AD45D4A87A38A895C200B1F3E10F78A48D4A3721F37", "denomUnits": [ { "aliases": [ - "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", ], - "denom": "ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907", + "denom": "ibc/6780786E8C140E992ED28AD45D4A87A38A895C200B1F3E10F78A48D4A3721F37", "exponent": 0, }, { - "denom": "wtf", + "denom": "lp-akt-usdc", "exponent": 6, }, ], - "description": "What the Fuck", - "display": "wtf", + "description": "LP Bow: AKT-USDC", + "display": "lp-akt-usdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png", - "theme": { - "primaryColorHex": "#dcd5ab", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "wtf", - "symbol": "WTF", + "name": "LP Bow: AKT-USDC", + "symbol": "LP AKT-USDC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42429,95 +42647,83 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011", + "base": "ibc/F89CAF5B5F2D1590B20E4828F29657F709FF00826A3E23F3A96F1C9CC99A6DDC", "denomUnits": [ { "aliases": [ - "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", ], - "denom": "ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011", + "denom": "ibc/F89CAF5B5F2D1590B20E4828F29657F709FF00826A3E23F3A96F1C9CC99A6DDC", "exponent": 0, }, { - "denom": "nls", + "denom": "lp-wbtc-usk", "exponent": 6, }, ], - "description": "NLS on Neutron", - "display": "nls", + "description": "LP Bow: wBTC-USK", + "display": "lp-wbtc-usk", "images": [ { - "imageSync": { - "baseDenom": "unls", - "chainName": "nolus", - }, - "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", - "theme": { - "primaryColorHex": "#fc542c", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "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/kujira/images/bow.svg", }, - "name": "Nolus NLS", - "symbol": "NLS", + "name": "LP Bow: wBTC-USK", + "symbol": "LP wBTC-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE", + "base": "ibc/90996657B0A0E8F2A36CA9BA234B4FED3A8604F48273FC4BAB4EE186BFE97CB8", "denomUnits": [ { "aliases": [ - "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", ], - "denom": "ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE", + "denom": "ibc/90996657B0A0E8F2A36CA9BA234B4FED3A8604F48273FC4BAB4EE186BFE97CB8", "exponent": 0, }, { - "denom": "goddard", - "exponent": 6, + "denom": "lp-wbtc-wbtc", + "exponent": 8, }, ], - "description": "A Mechanical Canine", - "display": "goddard", + "description": "LP Bow: wBTC.axl-wBTC", + "display": "lp-wbtc-wbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", - "theme": { - "primaryColorHex": "#516b80", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Goddard", - "symbol": "GODRD", + "name": "LP Bow: wBTC.axl-wBTC", + "symbol": "LP wBTC.axl-wBTC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42525,45 +42731,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105", + "base": "ibc/00A152056E06B4F5B657B3B4F0EE5F6A04DDF918D29082667CBA5FDA9CE8D8AC", "denomUnits": [ { "aliases": [ - "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", ], - "denom": "ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105", + "denom": "ibc/00A152056E06B4F5B657B3B4F0EE5F6A04DDF918D29082667CBA5FDA9CE8D8AC", "exponent": 0, }, { - "denom": "apollo", + "denom": "lp-inj-usdc", "exponent": 6, }, ], - "description": "The deflationary utility token of the Apollo DAO project", - "display": "apollo", + "description": "LP Bow: INJ-USDC", + "display": "lp-inj-usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", - }, - "name": "Apollo DAO", - "socials": { - "twitter": "https://twitter.com/ApolloDAO", - "website": "https://apollo.farm/", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "symbol": "APOLLO", + "name": "LP Bow: INJ-USDC", + "symbol": "LP INJ-USDC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42571,41 +42773,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC", + "base": "ibc/7CF42C2C9BDD38A7C9429DBB1E3FE7B08525489BEE5E7DF2A17D09105444503D", "denomUnits": [ { "aliases": [ - "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", ], - "denom": "ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC", + "denom": "ibc/7CF42C2C9BDD38A7C9429DBB1E3FE7B08525489BEE5E7DF2A17D09105444503D", "exponent": 0, }, { - "denom": "newtroll", + "denom": "lp-atom-usdc", "exponent": 6, }, ], - "description": "NEWTROLL", - "display": "newtroll", + "description": "LP Bow: ATOM-USDC", + "display": "lp-atom-usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Newtroll", - "symbol": "NTRL", + "name": "LP Bow: ATOM-USDC", + "symbol": "LP ATOM-USDC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42613,41 +42815,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F", + "base": "ibc/5C576CD77B7BA8F0294953E6C707FF0762834C0C949A20EDF571C2D03E09897A", "denomUnits": [ { "aliases": [ - "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", ], - "denom": "ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F", + "denom": "ibc/5C576CD77B7BA8F0294953E6C707FF0762834C0C949A20EDF571C2D03E09897A", "exponent": 0, }, { - "denom": "retro", + "denom": "lp-mnta-usdc", "exponent": 6, }, ], - "description": "Retro Game", - "display": "retro", + "description": "LP Bow: MNTA-USDC", + "display": "lp-mnta-usdc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Retro", - "symbol": "RETRO", + "name": "LP Bow: MNTA-USDC", + "symbol": "LP MNTA-USDC", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42655,41 +42857,41 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68", + "base": "ibc/37F0AE7AAADECDA1310BAC92FC781ADD8A2682C100EEBDEE8EDA4652C809F6C1", "denomUnits": [ { "aliases": [ - "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", ], - "denom": "ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68", + "denom": "ibc/37F0AE7AAADECDA1310BAC92FC781ADD8A2682C100EEBDEE8EDA4652C809F6C1", "exponent": 0, }, { - "denom": "goddard", + "denom": "lp-mnta-usk", "exponent": 6, }, ], - "description": "THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON", - "display": "goddard", + "description": "LP Bow: MNTA-USK", + "display": "lp-mnta-usk", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", }, - "name": "Goddard", - "symbol": "GODDARD", + "name": "LP Bow: MNTA-USK", + "symbol": "LP MNTA-USK", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, @@ -42697,283 +42899,301 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1", + "base": "ibc/9F7B2AC3DE923D2B7BD0A56776F7367E5008F55C588AE23DF9B378C92E59E22D", "denomUnits": [ { "aliases": [ - "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", ], - "denom": "ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1", + "denom": "ibc/9F7B2AC3DE923D2B7BD0A56776F7367E5008F55C588AE23DF9B378C92E59E22D", "exponent": 0, }, { - "denom": "WOSMO", + "denom": "boon", "exponent": 6, }, ], - "description": "The first memecoin on osmosis.", - "display": "WOSMO", + "description": "The token that fuels the Boon app", + "display": "boon", "images": [ { - "imageSync": { - "baseDenom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "chainName": "osmosis", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", - "theme": { - "primaryColorHex": "#edd5ee", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/boon.svg", }, - "name": "Wosmo", - "symbol": "WOSMO", + "name": "Boon", + "symbol": "BOON", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11", + "base": "ibc/AB60263D1C6686328A81BBF1FA2AAB59F0A8C884149D68EEAA394779CD2B3D4D", "denomUnits": [ { "aliases": [ - "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", ], - "denom": "ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11", + "denom": "ibc/AB60263D1C6686328A81BBF1FA2AAB59F0A8C884149D68EEAA394779CD2B3D4D", "exponent": 0, }, { - "denom": "boy", - "exponent": 6, + "denom": "yum", + "exponent": 18, }, ], - "description": "Astro BOY", - "display": "boy", + "display": "yum", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png", + "imageSync": { + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", "theme": { - "primaryColorHex": "#333333", + "primaryColorHex": "#33a6e7", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", }, - "name": "boy", - "symbol": "BOY", + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", "traces": [ { "chain": { - "channel_id": "channel-136", + "channel_id": "channel-152", }, "counterparty": { - "base_denom": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", - "chain_name": "neutron", - "channel_id": "channel-49", + "base_denom": "ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7", + "chain_name": "kujira", + "channel_id": "channel-158", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F", + "base": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", + "coingeckoId": "neutron-3", "denomUnits": [ { "aliases": [ - "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "untrn", ], - "denom": "ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F", + "denom": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", "exponent": 0, }, { - "denom": "BADKID", + "denom": "ntrn", "exponent": 6, }, ], - "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.", - "display": "BADKID", + "description": "Neutron is a smart contract blockchain within the Cosmos ecosystem, leveraging the Cosmos Hub's security to provide cross-chain DeFi applications.", + "display": "ntrn", + "extendedDescription": "Neutron is a blockchain network designed to bring smart contracts to the Cosmos ecosystem using CosmWasm. It leverages Interchain Security to rely on the Cosmos Hub's validator set, enhancing its security without needing its own validators. This allows Neutron to provide robust, cross-chain smart contract applications across more than 50 interconnected blockchains. Neutron's focus on interchain queries and transactions enables secure data retrieval and transaction execution across multiple chains, fostering the development of complex and decentralized applications within the Cosmos network.", "images": [ { - "imageSync": { - "baseDenom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "chainName": "osmosis", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.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", "theme": { - "primaryColorHex": "#57443f", + "backgroundColorHex": "#000000", + "circle": true, + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.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", }, - "name": "Badkid", - "symbol": "BADKID", + "name": "Neutron", + "socials": { + "twitter": "https://twitter.com/Neutron_org", + "website": "https://neutron.org/", + }, + "symbol": "NTRN", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "base_denom": "untrn", "chain_name": "neutron", "channel_id": "channel-49", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B", + "base": "ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331", "denomUnits": [ { "aliases": [ - "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", ], - "denom": "ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B", + "denom": "ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331", "exponent": 0, }, { - "denom": "cartel", + "denom": "atom", "exponent": 6, }, ], - "description": "Reflections of cartel activity on Cosmos.", - "display": "cartel", + "description": "IBC uatom through cosmoshub-4 transfer/channel-1", + "display": "atom", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png", - "theme": { - "primaryColorHex": "#8c9098", + "imageSync": { + "baseDenom": "uatom", + "chainName": "cosmoshub", }, - }, + "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", + "theme": { + "primaryColorHex": "#272d45", + }, + }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.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", }, - "name": "cartel", - "symbol": "CARTEL", + "name": "IBC atom", + "symbol": "ATOM", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_name": "neutron", "channel_id": "channel-49", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/1AE9B6C1221ECFEC1759B9D07211D59851F077F162D7FF6AFA342312F1F40905", + "base": "ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625", "denomUnits": [ { "aliases": [ - "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", ], - "denom": "ibc/1AE9B6C1221ECFEC1759B9D07211D59851F077F162D7FF6AFA342312F1F40905", + "denom": "ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625", "exponent": 0, }, { - "denom": "ATOM1KLFG", + "denom": "axlusdc", "exponent": 6, }, ], - "description": "$ATOM to $1,000 LFG!!", - "display": "ATOM1KLFG", + "description": "IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2", + "display": "axlusdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "imageSync": { + "baseDenom": "uusdc", + "chainName": "axelar", + }, + "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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#2474cc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "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", }, - "name": "ATOM1KLFG", - "symbol": "ATOM1KLFG", + "name": "USD Coin (Axelar)", + "symbol": "axlUSDC", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "base_denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "chain_name": "neutron", "channel_id": "channel-49", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/BF1E7936725E67E723805B780B413454971F9D2AE4E2F4F8267C9556431B6491", - "coingeckoId": "usd-coin", + "base": "ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F", "denomUnits": [ { "aliases": [ - "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", ], - "denom": "ibc/BF1E7936725E67E723805B780B413454971F9D2AE4E2F4F8267C9556431B6491", + "denom": "ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F", "exponent": 0, }, { - "denom": "usdc", + "denom": "tia", "exponent": 6, }, ], - "description": "USD Coin on Neutron", - "display": "usdc", + "description": "Tia on Neutron", + "display": "tia", "images": [ { "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", + "baseDenom": "utia", + "chainName": "celestia", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#7c2cfb", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", }, - "name": "USD Coin", - "symbol": "USDC", + "name": "Celestia TIA", + "symbol": "TIA", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "base_denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -42983,42 +43203,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/2C5697C2E696BFF8C45BD6E0983436D6A007AEAB53FA8F1054E4BEDC9ADE0272", + "base": "ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D", "denomUnits": [ { "aliases": [ - "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", ], - "denom": "ibc/2C5697C2E696BFF8C45BD6E0983436D6A007AEAB53FA8F1054E4BEDC9ADE0272", + "denom": "ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D", "exponent": 0, }, { - "denom": "WEIRD", + "denom": "ASTROPEPE", "exponent": 6, }, ], - "description": "WEIRD FRIENDS token", - "display": "WEIRD", + "description": "Astropepe meme coin", + "display": "ASTROPEPE", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", "theme": { - "primaryColorHex": "#ebf0f4", + "primaryColorHex": "#47391d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", }, - "name": "WEIRD", - "symbol": "WEIRD", + "name": "AstroPepe", + "symbol": "ASTROPEPE", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "base_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43028,83 +43248,191 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/897289071C421B80054C3CF731AC83FC3074C8C497B6C73C33AFC0DF0BC22732", + "base": "ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D", "denomUnits": [ { "aliases": [ - "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", ], - "denom": "ibc/897289071C421B80054C3CF731AC83FC3074C8C497B6C73C33AFC0DF0BC22732", + "denom": "ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D", "exponent": 0, }, { - "denom": "takumi", + "denom": "wstETH", + "exponent": 18, + }, + ], + "description": "wstETH on Neutron", + "display": "wstETH", + "images": [ + { + "imageSync": { + "baseDenom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chainName": "ethereum", + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + }, + "name": "wstETH", + "symbol": "wstETH", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38", + "denomUnits": [ + { + "aliases": [ + "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", + ], + "denom": "ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38", + "exponent": 0, + }, + { + "denom": "sat", "exponent": 6, }, ], - "display": "takumi", + "description": "NBTC on Neutron", + "display": "sat", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/TAKUMI.png", + "imageSync": { + "baseDenom": "usat", + "chainName": "nomic", + }, + "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", "theme": { - "primaryColorHex": "#556867", + "primaryColorHex": "#8436e6", }, }, ], - "name": "Takumi Asano", - "symbol": "TAKUMI", + "logoURIs": { + "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", + }, + "name": "Nomic NBTC", + "symbol": "SAT", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "base_denom": "ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920", "chain_name": "neutron", "channel_id": "channel-49", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/0A66C248A1287719EAA1051781068430FBD6F392FE4CCAB6F9B4CF30025620DF", + "base": "ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D", "denomUnits": [ { "aliases": [ - "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", ], - "denom": "ibc/0A66C248A1287719EAA1051781068430FBD6F392FE4CCAB6F9B4CF30025620DF", + "denom": "ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D", "exponent": 0, }, { - "denom": "NBZ", + "denom": "dydx", + "exponent": 18, + }, + ], + "description": "DYDX on Neutron", + "display": "dydx", + "images": [ + { + "imageSync": { + "baseDenom": "adydx", + "chainName": "dydx", + }, + "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", + "theme": { + "primaryColorHex": "#21212f", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "DYDX", + "symbol": "DYDX", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E", + "coingeckoId": "newt", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + ], + "denom": "ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E", + "exponent": 0, + }, + { + "denom": "newt", "exponent": 6, }, ], - "description": "Ninja Blaze Token", - "display": "NBZ", + "description": "The cutest NEWT token on Neutron chain.", + "display": "newt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", "theme": { - "primaryColorHex": "#9890f9", + "primaryColorHex": "#16233d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", }, - "name": "Ninja Blaze Token", - "symbol": "NBZ", + "name": "Newt", + "symbol": "NEWT", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "base_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43114,50 +43442,49 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/EBBDD358B3E58FA5AD236DB63A89F0BBBF656EB43E0953EBFF84D7C090293DCA", - "coingeckoId": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "base": "ibc/540431A5BFED5015F277F57669350EB0AB378B4D8BE6C55B6721199096E0A401", + "coingeckoId": "astroport-fi", "denomUnits": [ { "aliases": [ - "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", ], - "denom": "ibc/EBBDD358B3E58FA5AD236DB63A89F0BBBF656EB43E0953EBFF84D7C090293DCA", + "denom": "ibc/540431A5BFED5015F277F57669350EB0AB378B4D8BE6C55B6721199096E0A401", "exponent": 0, }, { - "denom": "MARS", + "denom": "astro", "exponent": 6, }, ], - "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis.", - "display": "MARS", - "extendedDescription": "Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "astro", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", "theme": { - "primaryColorHex": "#ef4136", + "primaryColorHex": "#4056e9", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", }, - "name": "Mars Protocol token", + "name": "Astroport token", "socials": { - "twitter": "https://x.com/mars_protocol", - "website": "https://marsprotocol.io/", + "twitter": "https://twitter.com/astroport_fi", + "website": "https://astroport.fi/", }, - "symbol": "MARS", + "symbol": "ASTRO", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "base_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43167,45 +43494,43 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/ABC15D3B95C779D4B93B6D2085CA3418D63E0359A6ED4964282F3E64C40A79AA", - "coingeckoId": "drop-staked-atom", + "base": "ibc/BC9C49492EC40D00C8FD6097BEA6085679A7BCBC43C2CF070D41985BA4218BB0", "denomUnits": [ { "aliases": [ - "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", ], - "denom": "ibc/ABC15D3B95C779D4B93B6D2085CA3418D63E0359A6ED4964282F3E64C40A79AA", + "denom": "ibc/BC9C49492EC40D00C8FD6097BEA6085679A7BCBC43C2CF070D41985BA4218BB0", "exponent": 0, }, { - "denom": "dATOM", + "denom": "xASTRO", "exponent": 6, }, ], - "description": "Drop staked ATOM", - "display": "dATOM", - "extendedDescription": "Drop protocol token for the interchain liquidity", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "xASTRO", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", }, - "name": "dATOM", + "name": "Staked Astroport Token", "socials": { - "twitter": "https://x.com/Dropdotmoney", - "website": "https://www.drop.money/", + "twitter": "https://twitter.com/astroport_fi", + "website": "https://astroport.fi/", }, - "symbol": "dATOM", + "symbol": "xASTRO", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "base_denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43215,87 +43540,88 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/8EB8802F10B754ACB9F136C428D6A8BEF02B42D40EF9BB75ECA015EB54A4410C", + "base": "ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0", "denomUnits": [ { "aliases": [ - "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", ], - "denom": "ibc/8EB8802F10B754ACB9F136C428D6A8BEF02B42D40EF9BB75ECA015EB54A4410C", + "denom": "ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0", "exponent": 0, }, { - "denom": "SIN", + "denom": "astro.cw20", "exponent": 6, }, ], - "description": "SinGarden token", - "display": "SIN", + "description": "ASTRO.cw20 on Neutron", + "display": "astro.cw20", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", - "theme": { - "primaryColorHex": "#ebf0f4", + "imageSync": { + "baseDenom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "chainName": "terra2", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", }, - "name": "SIN", - "symbol": "SIN", + "name": "Astroport CW20 token", + "symbol": "ASTRO.cw20", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "base_denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "chain_name": "neutron", "channel_id": "channel-49", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/B7F39C9B16BBE7FF8A0BF7C7AC7B8D8B36F2B7A5F3072E426A613B67563A23CF", + "base": "ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0", "denomUnits": [ { "aliases": [ - "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", ], - "denom": "ibc/B7F39C9B16BBE7FF8A0BF7C7AC7B8D8B36F2B7A5F3072E426A613B67563A23CF", + "denom": "ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0", "exponent": 0, }, { - "denom": "GOP", + "denom": "corgi", "exponent": 6, }, ], - "description": "CryptoGopniks token", - "display": "GOP", + "description": "Baby Corgi is the real doggo of Neutron!", + "display": "corgi", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", "theme": { - "primaryColorHex": "#000000", + "primaryColorHex": "#fab442", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", }, - "name": "GOP", - "symbol": "GOP", + "name": "Baby Corgi", + "symbol": "CORGI", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + "base_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43305,49 +43631,42 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/A92F4187E3F9547FCABEB86021EFF52FAF7933298CCCA9333CEA8FB88F59D044", + "base": "ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236", "denomUnits": [ { "aliases": [ - "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", ], - "denom": "ibc/A92F4187E3F9547FCABEB86021EFF52FAF7933298CCCA9333CEA8FB88F59D044", + "denom": "ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236", "exponent": 0, }, { - "denom": "arena", + "denom": "circus", "exponent": 6, }, ], - "description": "The governance token of the Arena DAO", - "display": "arena", + "description": "clownmaxxed store of value", + "display": "circus", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", "theme": { - "circle": true, - "primaryColorHex": "#FF8000", + "primaryColorHex": "#242033", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", - }, - "name": "Arena Token", - "socials": { - "twitter": "https://x.com/ArenaDAO", - "website": "https://arenadao.org/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", }, - "symbol": "ARENA", + "name": "AtomEconomicZone69JaeKwonInu", + "symbol": "CIRCUS", "traces": [ { "chain": { "channel_id": "channel-136", }, "counterparty": { - "base_denom": "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + "base_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", "chain_name": "neutron", "channel_id": "channel-49", }, @@ -43357,46 +43676,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", + "base": "ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE", "denomUnits": [ { "aliases": [ - "ustake", + "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", ], - "denom": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", + "denom": "ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE", "exponent": 0, }, { - "denom": "stake", + "denom": "jimmy", "exponent": 6, }, ], - "description": "The permissioned staking asset for Noble Chain", - "display": "stake", + "description": "Jimmy Neutron Finance", + "display": "jimmy", "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", "theme": { - "primaryColorHex": "#a8bbfb", + "primaryColorHex": "#7d3c20", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", }, - "name": "Stake", - "symbol": "STAKE", + "name": "jimmy", + "symbol": "JIMMY", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-136", }, "counterparty": { - "base_denom": "ustake", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "chain_name": "neutron", + "channel_id": "channel-49", }, "type": "ibc", }, @@ -43404,46 +43721,44 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52", + "base": "ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A", "denomUnits": [ { "aliases": [ - "ufrienzies", + "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", ], - "denom": "ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52", + "denom": "ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A", "exponent": 0, }, { - "denom": "frienzies", + "denom": "bad", "exponent": 6, }, ], - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", - "display": "frienzies", + "description": "Baddest coin on Cosmos", + "display": "bad", "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/neutron/images/bad.png", "theme": { - "primaryColorHex": "#04041c", + "primaryColorHex": "#211a0d", }, }, ], "logoURIs": { - "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/neutron/images/bad.png", }, - "name": "Frienzies", - "symbol": "FRNZ", + "name": "Badcoin", + "symbol": "BAD", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-136", }, "counterparty": { - "base_denom": "ufrienzies", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "chain_name": "neutron", + "channel_id": "channel-49", }, "type": "ibc", }, @@ -43451,53 +43766,2561 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "sdk.coin", }, { - "base": "ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA", + "base": "ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E", "denomUnits": [ { "aliases": [ - "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", ], - "denom": "ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA", + "denom": "ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E", "exponent": 0, }, { - "aliases": [ - "ATOM", - ], - "denom": "atom", + "denom": "bitcosmos", "exponent": 6, }, ], - "description": "ATOM token on Noble", - "display": "atom", + "description": "BITCOSMOS", + "display": "bitcosmos", "images": [ { - "imageSync": { - "baseDenom": "uatom", - "chainName": "cosmoshub", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png", + "theme": { + "primaryColorHex": "#1b0847", }, - "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", + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png", + }, + "name": "Bitcosmos", + "symbol": "BTC", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907", + "denomUnits": [ + { + "aliases": [ + "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + ], + "denom": "ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907", + "exponent": 0, + }, + { + "denom": "wtf", + "exponent": 6, + }, + ], + "description": "What the Fuck", + "display": "wtf", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png", + "theme": { + "primaryColorHex": "#dcd5ab", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png", + }, + "name": "wtf", + "symbol": "WTF", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011", + "denomUnits": [ + { + "aliases": [ + "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + ], + "denom": "ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011", + "exponent": 0, + }, + { + "denom": "nls", + "exponent": 6, + }, + ], + "description": "NLS on Neutron", + "display": "nls", + "images": [ + { + "imageSync": { + "baseDenom": "unls", + "chainName": "nolus", + }, + "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", + "theme": { + "primaryColorHex": "#fc542c", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Nolus NLS", + "symbol": "NLS", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + ], + "denom": "ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE", + "exponent": 0, + }, + { + "denom": "goddard", + "exponent": 6, + }, + ], + "description": "A Mechanical Canine", + "display": "goddard", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", + "theme": { + "primaryColorHex": "#516b80", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", + }, + "name": "Goddard", + "symbol": "GODRD", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105", + "denomUnits": [ + { + "aliases": [ + "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + ], + "denom": "ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105", + "exponent": 0, + }, + { + "denom": "apollo", + "exponent": 6, + }, + ], + "description": "The deflationary utility token of the Apollo DAO project", + "display": "apollo", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + }, + "name": "Apollo DAO", + "socials": { + "twitter": "https://twitter.com/ApolloDAO", + "website": "https://apollo.farm/", + }, + "symbol": "APOLLO", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + ], + "denom": "ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC", + "exponent": 0, + }, + { + "denom": "newtroll", + "exponent": 6, + }, + ], + "description": "NEWTROLL", + "display": "newtroll", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + }, + "name": "Newtroll", + "symbol": "NTRL", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + ], + "denom": "ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F", + "exponent": 0, + }, + { + "denom": "retro", + "exponent": 6, + }, + ], + "description": "Retro Game", + "display": "retro", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", + }, + "name": "Retro", + "symbol": "RETRO", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + ], + "denom": "ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68", + "exponent": 0, + }, + { + "denom": "goddard", + "exponent": 6, + }, + ], + "description": "THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON", + "display": "goddard", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + }, + "name": "Goddard", + "symbol": "GODDARD", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1", + "denomUnits": [ + { + "aliases": [ + "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + ], + "denom": "ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1", + "exponent": 0, + }, + { + "denom": "WOSMO", + "exponent": 6, + }, + ], + "description": "The first memecoin on osmosis.", + "display": "WOSMO", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "theme": { + "primaryColorHex": "#edd5ee", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + }, + "name": "Wosmo", + "symbol": "WOSMO", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11", + "denomUnits": [ + { + "aliases": [ + "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + ], + "denom": "ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11", + "exponent": 0, + }, + { + "denom": "boy", + "exponent": 6, + }, + ], + "description": "Astro BOY", + "display": "boy", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png", + "theme": { + "primaryColorHex": "#333333", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png", + }, + "name": "boy", + "symbol": "BOY", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F", + "denomUnits": [ + { + "aliases": [ + "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + ], + "denom": "ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F", + "exponent": 0, + }, + { + "denom": "BADKID", + "exponent": 6, + }, + ], + "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.", + "display": "BADKID", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "theme": { + "primaryColorHex": "#57443f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + }, + "name": "Badkid", + "symbol": "BADKID", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + ], + "denom": "ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B", + "exponent": 0, + }, + { + "denom": "cartel", + "exponent": 6, + }, + ], + "description": "Reflections of cartel activity on Cosmos.", + "display": "cartel", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png", + "theme": { + "primaryColorHex": "#8c9098", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png", + }, + "name": "cartel", + "symbol": "CARTEL", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/1AE9B6C1221ECFEC1759B9D07211D59851F077F162D7FF6AFA342312F1F40905", + "denomUnits": [ + { + "aliases": [ + "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + ], + "denom": "ibc/1AE9B6C1221ECFEC1759B9D07211D59851F077F162D7FF6AFA342312F1F40905", + "exponent": 0, + }, + { + "denom": "ATOM1KLFG", + "exponent": 6, + }, + ], + "description": "$ATOM to $1,000 LFG!!", + "display": "ATOM1KLFG", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "theme": { + "primaryColorHex": "#040404", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + }, + "name": "ATOM1KLFG", + "symbol": "ATOM1KLFG", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/BF1E7936725E67E723805B780B413454971F9D2AE4E2F4F8267C9556431B6491", + "coingeckoId": "usd-coin", + "denomUnits": [ + { + "aliases": [ + "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + ], + "denom": "ibc/BF1E7936725E67E723805B780B413454971F9D2AE4E2F4F8267C9556431B6491", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "USD Coin on Neutron", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "noble", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#2775CA", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, + "name": "USD Coin", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/2C5697C2E696BFF8C45BD6E0983436D6A007AEAB53FA8F1054E4BEDC9ADE0272", + "denomUnits": [ + { + "aliases": [ + "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + ], + "denom": "ibc/2C5697C2E696BFF8C45BD6E0983436D6A007AEAB53FA8F1054E4BEDC9ADE0272", + "exponent": 0, + }, + { + "denom": "WEIRD", + "exponent": 6, + }, + ], + "description": "WEIRD FRIENDS token", + "display": "WEIRD", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + "theme": { + "primaryColorHex": "#ebf0f4", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + }, + "name": "WEIRD", + "symbol": "WEIRD", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/897289071C421B80054C3CF731AC83FC3074C8C497B6C73C33AFC0DF0BC22732", + "denomUnits": [ + { + "aliases": [ + "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + ], + "denom": "ibc/897289071C421B80054C3CF731AC83FC3074C8C497B6C73C33AFC0DF0BC22732", + "exponent": 0, + }, + { + "denom": "takumi", + "exponent": 6, + }, + ], + "display": "takumi", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/TAKUMI.png", + "theme": { + "primaryColorHex": "#556867", + }, + }, + ], + "name": "Takumi Asano", + "symbol": "TAKUMI", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/0A66C248A1287719EAA1051781068430FBD6F392FE4CCAB6F9B4CF30025620DF", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + ], + "denom": "ibc/0A66C248A1287719EAA1051781068430FBD6F392FE4CCAB6F9B4CF30025620DF", + "exponent": 0, + }, + { + "denom": "NBZ", + "exponent": 6, + }, + ], + "description": "Ninja Blaze Token", + "display": "NBZ", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png", + "theme": { + "primaryColorHex": "#9890f9", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/NBZ.png", + }, + "name": "Ninja Blaze Token", + "symbol": "NBZ", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/EBBDD358B3E58FA5AD236DB63A89F0BBBF656EB43E0953EBFF84D7C090293DCA", + "coingeckoId": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + ], + "denom": "ibc/EBBDD358B3E58FA5AD236DB63A89F0BBBF656EB43E0953EBFF84D7C090293DCA", + "exponent": 0, + }, + { + "denom": "MARS", + "exponent": 6, + }, + ], + "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis.", + "display": "MARS", + "extendedDescription": "Lend, borrow and earn with an autonomous credit protocol in the Cosmos universe. Open to all, closed to none.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "theme": { + "primaryColorHex": "#ef4136", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + }, + "name": "Mars Protocol token", + "socials": { + "twitter": "https://x.com/mars_protocol", + "website": "https://marsprotocol.io/", + }, + "symbol": "MARS", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/ABC15D3B95C779D4B93B6D2085CA3418D63E0359A6ED4964282F3E64C40A79AA", + "coingeckoId": "drop-staked-atom", + "denomUnits": [ + { + "aliases": [ + "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + ], + "denom": "ibc/ABC15D3B95C779D4B93B6D2085CA3418D63E0359A6ED4964282F3E64C40A79AA", + "exponent": 0, + }, + { + "denom": "dATOM", + "exponent": 6, + }, + ], + "description": "Drop staked ATOM", + "display": "dATOM", + "extendedDescription": "Drop protocol token for the interchain liquidity", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/dATOM.svg", + }, + "name": "dATOM", + "socials": { + "twitter": "https://x.com/Dropdotmoney", + "website": "https://www.drop.money/", + }, + "symbol": "dATOM", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/8EB8802F10B754ACB9F136C428D6A8BEF02B42D40EF9BB75ECA015EB54A4410C", + "denomUnits": [ + { + "aliases": [ + "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + ], + "denom": "ibc/8EB8802F10B754ACB9F136C428D6A8BEF02B42D40EF9BB75ECA015EB54A4410C", + "exponent": 0, + }, + { + "denom": "SIN", + "exponent": 6, + }, + ], + "description": "SinGarden token", + "display": "SIN", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", + "theme": { + "primaryColorHex": "#ebf0f4", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", + }, + "name": "SIN", + "symbol": "SIN", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/B7F39C9B16BBE7FF8A0BF7C7AC7B8D8B36F2B7A5F3072E426A613B67563A23CF", + "denomUnits": [ + { + "aliases": [ + "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + ], + "denom": "ibc/B7F39C9B16BBE7FF8A0BF7C7AC7B8D8B36F2B7A5F3072E426A613B67563A23CF", + "exponent": 0, + }, + { + "denom": "GOP", + "exponent": 6, + }, + ], + "description": "CryptoGopniks token", + "display": "GOP", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png", + "theme": { + "primaryColorHex": "#000000", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/gop.png", + }, + "name": "GOP", + "symbol": "GOP", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/A92F4187E3F9547FCABEB86021EFF52FAF7933298CCCA9333CEA8FB88F59D044", + "denomUnits": [ + { + "aliases": [ + "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + ], + "denom": "ibc/A92F4187E3F9547FCABEB86021EFF52FAF7933298CCCA9333CEA8FB88F59D044", + "exponent": 0, + }, + { + "denom": "arena", + "exponent": 6, + }, + ], + "description": "The governance token of the Arena DAO", + "display": "arena", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", + "theme": { + "circle": true, + "primaryColorHex": "#FF8000", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/arena_dao.svg", + }, + "name": "Arena Token", + "socials": { + "twitter": "https://x.com/ArenaDAO", + "website": "https://arenadao.org/", + }, + "symbol": "ARENA", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", + "denomUnits": [ + { + "aliases": [ + "ustake", + ], + "denom": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", + "exponent": 0, + }, + { + "denom": "stake", + "exponent": 6, + }, + ], + "description": "The permissioned staking asset for Noble Chain", + "display": "stake", + "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", + "theme": { + "primaryColorHex": "#a8bbfb", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Stake", + "symbol": "STAKE", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "ustake", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52", + "denomUnits": [ + { + "aliases": [ + "ufrienzies", + ], + "denom": "ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52", + "exponent": 0, + }, + { + "denom": "frienzies", + "exponent": 6, + }, + ], + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "display": "frienzies", + "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", + "theme": { + "primaryColorHex": "#04041c", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Frienzies", + "symbol": "FRNZ", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "ufrienzies", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA", + "denomUnits": [ + { + "aliases": [ + "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + ], + "denom": "ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA", + "exponent": 0, + }, + { + "aliases": [ + "ATOM", + ], + "denom": "atom", + "exponent": 6, + }, + ], + "description": "ATOM token on Noble", + "display": "atom", + "images": [ + { + "imageSync": { + "baseDenom": "uatom", + "chainName": "cosmoshub", + }, + "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", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Atom Staking Coin", + "symbol": "ATOM", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "coingeckoId": "usd-coin", + "denomUnits": [ + { + "aliases": [ + "uusdc", + ], + "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "USD Coin", + "display": "usdc", + "images": [ + { + "imageSync": { + "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "theme": { + "circle": true, + "primaryColorHex": "#2775CA", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, + "name": "USDC", + "symbol": "USDC", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "uusdc", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/AC942F8AADBB1E5986991F465322BE5B18F2234DE7F8C9F6EDAFF3D740B006B3", + "coingeckoId": "ondo-us-dollar-yield", + "denomUnits": [ + { + "aliases": [ + "ausdy", + ], + "denom": "ibc/AC942F8AADBB1E5986991F465322BE5B18F2234DE7F8C9F6EDAFF3D740B006B3", + "exponent": 0, + }, + { + "denom": "usdy", + "exponent": 18, + }, + ], + "description": "Ondo US Dollar Yield", + "display": "usdy", + "extendedDescription": "USDY is a tokenized note secured by short-term US Treasuries and bank demand deposits. USDY is accessible to non-US individual and institutional investors and is transferable onchain 40-50 days after purchase.", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", + "theme": { + "primaryColorHex": "#142c5c", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", + }, + "name": "Ondo US Dollar Yield", + "socials": { + "twitter": "https://x.com/OndoFinance", + "website": "https://ondo.finance/usdy", + }, + "symbol": "USDY", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "ausdy", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/374186877D22168D991C8CE86E0858E93FDD3F8C611A5AF99260977DC424EF4A", + "denomUnits": [ + { + "aliases": [ + "ueure", + ], + "denom": "ibc/374186877D22168D991C8CE86E0858E93FDD3F8C611A5AF99260977DC424EF4A", + "exponent": 0, + }, + { + "denom": "eure", + "exponent": 6, + }, + ], + "description": "EURe is a Euro-backed stablecoin issued by Monerium on Noble.", + "display": "eure", + "images": [ + { + "imageSync": { + "baseDenom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", + "theme": { + "backgroundColorHex": "#FFFFFF", + "circle": true, + "primaryColorHex": "#0095D7", + }, + }, + ], + "name": "Monerium EUR emoney", + "symbol": "EURe", + "traces": [ + { + "chain": { + "channel_id": "channel-132", + }, + "counterparty": { + "base_denom": "ueure", + "chain_name": "noble", + "channel_id": "channel-36", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", + "coingeckoId": "osmosis", + "denomUnits": [ + { + "aliases": [ + "uosmo", + ], + "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", + "exponent": 0, + }, + { + "denom": "osmo", + "exponent": 6, + }, + ], + "description": "The native token of Osmosis", + "display": "osmo", + "extendedDescription": "Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage. + +As a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers. + +Osmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.", + "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", + "theme": { + "primaryColorHex": "#760dbb", + }, + }, + ], + "keywords": [ + "dex", + "staking", + ], + "logoURIs": { + "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", + }, + "name": "Osmosis", + "socials": { + "twitter": "https://twitter.com/osmosiszone", + "website": "https://osmosis.zone", + }, + "symbol": "OSMO", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "uosmo", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389", + "coingeckoId": "ion", + "denomUnits": [ + { + "aliases": [ + "uion", + ], + "denom": "ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389", + "exponent": 0, + }, + { + "denom": "ion", + "exponent": 6, + }, + ], + "description": "ION is the second native token of Osmosis.", + "display": "ion", + "extendedDescription": "ION DAO is governed by ION holders. ION is the second native token of Osmosis, the biggest DEX in Cosmos. The origin of ION was a meme coin, but ION DAO has been trying to find ways to add values on ION.", + "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", + "theme": { + "primaryColorHex": "#4453c7", + }, + }, + ], + "keywords": [ + "memecoin", + "defi", + ], + "logoURIs": { + "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", + }, + "name": "Ion DAO", + "socials": { + "twitter": "https://twitter.com/_IONDAO", + "website": "https://ion.wtf", + }, + "symbol": "ION", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "uion", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "sdk.coin", + }, + { + "base": "ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1", + "denomUnits": [ + { + "aliases": [ + "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + ], + "denom": "ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1", + "exponent": 0, + }, + { + "denom": "usdc", + "exponent": 6, + }, + ], + "description": "Circle's stablecoin on Axelar", + "display": "usdc", + "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", + "theme": { + "primaryColorHex": "#2474cb", + }, + }, + { + "imageSync": { + "baseDenom": "uusdc", + "chainName": "axelar", + }, + "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", + "theme": { + "primaryColorHex": "#2474cc", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "USDC (Ethereum via Axelar)", + "symbol": "USDC.eth.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543", + "denomUnits": [ + { + "aliases": [ + "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + ], + "denom": "ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543", + "exponent": 0, + }, + { + "denom": "weth", + "exponent": 18, + }, + ], + "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. + +ETH, 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.", + "display": "weth", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.svg", + }, + { + "imageSync": { + "baseDenom": "weth-wei", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "theme": { + "primaryColorHex": "#3a3444", + }, + }, + { + "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", + "theme": { + "primaryColorHex": "#303030", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.svg", + }, + "name": "Ethereum (Axelar)", + "symbol": "ETH.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A", + "denomUnits": [ + { + "aliases": [ + "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + ], + "denom": "ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A", + "exponent": 0, + }, + { + "denom": "wbtc", + "exponent": 8, + }, + ], + "description": "Wrapped Bitcoin on Axelar", + "display": "wbtc", + "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", + "theme": { + "primaryColorHex": "#312b3a", + }, + }, + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Wrapped Bitcoin (Ethereum via Axelar)", + "symbol": "WBTC.eth.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A", + "denomUnits": [ + { + "aliases": [ + "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + ], + "denom": "ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A", + "exponent": 0, + }, + { + "denom": "usdt", + "exponent": 6, + }, + ], + "description": "Tether's USD stablecoin on Axelar", + "display": "usdt", + "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg", + "theme": { + "primaryColorHex": "#049393", + }, + }, + { + "imageSync": { + "baseDenom": "uusdt", + "chainName": "axelar", + }, + "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", + "theme": { + "primaryColorHex": "#54ac94", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg", + }, + "name": "Tether USD (Ethereum via Axelar)", + "symbol": "USDT.eth.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B", + "denomUnits": [ + { + "aliases": [ + "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + ], + "denom": "ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B", + "exponent": 0, + }, + { + "denom": "dai", + "exponent": 18, + }, + ], + "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", + "display": "dai", + "images": [ + { + "imageSync": { + "baseDenom": "0x6b175474e89094c44da98b954eedeac495271d0f", + "chainName": "ethereum", + }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + }, + "name": "Dai Stablecoin", + "symbol": "DAI", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158", + "denomUnits": [ + { + "aliases": [ + "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + ], + "denom": "ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158", + "exponent": 0, + }, + { + "denom": "busd", + "exponent": 18, + }, + ], + "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.", + "display": "busd", + "images": [ + { + "imageSync": { + "baseDenom": "0x4fabb145d64652a948d72533023f6e7a623c7c53", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#f3bb0c", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Binance USD", + "symbol": "BUSD", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C", + "denomUnits": [ + { + "aliases": [ + "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + ], + "denom": "ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C", + "exponent": 0, + }, + { + "denom": "atom", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of the Cosmos Hub.", + "display": "atom", + "images": [ + { + "imageSync": { + "baseDenom": "uatom", + "chainName": "cosmoshub", + }, + "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", + "theme": { + "primaryColorHex": "#272d45", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Cosmos Hub", + "symbol": "ATOM", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8", + "denomUnits": [ + { + "aliases": [ + "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + ], + "denom": "ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8", + "exponent": 0, + }, + { + "denom": "cro", + "exponent": 8, + }, + ], + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "display": "cro", + "images": [ + { + "imageSync": { + "baseDenom": "basecro", + "chainName": "cryptoorgchain", + }, + "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", + "theme": { + "primaryColorHex": "#0c2c71", + }, + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + }, + "name": "Cronos POS Chain", + "symbol": "CRO", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409", + "denomUnits": [ + { + "aliases": [ + "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + ], + "denom": "ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409", + "exponent": 0, + }, + { + "denom": "wbnb", + "exponent": 18, + }, + ], + "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", + "display": "wbnb", + "images": [ + { + "imageSync": { + "baseDenom": "wei", + "chainName": "binancesmartchain", + }, + "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", + "theme": { + "primaryColorHex": "#f3bb0c", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Binance Coin", + "symbol": "BNB", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D", + "denomUnits": [ + { + "aliases": [ + "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + ], + "denom": "ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D", + "exponent": 0, + }, + { + "denom": "wmatic", + "exponent": 18, + }, + ], + "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.", + "display": "wmatic", + "images": [ + { + "imageSync": { + "baseDenom": "wei", + "chainName": "polygon", + }, + "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", + "theme": { + "primaryColorHex": "#8444e4", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Polygon", + "symbol": "POL", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3", + "denomUnits": [ + { + "aliases": [ + "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + ], + "denom": "ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3", + "exponent": 0, + }, + { + "denom": "avax", + "exponent": 18, + }, + ], + "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.", + "display": "avax", + "images": [ + { + "imageSync": { + "baseDenom": "wei", + "chainName": "avalanche", + }, + "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", + "theme": { + "primaryColorHex": "#eb4444", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Avalanche", + "symbol": "AVAX", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB", + "denomUnits": [ + { + "aliases": [ + "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + ], + "denom": "ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB", + "exponent": 0, + }, + { + "aliases": [ + "milliluna", + ], + "denom": "mluna", + "exponent": 3, + }, + { + "aliases": [ + "lunc", + ], + "denom": "luna", + "exponent": 6, + }, + ], + "description": "The native staking token of Terra Classic.", + "display": "luna", + "images": [ + { + "imageSync": { + "baseDenom": "uluna", + "chainName": "terra", + }, + "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", + "theme": { + "primaryColorHex": "#fcdb5b", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Luna Classic", + "symbol": "LUNC", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA", + "denomUnits": [ + { + "aliases": [ + "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + ], + "denom": "ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA", + "exponent": 0, + }, + { + "denom": "juno", + "exponent": 6, + }, + ], + "description": "The native token of JUNO Chain", + "display": "juno", + "images": [ + { + "imageSync": { + "baseDenom": "ujuno", + "chainName": "juno", + }, + "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", + "theme": { + "primaryColorHex": "#fa7b7b", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Juno", + "symbol": "JUNO", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888", + "denomUnits": [ + { + "aliases": [ + "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + ], + "denom": "ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888", + "exponent": 0, + }, + { + "denom": "dot", + "exponent": 10, + }, + ], + "description": "Wrapped Polkadot on Axelar", + "display": "dot", + "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg", + }, + { + "imageSync": { + "baseDenom": "dot-planck", + "chainName": "axelar", + }, + "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", + "theme": { + "primaryColorHex": "#e4047c", + }, + }, + ], + "logoURIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg", + }, + "name": "Polkadot (Moonbeam via Axelar)", + "symbol": "DOT.glmr.axl", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5", + "denomUnits": [ + { + "aliases": [ + "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + ], + "denom": "ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5", + "exponent": 0, + }, + { + "denom": "evmos", + "exponent": 18, + }, + ], + "description": "The native EVM, governance and staking token of the Evmos Hub", + "display": "evmos", + "images": [ + { + "imageSync": { + "baseDenom": "aevmos", + "chainName": "evmos", + }, + "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", + "theme": { + "primaryColorHex": "#ec4c34", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Evmos", + "symbol": "EVMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480", + "denomUnits": [ + { + "aliases": [ + "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + ], + "denom": "ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480", + "exponent": 0, + }, + { + "denom": "kava", + "exponent": 6, + }, + ], + "description": "The native staking and governance token of Kava", + "display": "kava", + "images": [ + { + "imageSync": { + "baseDenom": "ukava", + "chainName": "kava", + }, + "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", + "theme": { + "primaryColorHex": "#e64942", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Kava", + "symbol": "KAVA", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77", + "denomUnits": [ + { + "aliases": [ + "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + ], + "denom": "ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77", + "exponent": 0, + }, + { + "denom": "scrt", + "exponent": 6, + }, + ], + "description": "The native token of Secret Network", + "display": "scrt", + "images": [ + { + "imageSync": { + "baseDenom": "uscrt", + "chainName": "secretnetwork", + }, + "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", + "theme": { + "primaryColorHex": "#040404", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Secret Network", + "symbol": "SCRT", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7", + "denomUnits": [ + { + "aliases": [ + "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + ], + "denom": "ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7", + "exponent": 0, + }, + { + "aliases": [ + "milliusd", + ], + "denom": "musd", + "exponent": 3, + }, + { + "aliases": [ + "ustc", + ], + "denom": "ust", + "exponent": 6, + }, + ], + "description": "The USD stablecoin of Terra Classic.", + "display": "ust", + "images": [ + { + "imageSync": { + "baseDenom": "uusd", + "chainName": "terra", + }, + "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", + "theme": { + "primaryColorHex": "#5493f2", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "TerraClassicUSD", + "symbol": "USTC", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE", + "denomUnits": [ + { + "aliases": [ + "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + ], + "denom": "ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE", + "exponent": 0, + }, + { + "denom": "stars", + "exponent": 6, + }, + ], + "description": "The native token of Stargaze", + "display": "stars", + "images": [ + { + "imageSync": { + "baseDenom": "ustars", + "chainName": "stargaze", + }, + "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", + "theme": { + "primaryColorHex": "#db2777", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Stargaze", + "symbol": "STARS", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276", + "denomUnits": [ + { + "aliases": [ + "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + ], + "denom": "ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276", + "exponent": 0, + }, + { + "denom": "huahua", + "exponent": 6, + }, + ], + "description": "The native token of Chihuahua Chain", + "display": "huahua", + "images": [ + { + "imageSync": { + "baseDenom": "uhuahua", + "chainName": "chihuahua", + }, + "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", + "theme": { + "primaryColorHex": "#343434", + }, + }, + ], + "logoURIs": { + "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", + }, + "name": "Chihuahua", + "symbol": "HUAHUA", + "traces": [ + { + "chain": { + "channel_id": "channel-6", + }, + "counterparty": { + "base_denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "chain_name": "osmosis", + "channel_id": "channel-4", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, + { + "base": "ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6", + "denomUnits": [ + { + "aliases": [ + "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + ], + "denom": "ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6", + "exponent": 0, + }, + { + "denom": "xprt", + "exponent": 6, + }, + ], + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "display": "xprt", + "images": [ + { + "imageSync": { + "baseDenom": "uxprt", + "chainName": "persistence", + }, + "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", "theme": { - "primaryColorHex": "#272d45", + "backgroundColorHex": "#000000", + "circle": true, + "primaryColorHex": "#E59636", }, }, ], "logoURIs": { - "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/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg", }, - "name": "Atom Staking Coin", - "symbol": "ATOM", + "name": "Persistence", + "symbol": "XPRT", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, @@ -43505,328 +46328,303 @@ The Injective ecosystem is powered by its native token, INJ, used for governance "typeAsset": "ics20", }, { - "base": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", - "coingeckoId": "usd-coin", + "base": "ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873", "denomUnits": [ { "aliases": [ - "uusdc", + "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", ], - "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "denom": "ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873", "exponent": 0, }, { - "denom": "usdc", - "exponent": 6, + "denom": "pstake", + "exponent": 18, }, ], - "description": "USD Coin", - "display": "usdc", + "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.", + "display": "pstake", "images": [ { "imageSync": { - "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "baseDenom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#050505", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", }, - "name": "USDC", - "symbol": "USDC", + "name": "pSTAKE Finance", + "symbol": "PSTAKE", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uusdc", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/AC942F8AADBB1E5986991F465322BE5B18F2234DE7F8C9F6EDAFF3D740B006B3", - "coingeckoId": "ondo-us-dollar-yield", + "base": "ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2", "denomUnits": [ { "aliases": [ - "ausdy", + "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", ], - "denom": "ibc/AC942F8AADBB1E5986991F465322BE5B18F2234DE7F8C9F6EDAFF3D740B006B3", + "denom": "ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2", "exponent": 0, }, { - "denom": "usdy", - "exponent": 18, + "denom": "akt", + "exponent": 6, }, ], - "description": "Ondo US Dollar Yield", - "display": "usdy", - "extendedDescription": "USDY is a tokenized note secured by short-term US Treasuries and bank demand deposits. USDY is accessible to non-US individual and institutional investors and is transferable onchain 40-50 days after purchase.", + "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.", + "display": "akt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", + "imageSync": { + "baseDenom": "uakt", + "chainName": "akash", + }, + "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", "theme": { - "primaryColorHex": "#142c5c", + "primaryColorHex": "#bc342c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", - }, - "name": "Ondo US Dollar Yield", - "socials": { - "twitter": "https://x.com/OndoFinance", - "website": "https://ondo.finance/usdy", + "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", }, - "symbol": "USDY", + "name": "Akash", + "symbol": "AKT", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ausdy", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/374186877D22168D991C8CE86E0858E93FDD3F8C611A5AF99260977DC424EF4A", + "base": "ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423", "denomUnits": [ { "aliases": [ - "ueure", + "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", ], - "denom": "ibc/374186877D22168D991C8CE86E0858E93FDD3F8C611A5AF99260977DC424EF4A", + "denom": "ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423", "exponent": 0, }, { - "denom": "eure", + "denom": "regen", "exponent": 6, }, ], - "description": "EURe is a Euro-backed stablecoin issued by Monerium on Noble.", - "display": "eure", + "description": "REGEN coin is the token for the Regen Network Platform", + "display": "regen", "images": [ { "imageSync": { - "baseDenom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", - "chainName": "ethereum", + "baseDenom": "uregen", + "chainName": "regen", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.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", "theme": { - "backgroundColorHex": "#FFFFFF", - "circle": true, - "primaryColorHex": "#0095D7", + "primaryColorHex": "#56b790", }, }, ], - "name": "Monerium EUR emoney", - "symbol": "EURe", + "logoURIs": { + "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", + }, + "name": "Regen", + "symbol": "REGEN", "traces": [ { "chain": { - "channel_id": "channel-132", + "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ueure", - "chain_name": "noble", - "channel_id": "channel-36", + "base_denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "chain_name": "osmosis", + "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", - "coingeckoId": "osmosis", + "base": "ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B", "denomUnits": [ { "aliases": [ - "uosmo", + "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", ], - "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", + "denom": "ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B", "exponent": 0, }, { - "denom": "osmo", + "denom": "dvpn", "exponent": 6, }, ], - "description": "The native token of Osmosis", - "display": "osmo", - "extendedDescription": "Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage. - -As a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers. - -Osmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.", + "description": "DVPN is the native token of the Sentinel Hub.", + "display": "dvpn", "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", + "imageSync": { + "baseDenom": "udvpn", + "chainName": "sentinel", + }, + "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", "theme": { - "primaryColorHex": "#760dbb", + "primaryColorHex": "#10a7ef", }, }, ], - "keywords": [ - "dex", - "staking", - ], "logoURIs": { - "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", - }, - "name": "Osmosis", - "socials": { - "twitter": "https://twitter.com/osmosiszone", - "website": "https://osmosis.zone", + "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", }, - "symbol": "OSMO", + "name": "Sentinel", + "symbol": "DVPN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uosmo", + "base_denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389", - "coingeckoId": "ion", + "base": "ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE", "denomUnits": [ { "aliases": [ - "uion", + "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", ], - "denom": "ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389", + "denom": "ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE", "exponent": 0, }, { - "denom": "ion", + "denom": "iris", "exponent": 6, }, ], - "description": "ION is the second native token of Osmosis.", - "display": "ion", - "extendedDescription": "ION DAO is governed by ION holders. ION is the second native token of Osmosis, the biggest DEX in Cosmos. The origin of ION was a meme coin, but ION DAO has been trying to find ways to add values on ION.", + "description": "The IRIS token is the native governance token for the IrisNet chain.", + "display": "iris", "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", + "imageSync": { + "baseDenom": "uiris", + "chainName": "irisnet", + }, + "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", "theme": { - "primaryColorHex": "#4453c7", + "primaryColorHex": "#5664ad", }, }, ], - "keywords": [ - "memecoin", - "defi", - ], "logoURIs": { - "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", - }, - "name": "Ion DAO", - "socials": { - "twitter": "https://twitter.com/_IONDAO", - "website": "https://ion.wtf", + "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", }, - "symbol": "ION", + "name": "IRISnet", + "symbol": "IRIS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "uion", + "base_denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1", + "base": "ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954", "denomUnits": [ { "aliases": [ - "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", ], - "denom": "ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1", + "denom": "ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954", "exponent": 0, }, { - "denom": "usdc", + "denom": "iov", "exponent": 6, }, ], - "description": "Circle's stablecoin on Axelar", - "display": "usdc", + "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", + "display": "iov", "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", - "theme": { - "primaryColorHex": "#2474cb", - }, - }, { "imageSync": { - "baseDenom": "uusdc", - "chainName": "axelar", + "baseDenom": "uiov", + "chainName": "starname", }, - "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/starname/images/iov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg", "theme": { - "primaryColorHex": "#2474cc", + "primaryColorHex": "#5c64b4", }, }, ], "logoURIs": { - "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/starname/images/iov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg", }, - "name": "USDC (Ethereum via Axelar)", - "symbol": "USDC.eth.axl", + "name": "Starname", + "symbol": "IOV", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "base_denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -43836,60 +46634,48 @@ Osmosis is bringing the full centralized exchange experience to the decentralize "typeAsset": "ics20", }, { - "base": "ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543", + "base": "ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358", "denomUnits": [ { "aliases": [ - "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", ], - "denom": "ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543", + "denom": "ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358", "exponent": 0, }, { - "denom": "weth", - "exponent": 18, + "denom": "ngm", + "exponent": 6, }, ], - "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. - -ETH, 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.", - "display": "weth", + "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.", + "display": "ngm", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.svg", - }, { "imageSync": { - "baseDenom": "weth-wei", - "chainName": "axelar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "theme": { - "primaryColorHex": "#3a3444", + "baseDenom": "ungm", + "chainName": "emoney", }, - }, - { - "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", + "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", "theme": { - "primaryColorHex": "#303030", + "primaryColorHex": "#caf2ea", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.axl.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", }, - "name": "Ethereum (Axelar)", - "symbol": "ETH.axl", + "name": "e-Money", + "symbol": "NGM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "base_denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -43899,54 +46685,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A", + "base": "ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935", "denomUnits": [ { "aliases": [ - "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", ], - "denom": "ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A", + "denom": "ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935", "exponent": 0, }, { - "denom": "wbtc", - "exponent": 8, + "denom": "eur", + "exponent": 6, }, ], - "description": "Wrapped Bitcoin on Axelar", - "display": "wbtc", + "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", + "display": "eur", "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", - "theme": { - "primaryColorHex": "#312b3a", - }, - }, { "imageSync": { - "baseDenom": "wbtc-satoshi", - "chainName": "axelar", + "baseDenom": "eeur", + "chainName": "emoney", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "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", "theme": { - "primaryColorHex": "#41394d", + "primaryColorHex": "#f4c808", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Wrapped Bitcoin (Ethereum via Axelar)", - "symbol": "WBTC.eth.axl", + "name": "e-Money EUR", + "symbol": "EEUR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "base_denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -43956,55 +46736,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A", + "base": "ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1", "denomUnits": [ { "aliases": [ - "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", ], - "denom": "ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A", + "denom": "ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1", "exponent": 0, }, { - "denom": "usdt", - "exponent": 6, + "denom": "like", + "exponent": 9, }, ], - "description": "Tether's USD stablecoin on Axelar", - "display": "usdt", + "description": "LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.", + "display": "like", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg", - "theme": { - "primaryColorHex": "#049393", - }, - }, { "imageSync": { - "baseDenom": "uusdt", - "chainName": "axelar", + "baseDenom": "nanolike", + "chainName": "likecoin", }, - "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", + "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", "theme": { - "primaryColorHex": "#54ac94", + "primaryColorHex": "#2d656c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.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", }, - "name": "Tether USD (Ethereum via Axelar)", - "symbol": "USDT.eth.axl", + "name": "LikeCoin", + "symbol": "LIKE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "base_denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44014,43 +46787,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B", + "base": "ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752", "denomUnits": [ { "aliases": [ - "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", ], - "denom": "ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B", + "denom": "ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752", "exponent": 0, }, { - "denom": "dai", - "exponent": 18, + "denom": "ixo", + "exponent": 6, }, ], - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "display": "dai", + "description": "The native token of IXO Chain", + "display": "ixo", "images": [ { "imageSync": { - "baseDenom": "0x6b175474e89094c44da98b954eedeac495271d0f", - "chainName": "ethereum", + "baseDenom": "uixo", + "chainName": "impacthub", + }, + "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", + "theme": { + "primaryColorHex": "#2c4484", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.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", }, - "name": "Dai Stablecoin", - "symbol": "DAI", + "name": "Impact Hub", + "symbol": "IXO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "base_denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44060,48 +46838,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158", + "base": "ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA", "denomUnits": [ { "aliases": [ - "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", ], - "denom": "ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158", + "denom": "ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA", "exponent": 0, }, { - "denom": "busd", - "exponent": 18, + "denom": "bcna", + "exponent": 6, }, ], - "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.", - "display": "busd", + "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.", + "display": "bcna", "images": [ { "imageSync": { - "baseDenom": "0x4fabb145d64652a948d72533023f6e7a623c7c53", - "chainName": "ethereum", + "baseDenom": "ubcna", + "chainName": "bitcanna", }, - "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", + "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", "theme": { - "primaryColorHex": "#f3bb0c", + "primaryColorHex": "#3cc494", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Binance USD", - "symbol": "BUSD", + "name": "BitCanna", + "symbol": "BCNA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "base_denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44111,48 +46889,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C", + "base": "ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71", "denomUnits": [ { "aliases": [ - "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", ], - "denom": "ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C", + "denom": "ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71", "exponent": 0, }, { - "denom": "atom", + "denom": "btsg", "exponent": 6, }, ], - "description": "The native staking and governance token of the Cosmos Hub.", - "display": "atom", + "description": "BitSong Native Token", + "display": "btsg", "images": [ { "imageSync": { - "baseDenom": "uatom", - "chainName": "cosmoshub", + "baseDenom": "ubtsg", + "chainName": "bitsong", }, - "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/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg", "theme": { - "primaryColorHex": "#272d45", + "primaryColorHex": "#c8307f", }, }, ], "logoURIs": { - "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/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg", }, - "name": "Cosmos Hub", - "symbol": "ATOM", + "name": "BitSong", + "symbol": "BTSG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "base_denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44162,49 +46940,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8", + "base": "ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A", "denomUnits": [ { "aliases": [ - "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", ], - "denom": "ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8", + "denom": "ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A", "exponent": 0, }, { - "denom": "cro", - "exponent": 8, + "denom": "xki", + "exponent": 6, }, ], - "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", - "display": "cro", + "description": "The native token of Ki Chain", + "display": "xki", "images": [ { "imageSync": { - "baseDenom": "basecro", - "chainName": "cryptoorgchain", + "baseDenom": "uxki", + "chainName": "kichain", }, - "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/kichain/images/xki.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg", "theme": { - "primaryColorHex": "#0c2c71", + "primaryColorHex": "#1c04fc", }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.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", }, - "name": "Cronos POS Chain", - "symbol": "CRO", + "name": "Ki", + "symbol": "XKI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "base_denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44214,48 +46991,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409", + "base": "ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634", "denomUnits": [ { "aliases": [ - "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", ], - "denom": "ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409", + "denom": "ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634", "exponent": 0, }, { - "denom": "wbnb", - "exponent": 18, + "denom": "med", + "exponent": 6, }, ], - "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", - "display": "wbnb", + "description": "Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem", + "display": "med", "images": [ { "imageSync": { - "baseDenom": "wei", - "chainName": "binancesmartchain", + "baseDenom": "umed", + "chainName": "panacea", }, - "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/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg", "theme": { - "primaryColorHex": "#f3bb0c", + "primaryColorHex": "#2474ec", }, }, ], "logoURIs": { - "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/panacea/images/med.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg", }, - "name": "Binance Coin", - "symbol": "BNB", + "name": "Medibloc", + "symbol": "MED", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "base_denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44265,48 +47042,44 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D", + "base": "ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22", "denomUnits": [ { "aliases": [ - "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", ], - "denom": "ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D", + "denom": "ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22", "exponent": 0, }, - { - "denom": "wmatic", - "exponent": 18, - }, ], - "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.", - "display": "wmatic", + "description": "The staking token of Bostrom", + "display": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", "images": [ { "imageSync": { - "baseDenom": "wei", - "chainName": "polygon", + "baseDenom": "boot", + "chainName": "bostrom", }, - "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/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg", "theme": { - "primaryColorHex": "#8444e4", + "primaryColorHex": "#4cea4e", }, }, ], "logoURIs": { - "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/bostrom/images/boot.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg", }, - "name": "Polygon", - "symbol": "MATIC", + "name": "bostrom", + "symbol": "BOOT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "base_denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44316,48 +47089,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3", + "base": "ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8", "denomUnits": [ { "aliases": [ - "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", ], - "denom": "ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3", + "denom": "ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8", "exponent": 0, }, { - "denom": "avax", - "exponent": 18, + "denom": "cmdx", + "exponent": 6, }, ], - "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.", - "display": "avax", + "description": "Native Token of Comdex Protocol", + "display": "cmdx", "images": [ { "imageSync": { - "baseDenom": "wei", - "chainName": "avalanche", + "baseDenom": "ucmdx", + "chainName": "comdex", }, - "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", + "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", "theme": { - "primaryColorHex": "#eb4444", + "primaryColorHex": "#fc4454", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Avalanche", - "symbol": "AVAX", + "name": "Comdex", + "symbol": "CMDX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "base_denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44367,58 +47140,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB", + "base": "ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35", "denomUnits": [ { "aliases": [ - "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", ], - "denom": "ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB", + "denom": "ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35", "exponent": 0, }, { - "aliases": [ - "milliluna", - ], - "denom": "mluna", - "exponent": 3, - }, - { - "aliases": [ - "lunc", - ], - "denom": "luna", - "exponent": 6, + "denom": "cheq", + "exponent": 9, }, ], - "description": "The native staking token of Terra Classic.", - "display": "luna", + "description": "Native token for the cheqd network", + "display": "cheq", "images": [ { "imageSync": { - "baseDenom": "uluna", - "chainName": "terra", + "baseDenom": "ncheq", + "chainName": "cheqd", }, - "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/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg", "theme": { - "primaryColorHex": "#fcdb5b", + "primaryColorHex": "#fc5f04", }, }, ], "logoURIs": { - "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/cheqd/images/cheq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg", }, - "name": "Luna Classic", - "symbol": "LUNC", + "name": "Cheqd", + "symbol": "CHEQ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "base_denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44428,48 +47191,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA", + "base": "ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25", "denomUnits": [ { "aliases": [ - "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", ], - "denom": "ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA", + "denom": "ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25", "exponent": 0, }, { - "denom": "juno", + "denom": "lum", "exponent": 6, }, ], - "description": "The native token of JUNO Chain", - "display": "juno", + "description": "Native token of the Lum Network", + "display": "lum", "images": [ { "imageSync": { - "baseDenom": "ujuno", - "chainName": "juno", + "baseDenom": "ulum", + "chainName": "lumnetwork", }, - "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/lumnetwork/images/lum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg", "theme": { - "primaryColorHex": "#fa7b7b", + "primaryColorHex": "#080808", }, }, ], "logoURIs": { - "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/lumnetwork/images/lum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg", }, - "name": "Juno", - "symbol": "JUNO", + "name": "Lum Network", + "symbol": "LUM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "base_denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44479,50 +47242,55 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888", + "base": "ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472", "denomUnits": [ { "aliases": [ - "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", ], - "denom": "ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888", + "denom": "ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472", "exponent": 0, }, { - "denom": "dot", - "exponent": 10, + "denom": "vdl", + "exponent": 6, }, ], - "description": "Wrapped Polkadot on Axelar", - "display": "dot", + "description": "The native token of Vidulum", + "display": "vdl", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg", - }, { "imageSync": { - "baseDenom": "dot-planck", - "chainName": "axelar", + "baseDenom": "uvdl", + "chainName": "vidulum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", "theme": { - "primaryColorHex": "#e4047c", + "primaryColorHex": "#3454bc", }, }, + { + "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", + }, + ], + "keywords": [ + "osmosis_unstable", ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", }, - "name": "Polkadot (Moonbeam via Axelar)", - "symbol": "DOT.glmr.axl", + "name": "Vidulum (Vidulum)", + "symbol": "VDL.vdl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "base_denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44532,48 +47300,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5", + "base": "ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F", "denomUnits": [ { "aliases": [ - "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", ], - "denom": "ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5", + "denom": "ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F", "exponent": 0, }, { - "denom": "evmos", - "exponent": 18, + "denom": "dsm", + "exponent": 6, }, ], - "description": "The native EVM, governance and staking token of the Evmos Hub", - "display": "evmos", + "description": "The native token of Desmos", + "display": "dsm", "images": [ { "imageSync": { - "baseDenom": "aevmos", - "chainName": "evmos", + "baseDenom": "udsm", + "chainName": "desmos", }, - "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/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg", "theme": { - "primaryColorHex": "#ec4c34", + "primaryColorHex": "#fb804e", }, }, ], "logoURIs": { - "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/desmos/images/dsm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg", }, - "name": "Evmos", - "symbol": "EVMOS", + "name": "Desmos", + "symbol": "DSM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "base_denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44583,48 +47351,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480", + "base": "ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E", "denomUnits": [ { "aliases": [ - "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", ], - "denom": "ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480", + "denom": "ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E", "exponent": 0, }, { - "denom": "kava", + "denom": "dig", "exponent": 6, }, ], - "description": "The native staking and governance token of Kava", - "display": "kava", + "description": "Native token of Dig Chain", + "display": "dig", "images": [ { "imageSync": { - "baseDenom": "ukava", - "chainName": "kava", + "baseDenom": "udig", + "chainName": "dig", }, - "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/dig/images/dig.png", "theme": { - "primaryColorHex": "#e64942", + "primaryColorHex": "#1b1433", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/dig/images/dig.png", }, - "name": "Kava", - "symbol": "KAVA", + "name": "Dig Chain", + "symbol": "DIG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "base_denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44634,48 +47403,55 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77", + "base": "ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A", "denomUnits": [ { "aliases": [ - "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", ], - "denom": "ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77", + "denom": "ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A", "exponent": 0, }, { - "denom": "scrt", + "aliases": [ + "millisomm", + ], + "denom": "msomm", + "exponent": 3, + }, + { + "denom": "somm", "exponent": 6, }, ], - "description": "The native token of Secret Network", - "display": "scrt", + "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", + "display": "somm", "images": [ { "imageSync": { - "baseDenom": "uscrt", - "chainName": "secretnetwork", + "baseDenom": "usomm", + "chainName": "sommelier", }, - "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/sommelier/images/somm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#f36353", }, }, ], "logoURIs": { - "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/sommelier/images/somm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg", }, - "name": "Secret Network", - "symbol": "SCRT", + "name": "Sommelier", + "symbol": "SOMM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "base_denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44685,58 +47461,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7", + "base": "ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718", "denomUnits": [ { "aliases": [ - "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", ], - "denom": "ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7", + "denom": "ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718", "exponent": 0, }, { - "aliases": [ - "milliusd", - ], - "denom": "musd", - "exponent": 3, - }, - { - "aliases": [ - "ustc", - ], - "denom": "ust", + "denom": "band", "exponent": 6, }, ], - "description": "The USD stablecoin of Terra Classic.", - "display": "ust", + "description": "The native token of BandChain", + "display": "band", "images": [ { "imageSync": { - "baseDenom": "uusd", - "chainName": "terra", + "baseDenom": "uband", + "chainName": "bandchain", }, - "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/bandchain/images/band.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg", "theme": { - "primaryColorHex": "#5493f2", + "primaryColorHex": "#4424e4", }, }, ], "logoURIs": { - "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/bandchain/images/band.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg", }, - "name": "TerraClassicUSD", - "symbol": "USTC", + "name": "Band Protocol", + "symbol": "BAND", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "base_denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44746,48 +47512,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE", + "base": "ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9", "denomUnits": [ { "aliases": [ - "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", ], - "denom": "ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE", + "denom": "ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9", "exponent": 0, }, { - "denom": "stars", + "denom": "darc", "exponent": 6, }, ], - "description": "The native token of Stargaze", - "display": "stars", + "description": "The native token of Konstellation Network", + "display": "darc", "images": [ { "imageSync": { - "baseDenom": "ustars", - "chainName": "stargaze", + "baseDenom": "udarc", + "chainName": "konstellation", }, - "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/konstellation/images/darc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg", "theme": { - "primaryColorHex": "#db2777", + "primaryColorHex": "#042a61", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/konstellation/images/darc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg", }, - "name": "Stargaze", - "symbol": "STARS", + "name": "Konstellation", + "symbol": "DARC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "base_denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44797,48 +47566,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276", + "base": "ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839", "denomUnits": [ { "aliases": [ - "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", ], - "denom": "ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276", + "denom": "ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839", "exponent": 0, }, { - "denom": "huahua", + "denom": "umee", "exponent": 6, }, ], - "description": "The native token of Chihuahua Chain", - "display": "huahua", + "description": "The native token of Umee", + "display": "umee", "images": [ { "imageSync": { - "baseDenom": "uhuahua", - "chainName": "chihuahua", + "baseDenom": "uumee", + "chainName": "umee", }, - "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/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", "theme": { - "primaryColorHex": "#343434", + "primaryColorHex": "#22f2e9", }, }, ], "logoURIs": { - "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/umee/images/umee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", }, - "name": "Chihuahua", - "symbol": "HUAHUA", + "name": "UX Chain", + "symbol": "UMEE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "base_denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44848,50 +47617,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6", + "base": "ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E", "denomUnits": [ { "aliases": [ - "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", ], - "denom": "ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6", + "denom": "ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E", "exponent": 0, }, { - "denom": "xprt", + "denom": "graviton", "exponent": 6, }, ], - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "display": "xprt", + "description": "The native token of Gravity Bridge", + "display": "graviton", "images": [ { "imageSync": { - "baseDenom": "uxprt", - "chainName": "persistence", + "baseDenom": "ugraviton", + "chainName": "gravitybridge", }, - "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/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg", "theme": { - "backgroundColorHex": "#000000", - "circle": true, - "primaryColorHex": "#E59636", + "primaryColorHex": "#042ca4", }, }, ], "logoURIs": { - "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/gravitybridge/images/grav.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg", }, - "name": "Persistence", - "symbol": "XPRT", + "name": "Gravity Bridge", + "symbol": "GRAV", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "base_denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44901,48 +47668,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873", + "base": "ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5", "denomUnits": [ { "aliases": [ - "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", + "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", ], - "denom": "ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873", + "denom": "ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5", "exponent": 0, }, { - "denom": "pstake", - "exponent": 18, + "denom": "dec", + "exponent": 6, }, ], - "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.", - "display": "pstake", + "description": "The native token of Decentr", + "display": "dec", "images": [ { "imageSync": { - "baseDenom": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "chainName": "ethereum", + "baseDenom": "udec", + "chainName": "decentr", }, - "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/decentr/images/dec.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg", "theme": { - "primaryColorHex": "#050505", + "primaryColorHex": "#4678e9", }, }, ], "logoURIs": { - "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/decentr/images/dec.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg", }, - "name": "pSTAKE Finance", - "symbol": "PSTAKE", + "name": "Decentr", + "symbol": "DEC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", + "base_denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -44952,48 +47719,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2", + "base": "ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC", "denomUnits": [ { "aliases": [ - "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", ], - "denom": "ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2", + "denom": "ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC", "exponent": 0, }, { - "denom": "akt", - "exponent": 6, + "denom": "marble", + "exponent": 3, }, ], - "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.", - "display": "akt", + "description": "The native token cw20 for Marble DAO on Juno Chain", + "display": "marble", "images": [ { "imageSync": { - "baseDenom": "uakt", - "chainName": "akash", + "baseDenom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", + "chainName": "juno", }, - "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/juno/images/marble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg", "theme": { - "primaryColorHex": "#bc342c", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/juno/images/marble.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg", }, - "name": "Akash", - "symbol": "AKT", + "name": "Marble", + "symbol": "MARBLE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "base_denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45003,48 +47770,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423", + "base": "ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79", "denomUnits": [ { "aliases": [ - "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", ], - "denom": "ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423", + "denom": "ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79", "exponent": 0, }, { - "denom": "regen", - "exponent": 6, + "aliases": [ + "SWTH", + ], + "denom": "dswth", + "exponent": 8, }, ], - "description": "REGEN coin is the token for the Regen Network Platform", - "display": "regen", + "description": "The native governance token of Carbon", + "display": "dswth", "images": [ { "imageSync": { - "baseDenom": "uregen", - "chainName": "regen", + "baseDenom": "swth", + "chainName": "carbon", }, - "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/carbon/images/swth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg", "theme": { - "primaryColorHex": "#56b790", + "primaryColorHex": "#a5edf2", }, }, ], "logoURIs": { - "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/carbon/images/swth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg", }, - "name": "Regen", - "symbol": "REGEN", + "name": "Carbon", + "symbol": "SWTH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "base_denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45054,48 +47824,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B", + "base": "ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7", "denomUnits": [ { "aliases": [ - "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", ], - "denom": "ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B", + "denom": "ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7", "exponent": 0, }, { - "denom": "dvpn", + "denom": "crbrus", "exponent": 6, }, ], - "description": "DVPN is the native token of the Sentinel Hub.", - "display": "dvpn", + "description": "The native token of Cerberus Chain", + "display": "crbrus", "images": [ { "imageSync": { - "baseDenom": "udvpn", - "chainName": "sentinel", + "baseDenom": "ucrbrus", + "chainName": "cerberus", }, - "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/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg", "theme": { - "primaryColorHex": "#10a7ef", + "primaryColorHex": "#c6c6c9", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/cerberus/images/crbrus.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg", }, - "name": "Sentinel", - "symbol": "DVPN", + "name": "Cerberus", + "symbol": "CRBRUS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "base_denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45105,48 +47878,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE", + "base": "ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA", "denomUnits": [ { "aliases": [ - "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", ], - "denom": "ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE", + "denom": "ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA", "exponent": 0, }, { - "denom": "iris", - "exponent": 6, + "denom": "fet", + "exponent": 18, }, ], - "description": "The IRIS token is the native governance token for the IrisNet chain.", - "display": "iris", + "description": "The native staking and governance token of the Fetch Hub.", + "display": "fet", "images": [ { "imageSync": { - "baseDenom": "uiris", - "chainName": "irisnet", + "baseDenom": "afet", + "chainName": "fetchhub", }, - "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/fetchhub/images/fet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg", "theme": { - "primaryColorHex": "#5664ad", + "primaryColorHex": "#1c2444", }, }, ], "logoURIs": { - "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/fetchhub/images/fet.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg", }, - "name": "IRISnet", - "symbol": "IRIS", + "name": "Fetch.ai", + "symbol": "FET", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "base_denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45156,48 +47929,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954", + "base": "ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7", "denomUnits": [ { "aliases": [ - "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", ], - "denom": "ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954", + "denom": "ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7", "exponent": 0, }, { - "denom": "iov", + "denom": "mntl", "exponent": 6, }, ], - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", - "display": "iov", + "description": "The native token of Asset Mantle", + "display": "mntl", "images": [ { "imageSync": { - "baseDenom": "uiov", - "chainName": "starname", + "baseDenom": "umntl", + "chainName": "assetmantle", }, - "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/assetmantle/images/mntl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg", "theme": { - "primaryColorHex": "#5c64b4", + "primaryColorHex": "#edb548", }, }, ], "logoURIs": { - "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/assetmantle/images/mntl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg", }, - "name": "Starname", - "symbol": "IOV", + "name": "AssetMantle", + "symbol": "MNTL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "base_denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45207,48 +47980,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358", + "base": "ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61", "denomUnits": [ { "aliases": [ - "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", ], - "denom": "ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358", + "denom": "ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61", "exponent": 0, }, { - "denom": "ngm", + "denom": "neta", "exponent": 6, }, ], - "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.", - "display": "ngm", + "description": "The native token cw20 for Neta on Juno Chain", + "display": "neta", "images": [ { "imageSync": { - "baseDenom": "ungm", - "chainName": "emoney", + "baseDenom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "chainName": "juno", }, - "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/juno/images/neta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg", "theme": { - "primaryColorHex": "#caf2ea", + "primaryColorHex": "#f87b7b", }, }, ], "logoURIs": { - "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/juno/images/neta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg", }, - "name": "e-Money", - "symbol": "NGM", + "name": "Neta", + "symbol": "NETA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45258,48 +48031,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935", + "base": "ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233", "denomUnits": [ { "aliases": [ - "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", ], - "denom": "ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935", + "denom": "ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233", "exponent": 0, }, { - "denom": "eur", - "exponent": 6, + "denom": "INJ", + "exponent": 18, }, ], - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", - "display": "eur", + "description": "The INJ token is the native governance token for the Injective chain.", + "display": "INJ", "images": [ { "imageSync": { - "baseDenom": "eeur", - "chainName": "emoney", + "baseDenom": "inj", + "chainName": "injective", }, - "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/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", "theme": { - "primaryColorHex": "#f4c808", + "primaryColorHex": "#04a2fc", }, }, ], "logoURIs": { - "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/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg", }, - "name": "e-Money EUR", - "symbol": "EEUR", + "name": "Injective", + "symbol": "INJ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "base_denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45309,48 +48082,58 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1", + "base": "ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5", "denomUnits": [ { "aliases": [ - "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", ], - "denom": "ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1", + "denom": "ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5", "exponent": 0, }, { - "denom": "like", - "exponent": 9, + "aliases": [ + "millikrw", + ], + "denom": "mkrw", + "exponent": 3, + }, + { + "aliases": [ + "krtc", + ], + "denom": "krt", + "exponent": 6, }, ], - "description": "LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.", - "display": "like", + "description": "The KRW stablecoin of Terra Classic.", + "display": "krt", "images": [ { "imageSync": { - "baseDenom": "nanolike", - "chainName": "likecoin", + "baseDenom": "ukrw", + "chainName": "terra", }, - "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/terra/images/krt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg", "theme": { - "primaryColorHex": "#2d656c", + "primaryColorHex": "#4b83e0", }, }, ], "logoURIs": { - "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/terra/images/krt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg", }, - "name": "LikeCoin", - "symbol": "LIKE", + "name": "TerraClassicKRW", + "symbol": "KRTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "base_denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45360,48 +48143,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752", + "base": "ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919", "denomUnits": [ { "aliases": [ - "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", + "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", ], - "denom": "ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752", + "denom": "ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919", "exponent": 0, }, { - "denom": "ixo", + "denom": "tick", "exponent": 6, }, ], - "description": "The native token of IXO Chain", - "display": "ixo", + "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", + "display": "tick", "images": [ { "imageSync": { - "baseDenom": "uixo", - "chainName": "impacthub", + "baseDenom": "utick", + "chainName": "microtick", }, - "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/microtick/images/tick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg", "theme": { - "primaryColorHex": "#2c4484", + "primaryColorHex": "#6bab14", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/microtick/images/tick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg", }, - "name": "Impacts Hub", - "symbol": "IXO", + "name": "Microtick", + "symbol": "TICK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", + "base_denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45411,48 +48197,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA", + "base": "ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E", "denomUnits": [ { "aliases": [ - "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", ], - "denom": "ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA", + "denom": "ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E", "exponent": 0, }, { - "denom": "bcna", - "exponent": 6, + "denom": "ROWAN", + "exponent": 18, }, ], - "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.", - "display": "bcna", + "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.", + "display": "ROWAN", "images": [ { "imageSync": { - "baseDenom": "ubcna", - "chainName": "bitcanna", + "baseDenom": "rowan", + "chainName": "sifchain", }, - "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/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", "theme": { - "primaryColorHex": "#3cc494", + "primaryColorHex": "#be9926", }, }, ], "logoURIs": { - "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/sifchain/images/rowan.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", }, - "name": "BitCanna", - "symbol": "BCNA", + "name": "Sifchain", + "symbol": "ROWAN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "base_denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45462,48 +48248,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71", + "base": "ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1", "denomUnits": [ { "aliases": [ - "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", ], - "denom": "ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71", + "denom": "ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1", "exponent": 0, }, { - "denom": "btsg", + "denom": "ctk", "exponent": 6, }, ], - "description": "BitSong Native Token", - "display": "btsg", + "description": "The native token of Shentu", + "display": "ctk", "images": [ { "imageSync": { - "baseDenom": "ubtsg", - "chainName": "bitsong", + "baseDenom": "uctk", + "chainName": "shentu", }, - "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/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg", "theme": { - "primaryColorHex": "#c8307f", + "primaryColorHex": "#e4ac4c", }, }, ], "logoURIs": { - "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/shentu/images/ctk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg", }, - "name": "BitSong", - "symbol": "BTSG", + "name": "Shentu", + "symbol": "CTK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "base_denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45513,48 +48299,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A", + "base": "ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23", "denomUnits": [ { "aliases": [ - "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", ], - "denom": "ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A", + "denom": "ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23", "exponent": 0, }, { - "denom": "xki", + "denom": "hope", "exponent": 6, }, ], - "description": "The native token of Ki Chain", - "display": "xki", + "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", + "display": "hope", "images": [ { "imageSync": { - "baseDenom": "uxki", - "chainName": "kichain", + "baseDenom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", + "chainName": "juno", }, - "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/juno/images/hope.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg", "theme": { - "primaryColorHex": "#1c04fc", + "primaryColorHex": "#e2877e", }, }, ], "logoURIs": { - "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/juno/images/hope.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg", }, - "name": "Ki", - "symbol": "XKI", + "name": "Hope Galaxy", + "symbol": "HOPE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "base_denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45564,48 +48350,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634", + "base": "ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A", "denomUnits": [ { "aliases": [ - "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", ], - "denom": "ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634", + "denom": "ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A", "exponent": 0, }, { - "denom": "med", + "denom": "rac", "exponent": 6, }, ], - "description": "Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem", - "display": "med", + "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", + "display": "rac", "images": [ { "imageSync": { - "baseDenom": "umed", - "chainName": "panacea", + "baseDenom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", + "chainName": "juno", }, - "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/juno/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg", "theme": { - "primaryColorHex": "#2474ec", + "primaryColorHex": "#070f0e", }, }, ], "logoURIs": { - "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/juno/images/rac.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg", }, - "name": "Medibloc", - "symbol": "MED", + "name": "Racoon (Juno)", + "symbol": "RAC.juno", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "base_denom": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45615,44 +48401,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22", + "base": "ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957", "denomUnits": [ { "aliases": [ - "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", ], - "denom": "ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22", + "denom": "ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957", "exponent": 0, }, + { + "denom": "frax", + "exponent": 18, + }, ], - "description": "The staking token of Bostrom", - "display": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "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.", + "display": "frax", "images": [ { "imageSync": { - "baseDenom": "boot", - "chainName": "bostrom", - }, - "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", - "theme": { - "primaryColorHex": "#4cea4e", + "baseDenom": "0x853d955acef822db058eb8505911ed77f175b99e", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", }, - "name": "bostrom", - "symbol": "BOOT", + "name": "Frax", + "symbol": "FRAX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "base_denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45662,48 +48447,50 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8", + "base": "ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530", "denomUnits": [ { "aliases": [ - "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", ], - "denom": "ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8", + "denom": "ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530", "exponent": 0, }, { - "denom": "cmdx", - "exponent": 6, + "denom": "gwbtc", + "exponent": 8, }, ], - "description": "Native Token of Comdex Protocol", - "display": "cmdx", + "description": "Gravity Bridge WBTC", + "display": "gwbtc", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg", + }, { "imageSync": { - "baseDenom": "ucmdx", - "chainName": "comdex", + "baseDenom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "chainName": "gravitybridge", }, - "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/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg", "theme": { - "primaryColorHex": "#fc4454", + "primaryColorHex": "#f39444", }, }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg", }, - "name": "Comdex", - "symbol": "CMDX", + "name": "Wrapped Bitcoin (Gravity Bridge)", + "symbol": "WBTC.eth.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "base_denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45713,48 +48500,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35", + "base": "ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04", "denomUnits": [ { "aliases": [ - "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", ], - "denom": "ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35", + "denom": "ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04", "exponent": 0, }, { - "denom": "cheq", - "exponent": 9, + "denom": "gweth", + "exponent": 18, }, ], - "description": "Native token for the cheqd network", - "display": "cheq", + "description": "Gravity Bridge WETH", + "display": "gweth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg", + }, { "imageSync": { - "baseDenom": "ncheq", - "chainName": "cheqd", - }, - "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", - "theme": { - "primaryColorHex": "#fc5f04", + "baseDenom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "chainName": "gravitybridge", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg", }, - "name": "Cheqd", - "symbol": "CHEQ", + "name": "Ether (Gravity Bridge)", + "symbol": "ETH.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "base_denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45764,48 +48549,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25", + "base": "ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264", "denomUnits": [ { "aliases": [ - "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", ], - "denom": "ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25", + "denom": "ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264", "exponent": 0, }, { - "denom": "lum", + "denom": "gusdc", "exponent": 6, }, ], - "description": "Native token of the Lum Network", - "display": "lum", + "description": "Gravity Bridge USDC", + "display": "gusdc", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg", + }, { "imageSync": { - "baseDenom": "ulum", - "chainName": "lumnetwork", + "baseDenom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "chainName": "gravitybridge", }, - "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/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#080808", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg", }, - "name": "Lum Network", - "symbol": "LUM", + "name": "USDC (Gravity Bridge)", + "symbol": "USDC.eth.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "base_denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45815,62 +48603,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472", + "base": "ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5", "denomUnits": [ { "aliases": [ - "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", + "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", ], - "denom": "ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472", + "denom": "ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5", "exponent": 0, }, { - "denom": "vdl", - "exponent": 6, + "denom": "gdai", + "exponent": 18, }, ], - "description": "The native token of Vidulum", - "display": "vdl", + "description": "Gravity Bridge DAI", + "display": "gdai", "images": [ { - "imageSync": { - "baseDenom": "uvdl", - "chainName": "vidulum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", - "theme": { - "primaryColorHex": "#3454bc", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg", }, { "imageSync": { - "baseDenom": "uvdl", - "chainName": "vidulum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", - "theme": { - "primaryColorHex": "#3454bc", + "baseDenom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "chainName": "gravitybridge", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/vdl.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg", }, - "name": "Vidulum (Vidulum)", - "symbol": "VDL.vdl", + "name": "DAI Stablecoin (Gravity Bridge)", + "symbol": "DAI.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", + "base_denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45880,48 +48652,57 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F", + "base": "ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA", "denomUnits": [ { "aliases": [ - "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", + "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", ], - "denom": "ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F", + "denom": "ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA", "exponent": 0, }, { - "denom": "dsm", + "denom": "gusdt", "exponent": 6, }, ], - "description": "The native token of Desmos", - "display": "dsm", + "description": "Gravity Bridge USDT", + "display": "gusdt", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg", + "theme": { + "primaryColorHex": "#059394", + }, + }, { "imageSync": { - "baseDenom": "udsm", - "chainName": "desmos", + "baseDenom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "chainName": "gravitybridge", }, - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#fb804e", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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/osmosis/images/usdt.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg", }, - "name": "Desmos", - "symbol": "DSM", + "name": "Tether USD (Gravity Bridge)", + "symbol": "USDT.eth.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", + "base_denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45931,49 +48712,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E", + "base": "ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07", "denomUnits": [ { "aliases": [ - "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", + "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", ], - "denom": "ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E", + "denom": "ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07", "exponent": 0, }, { - "denom": "dig", + "denom": "block", "exponent": 6, }, ], - "description": "Native token of Dig Chain", - "display": "dig", + "description": "The native token of Marble DEX on Juno Chain", + "display": "block", "images": [ { "imageSync": { - "baseDenom": "udig", - "chainName": "dig", + "baseDenom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", + "chainName": "juno", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.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", "theme": { - "primaryColorHex": "#1b1433", + "primaryColorHex": "#040404", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.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", }, - "name": "Dig Chain", - "symbol": "DIG", + "name": "Block", + "symbol": "BLOCK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", + "base_denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -45983,55 +48763,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A", + "base": "ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028", "denomUnits": [ { "aliases": [ - "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", ], - "denom": "ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A", + "denom": "ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028", "exponent": 0, }, { - "aliases": [ - "millisomm", - ], - "denom": "msomm", - "exponent": 3, - }, - { - "denom": "somm", - "exponent": 6, + "denom": "hash", + "exponent": 9, }, ], - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", - "display": "somm", + "description": "Hash is the staking token of the Provenance Blockchain", + "display": "hash", "images": [ { "imageSync": { - "baseDenom": "usomm", - "chainName": "sommelier", + "baseDenom": "nhash", + "chainName": "provenance", }, - "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/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg", "theme": { - "primaryColorHex": "#f36353", + "primaryColorHex": "#4c7cdc", }, }, ], "logoURIs": { - "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/provenance/images/prov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg", }, - "name": "Sommelier", - "symbol": "SOMM", + "name": "Provenance", + "symbol": "HASH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "base_denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46041,48 +48814,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718", + "base": "ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317", "denomUnits": [ { "aliases": [ - "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", ], - "denom": "ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718", + "denom": "ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317", "exponent": 0, }, { - "denom": "band", + "denom": "glx", "exponent": 6, }, ], - "description": "The native token of BandChain", - "display": "band", + "description": "GLX is the staking token of the Galaxy Chain", + "display": "glx", "images": [ { "imageSync": { - "baseDenom": "uband", - "chainName": "bandchain", + "baseDenom": "uglx", + "chainName": "galaxy", }, - "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/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg", "theme": { - "primaryColorHex": "#4424e4", + "primaryColorHex": "#5e3be6", }, }, ], "logoURIs": { - "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/galaxy/images/glx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg", }, - "name": "Band Protocol", - "symbol": "BAND", + "name": "Galaxy", + "symbol": "GLX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "base_denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46092,51 +48865,44 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9", + "base": "ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73", "denomUnits": [ { "aliases": [ - "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", + "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", ], - "denom": "ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9", + "denom": "ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73", "exponent": 0, }, - { - "denom": "darc", - "exponent": 6, - }, ], - "description": "The native token of Konstellation Network", - "display": "darc", + "description": "The DAO token to build consensus among Hong Kong People", + "display": "dhk", "images": [ { "imageSync": { - "baseDenom": "udarc", - "chainName": "konstellation", + "baseDenom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", + "chainName": "juno", }, - "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/juno/images/dhk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg", "theme": { - "primaryColorHex": "#042a61", + "primaryColorHex": "#fae204", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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/juno/images/dhk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg", }, - "name": "Konstellation", - "symbol": "DARC", + "name": "DHK", + "symbol": "DHK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", + "base_denom": "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46146,48 +48912,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839", + "base": "ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13", "denomUnits": [ { "aliases": [ - "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", ], - "denom": "ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839", + "denom": "ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13", "exponent": 0, }, { - "denom": "umee", + "denom": "raw", "exponent": 6, }, ], - "description": "The native token of Umee", - "display": "umee", + "description": "Token governance for Junoswap", + "display": "raw", "images": [ { "imageSync": { - "baseDenom": "uumee", - "chainName": "umee", + "baseDenom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "chainName": "juno", }, - "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/juno/images/raw.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg", "theme": { - "primaryColorHex": "#22f2e9", + "primaryColorHex": "#f07c92", }, }, ], "logoURIs": { - "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/juno/images/raw.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg", }, - "name": "UX Chain", - "symbol": "UMEE", + "name": "JunoSwap", + "symbol": "RAW", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "base_denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46197,48 +48963,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E", + "base": "ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320", "denomUnits": [ { "aliases": [ - "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", ], - "denom": "ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E", + "denom": "ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320", "exponent": 0, }, { - "denom": "graviton", + "denom": "meme", "exponent": 6, }, ], - "description": "The native token of Gravity Bridge", - "display": "graviton", + "description": "MEME Token (MEME) is the native staking token of the MEME Chain", + "display": "meme", "images": [ { "imageSync": { - "baseDenom": "ugraviton", - "chainName": "gravitybridge", + "baseDenom": "umeme", + "chainName": "meme", }, - "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/meme/images/meme.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg", "theme": { - "primaryColorHex": "#042ca4", + "primaryColorHex": "#b7dcd8", }, }, ], "logoURIs": { - "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/meme/images/meme.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg", }, - "name": "Gravity Bridge", - "symbol": "GRAV", + "name": "MEME", + "symbol": "MEME", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "base_denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46248,48 +49014,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5", + "base": "ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26", "denomUnits": [ { "aliases": [ - "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", + "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", ], - "denom": "ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5", + "denom": "ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26", "exponent": 0, }, { - "denom": "dec", + "denom": "asvt", "exponent": 6, }, ], - "description": "The native token of Decentr", - "display": "dec", + "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", + "display": "asvt", "images": [ { "imageSync": { - "baseDenom": "udec", - "chainName": "decentr", + "baseDenom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", + "chainName": "juno", }, - "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/juno/images/asvt.png", "theme": { - "primaryColorHex": "#4678e9", + "primaryColorHex": "#402e5d", }, }, ], "logoURIs": { - "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/juno/images/asvt.png", }, - "name": "Decentr", - "symbol": "DEC", + "name": "Another.Software Validator Token", + "symbol": "ASVT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", + "base_denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46299,48 +49063,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC", + "base": "ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390", "denomUnits": [ { "aliases": [ - "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", + "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", ], - "denom": "ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC", + "denom": "ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390", "exponent": 0, }, { - "denom": "marble", - "exponent": 3, + "denom": "joe", + "exponent": 6, }, ], - "description": "The native token cw20 for Marble DAO on Juno Chain", - "display": "marble", + "description": "DAO dedicated to building tools on the Juno Network", + "display": "joe", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", + "baseDenom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", "chainName": "juno", }, - "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/juno/images/joe.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#f3baaf", }, }, ], "logoURIs": { - "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/juno/images/joe.png", }, - "name": "Marble", - "symbol": "MARBLE", + "name": "JoeDAO", + "symbol": "JOE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", + "base_denom": "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46350,51 +49112,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79", + "base": "ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414", "denomUnits": [ { "aliases": [ - "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", ], - "denom": "ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79", + "denom": "ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414", "exponent": 0, }, { - "aliases": [ - "SWTH", - ], - "denom": "dswth", - "exponent": 8, + "denom": "luna", + "exponent": 6, }, ], - "description": "The native governance token of Carbon", - "display": "dswth", + "description": "The native staking token of Terra.", + "display": "luna", "images": [ { "imageSync": { - "baseDenom": "swth", - "chainName": "carbon", + "baseDenom": "uluna", + "chainName": "terra2", }, - "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/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", "theme": { - "primaryColorHex": "#a5edf2", + "primaryColorHex": "#f4de6f", }, }, ], "logoURIs": { - "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/terra2/images/luna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", }, - "name": "Carbon", - "symbol": "SWTH", + "name": "Luna", + "symbol": "LUNA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "base_denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46404,51 +49163,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7", + "base": "ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E", "denomUnits": [ { "aliases": [ - "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", ], - "denom": "ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7", + "denom": "ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E", "exponent": 0, }, { - "denom": "crbrus", + "denom": "atolo", "exponent": 6, }, ], - "description": "The native token of Cerberus Chain", - "display": "crbrus", + "description": "Native token of Rizon Chain", + "display": "atolo", "images": [ { "imageSync": { - "baseDenom": "ucrbrus", - "chainName": "cerberus", + "baseDenom": "uatolo", + "chainName": "rizon", }, - "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/rizon/images/atolo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg", "theme": { - "primaryColorHex": "#c6c6c9", + "primaryColorHex": "#2b1c54", }, - }, - ], - "keywords": [ - "osmosis_unstable", + }, ], "logoURIs": { - "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/rizon/images/atolo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg", }, - "name": "Cerberus", - "symbol": "CRBRUS", + "name": "Rizon", + "symbol": "ATOLO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "base_denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46458,48 +49214,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA", + "base": "ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00", "denomUnits": [ { "aliases": [ - "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", ], - "denom": "ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA", + "denom": "ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00", "exponent": 0, }, { - "denom": "fet", - "exponent": 18, + "denom": "HARD", + "exponent": 6, }, ], - "description": "The native staking and governance token of the Fetch Hub.", - "display": "fet", + "description": "Governance token of Kava Lend Protocol", + "display": "HARD", "images": [ { "imageSync": { - "baseDenom": "afet", - "chainName": "fetchhub", + "baseDenom": "hard", + "chainName": "kava", }, - "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/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg", "theme": { - "primaryColorHex": "#1c2444", + "primaryColorHex": "#7b34ac", }, }, ], "logoURIs": { - "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/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg", }, - "name": "Fetch.ai", - "symbol": "FET", + "name": "Kava Hard", + "symbol": "HARD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "base_denom": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46509,48 +49265,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7", + "base": "ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7", "denomUnits": [ { "aliases": [ - "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", ], - "denom": "ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7", + "denom": "ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7", "exponent": 0, }, { - "denom": "mntl", + "denom": "SWP", "exponent": 6, }, ], - "description": "The native token of Asset Mantle", - "display": "mntl", + "description": "Governance token of Kava Swap Protocol", + "display": "SWP", "images": [ { "imageSync": { - "baseDenom": "umntl", - "chainName": "assetmantle", + "baseDenom": "swp", + "chainName": "kava", }, - "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/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg", "theme": { - "primaryColorHex": "#edb548", + "primaryColorHex": "#544cfc", }, }, ], "logoURIs": { - "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/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg", }, - "name": "AssetMantle", - "symbol": "MNTL", + "name": "Kava Swap", + "symbol": "SWP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "base_denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46560,48 +49316,52 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61", + "base": "ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C", "denomUnits": [ { "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", ], - "denom": "ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61", + "denom": "ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C", "exponent": 0, }, { - "denom": "neta", - "exponent": 6, + "denom": "link", + "exponent": 18, }, ], - "description": "The native token cw20 for Neta on Juno Chain", - "display": "neta", + "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", + "display": "link", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg", + }, { "imageSync": { - "baseDenom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "chainName": "juno", + "baseDenom": "link-wei", + "chainName": "axelar", }, - "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/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg", "theme": { - "primaryColorHex": "#f87b7b", + "primaryColorHex": "#2c5cdc", }, }, ], "logoURIs": { - "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/osmosis/images/link.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg", }, - "name": "Neta", - "symbol": "NETA", + "name": "Chainlink (Axelar)", + "symbol": "LINK.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "base_denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46611,48 +49371,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233", + "base": "ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1", "denomUnits": [ { "aliases": [ - "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", ], - "denom": "ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233", + "denom": "ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1", "exponent": 0, }, { - "denom": "INJ", + "denom": "l1", "exponent": 18, }, ], - "description": "The INJ token is the native governance token for the Injective chain.", - "display": "INJ", + "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", + "display": "l1", "images": [ { "imageSync": { - "baseDenom": "inj", - "chainName": "injective", + "baseDenom": "el1", + "chainName": "genesisl1", }, - "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/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg", "theme": { - "primaryColorHex": "#04a2fc", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/genesisl1/images/l1.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg", }, - "name": "Injective", - "symbol": "INJ", + "name": "GenesisL1", + "symbol": "L1", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "base_denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46662,58 +49425,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5", + "base": "ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD", "denomUnits": [ { "aliases": [ - "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", + "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", ], - "denom": "ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5", + "denom": "ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD", "exponent": 0, }, { - "aliases": [ - "millikrw", - ], - "denom": "mkrw", - "exponent": 3, - }, - { - "aliases": [ - "krtc", - ], - "denom": "krt", - "exponent": 6, + "denom": "aave", + "exponent": 18, }, ], - "description": "The KRW stablecoin of Terra Classic.", - "display": "krt", + "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.", + "display": "aave", "images": [ { "imageSync": { - "baseDenom": "ukrw", - "chainName": "terra", - }, - "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", - "theme": { - "primaryColorHex": "#4b83e0", + "baseDenom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", }, - "name": "TerraClassicKRW", - "symbol": "KRTC", + "name": "Aave", + "symbol": "AAVE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", + "base_denom": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46723,51 +49474,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919", + "base": "ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5", "denomUnits": [ { "aliases": [ - "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", + "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", ], - "denom": "ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919", + "denom": "ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5", "exponent": 0, }, { - "denom": "tick", - "exponent": 6, + "denom": "ape", + "exponent": 18, }, ], - "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", - "display": "tick", + "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.", + "display": "ape", "images": [ { "imageSync": { - "baseDenom": "utick", - "chainName": "microtick", - }, - "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", - "theme": { - "primaryColorHex": "#6bab14", + "baseDenom": "0x4d224452801aced8b2f0aebe155379bb5d594381", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", }, ], "keywords": [ - "osmosis_unstable", + "osmosis_unlisted", ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", }, - "name": "Microtick", - "symbol": "TICK", + "name": "ApeCoin", + "symbol": "APE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", + "base_denom": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46777,48 +49523,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E", + "base": "ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0", "denomUnits": [ { "aliases": [ - "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", ], - "denom": "ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E", + "denom": "ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0", "exponent": 0, }, { - "denom": "ROWAN", + "denom": "mkr", "exponent": 18, }, ], - "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.", - "display": "ROWAN", + "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", + "display": "mkr", "images": [ { "imageSync": { - "baseDenom": "rowan", - "chainName": "sifchain", - }, - "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", - "theme": { - "primaryColorHex": "#be9926", + "baseDenom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", }, - "name": "Sifchain", - "symbol": "ROWAN", + "name": "Maker", + "symbol": "MKR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "base_denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46828,48 +49569,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1", + "base": "ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD", "denomUnits": [ { "aliases": [ - "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", ], - "denom": "ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1", + "denom": "ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD", "exponent": 0, }, { - "denom": "ctk", - "exponent": 6, + "denom": "rai", + "exponent": 18, }, ], - "description": "The native token of Shentu", - "display": "ctk", + "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.", + "display": "rai", "images": [ { "imageSync": { - "baseDenom": "uctk", - "chainName": "shentu", - }, - "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", - "theme": { - "primaryColorHex": "#e4ac4c", + "baseDenom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", }, - "name": "Shentu", - "symbol": "CTK", + "name": "Rai Reflex Index", + "symbol": "RAI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "base_denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46879,48 +49615,55 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23", + "base": "ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B", "denomUnits": [ { "aliases": [ - "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", ], - "denom": "ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23", + "denom": "ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B", "exponent": 0, }, { - "denom": "hope", - "exponent": 6, + "denom": "shib", + "exponent": 18, }, ], - "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", - "display": "hope", + "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.", + "display": "shib", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg", + }, { "imageSync": { - "baseDenom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "chainName": "juno", + "baseDenom": "shib-wei", + "chainName": "axelar", }, - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", "theme": { - "primaryColorHex": "#e2877e", + "backgroundColorHex": "#00000000", + "primaryColorHex": "#FFA409", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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/osmosis/images/shib.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg", }, - "name": "Hope Galaxy", - "symbol": "HOPE", + "name": "Shiba Inu (Axelar)", + "symbol": "SHIB.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "base_denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46930,48 +49673,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A", + "base": "ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87", "denomUnits": [ { "aliases": [ - "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", + "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", ], - "denom": "ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A", + "denom": "ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87", "exponent": 0, }, { - "denom": "rac", + "denom": "kuji", "exponent": 6, }, ], - "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", - "display": "rac", + "description": "The native staking and governance token of the Kujira chain.", + "display": "kuji", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "chainName": "juno", + "baseDenom": "ukuji", + "chainName": "kujira", }, - "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/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg", "theme": { - "primaryColorHex": "#070f0e", + "primaryColorHex": "#e33b34", }, }, ], "logoURIs": { - "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/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg", }, - "name": "Racoon (Juno)", - "symbol": "RAC.juno", + "name": "Kujira", + "symbol": "KUJI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", + "base_denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -46981,43 +49724,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957", + "base": "ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF", "denomUnits": [ { "aliases": [ - "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", + "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", ], - "denom": "ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957", + "denom": "ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF", "exponent": 0, }, { - "denom": "frax", - "exponent": 18, + "denom": "tgd", + "exponent": 6, }, ], - "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.", - "display": "frax", + "description": "The native token of Tgrade", + "display": "tgd", "images": [ { "imageSync": { - "baseDenom": "0x853d955acef822db058eb8505911ed77f175b99e", - "chainName": "ethereum", + "baseDenom": "utgd", + "chainName": "tgrade", + }, + "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", + "theme": { + "primaryColorHex": "#a7248a", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.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", }, - "name": "Frax", - "symbol": "FRAX", + "name": "Tgrade", + "symbol": "TGD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", + "base_denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47027,50 +49775,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530", + "base": "ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00", "denomUnits": [ { "aliases": [ - "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", ], - "denom": "ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530", + "denom": "ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00", "exponent": 0, }, { - "denom": "gwbtc", - "exponent": 8, + "denom": "echelon", + "exponent": 18, }, ], - "description": "Gravity Bridge WBTC", - "display": "gwbtc", + "description": "Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics", + "display": "echelon", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg", - }, { "imageSync": { - "baseDenom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "chainName": "gravitybridge", - }, - "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", - "theme": { - "primaryColorHex": "#f39444", + "baseDenom": "aechelon", + "chainName": "echelon", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg", }, - "name": "Wrapped Bitcoin (Gravity Bridge)", - "symbol": "WBTC.eth.grv", + "name": "Echelon", + "symbol": "ECH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "base_denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47080,46 +49821,45 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04", + "base": "ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11", "denomUnits": [ { "aliases": [ - "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", ], - "denom": "ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04", + "denom": "ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11", "exponent": 0, }, { - "denom": "gweth", - "exponent": 18, + "denom": "odin", + "exponent": 6, }, ], - "description": "Gravity Bridge WETH", - "display": "gweth", + "description": "Staking and governance token for ODIN Protocol", + "display": "odin", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg", - }, { "imageSync": { - "baseDenom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "chainName": "gravitybridge", + "baseDenom": "loki", + "chainName": "odin", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.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", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.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", }, - "name": "Ether (Gravity Bridge)", - "symbol": "ETH.grv", + "name": "Odin Protocol", + "symbol": "ODIN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "base_denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47129,51 +49869,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264", + "base": "ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558", "denomUnits": [ { "aliases": [ - "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", ], - "denom": "ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264", + "denom": "ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558", "exponent": 0, }, { - "denom": "gusdc", + "denom": "geo", "exponent": 6, }, ], - "description": "Gravity Bridge USDC", - "display": "gusdc", + "description": "GEO token for ODIN Protocol", + "display": "geo", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg", - }, { "imageSync": { - "baseDenom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "chainName": "gravitybridge", + "baseDenom": "mGeo", + "chainName": "odin", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#c3ebf3", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.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", }, - "name": "USDC (Gravity Bridge)", - "symbol": "USDC.eth.grv", + "name": "GEO", + "symbol": "GEO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "base_denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47183,46 +49923,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5", + "base": "ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE", "denomUnits": [ { "aliases": [ - "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", ], - "denom": "ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5", + "denom": "ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE", "exponent": 0, }, { - "denom": "gdai", - "exponent": 18, + "denom": "O9W", + "exponent": 6, }, ], - "description": "Gravity Bridge DAI", - "display": "gdai", + "description": "O9W token for ODIN Protocol", + "display": "O9W", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg", - }, { "imageSync": { - "baseDenom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "chainName": "gravitybridge", + "baseDenom": "mO9W", + "chainName": "odin", + }, + "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", + "theme": { + "primaryColorHex": "#040404", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.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", }, - "name": "DAI Stablecoin (Gravity Bridge)", - "symbol": "DAI.grv", + "name": "O9W", + "symbol": "O9W", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "base_denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47232,57 +49977,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA", + "base": "ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1", "denomUnits": [ { "aliases": [ - "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", ], - "denom": "ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA", + "denom": "ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1", "exponent": 0, }, { - "denom": "gusdt", + "denom": "lvn", "exponent": 6, }, ], - "description": "Gravity Bridge USDT", - "display": "gusdt", + "description": "ELEVENPARIS loyalty token on KiChain", + "display": "lvn", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg", - "theme": { - "primaryColorHex": "#059394", - }, - }, { "imageSync": { - "baseDenom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chainName": "gravitybridge", + "baseDenom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", + "chainName": "kichain", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#683480", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png", }, - "name": "Tether USD (Gravity Bridge)", - "symbol": "USDT.eth.grv", + "name": "LVN", + "symbol": "LVN.ki", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "base_denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47292,48 +50026,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07", + "base": "ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA", "denomUnits": [ { "aliases": [ - "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", + "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", ], - "denom": "ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07", + "denom": "ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA", "exponent": 0, }, { - "denom": "block", - "exponent": 6, + "denom": "wglmr", + "exponent": 18, }, ], - "description": "The native token of Marble DEX on Juno Chain", - "display": "block", + "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.", + "display": "wglmr", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "chainName": "juno", + "baseDenom": "Wei", + "chainName": "moonbeam", }, - "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", + "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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#e4147c", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Block", - "symbol": "BLOCK", + "name": "Moonbeam", + "symbol": "GLMR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", + "base_denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47343,48 +50077,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028", + "base": "ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF", "denomUnits": [ { "aliases": [ - "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", + "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", ], - "denom": "ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028", + "denom": "ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF", "exponent": 0, }, { - "denom": "hash", - "exponent": 9, + "denom": "glto", + "exponent": 6, }, ], - "description": "Hash is the staking token of the Provenance Blockchain", - "display": "hash", + "description": "DeFi gaming platform built on Juno", + "display": "glto", "images": [ { "imageSync": { - "baseDenom": "nhash", - "chainName": "provenance", + "baseDenom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", + "chainName": "juno", }, - "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/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", "theme": { - "primaryColorHex": "#4c7cdc", + "primaryColorHex": "#501cad", }, }, ], "logoURIs": { - "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/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", }, - "name": "Provenance", - "symbol": "HASH", + "name": "Gelotto (Juno)", + "symbol": "GLTO.juno", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", + "base_denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47394,48 +50128,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317", + "base": "ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED", "denomUnits": [ { "aliases": [ - "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", + "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", ], - "denom": "ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317", + "denom": "ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED", "exponent": 0, }, { - "denom": "glx", + "denom": "gkey", "exponent": 6, }, ], - "description": "GLX is the staking token of the Galaxy Chain", - "display": "glx", + "description": "Gelotto Year 1 Grand Prize Token", + "display": "gkey", "images": [ { "imageSync": { - "baseDenom": "uglx", - "chainName": "galaxy", + "baseDenom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", + "chainName": "juno", }, - "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", + "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", "theme": { - "primaryColorHex": "#5e3be6", + "primaryColorHex": "#521caf", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Galaxy", - "symbol": "GLX", + "name": "GKey", + "symbol": "GKEY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", + "base_denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47445,44 +50179,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73", + "base": "ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7", "denomUnits": [ { "aliases": [ - "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", + "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", ], - "denom": "ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73", + "denom": "ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7", "exponent": 0, }, + { + "denom": "cre", + "exponent": 6, + }, ], - "description": "The DAO token to build consensus among Hong Kong People", - "display": "dhk", + "description": "The native token of Crescent", + "display": "cre", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "chainName": "juno", + "baseDenom": "ucre", + "chainName": "crescent", }, - "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", + "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", "theme": { - "primaryColorHex": "#fae204", + "primaryColorHex": "#3c2832", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "DHK", - "symbol": "DHK", + "name": "Crescent", + "symbol": "CRE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", + "base_denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47492,48 +50230,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13", + "base": "ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A", "denomUnits": [ { "aliases": [ - "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", ], - "denom": "ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13", + "denom": "ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A", "exponent": 0, }, { - "denom": "raw", + "denom": "lumen", "exponent": 6, }, ], - "description": "Token governance for Junoswap", - "display": "raw", + "description": "The native token of LumenX Network", + "display": "lumen", "images": [ { "imageSync": { - "baseDenom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "chainName": "juno", + "baseDenom": "ulumen", + "chainName": "lumenx", }, - "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", + "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", "theme": { - "primaryColorHex": "#f07c92", + "primaryColorHex": "#cb8b40", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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", + "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", }, - "name": "JunoSwap", - "symbol": "RAW", + "name": "LumenX", + "symbol": "LUMEN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "base_denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47543,48 +50284,68 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320", + "base": "ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78", "denomUnits": [ { "aliases": [ - "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", + "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", ], - "denom": "ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320", + "denom": "ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78", "exponent": 0, }, { - "denom": "meme", + "denom": "ORAI", "exponent": 6, }, ], - "description": "MEME Token (MEME) is the native staking token of the MEME Chain", - "display": "meme", + "description": "The native token of Oraichain", + "display": "ORAI", "images": [ { "imageSync": { - "baseDenom": "umeme", - "chainName": "meme", + "baseDenom": "orai", + "chainName": "oraichain", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg", "theme": { - "primaryColorHex": "#b7dcd8", + "backgroundColorHex": "#FFFFFF", + "circle": true, + "primaryColorHex": "#000000", + }, + }, + { + "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", + "theme": { + "circle": false, + "darkMode": true, + "primaryColorHex": "#FFFFFF", + }, + }, + { + "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", + "theme": { + "circle": false, + "darkMode": false, + "primaryColorHex": "#000000", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg", }, - "name": "MEME", - "symbol": "MEME", + "name": "Oraichain", + "symbol": "ORAI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", + "base_denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47594,46 +50355,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26", + "base": "ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68", "denomUnits": [ { "aliases": [ - "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", ], - "denom": "ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26", + "denom": "ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68", "exponent": 0, }, { - "denom": "asvt", - "exponent": 6, + "denom": "cudos", + "exponent": 18, }, ], - "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", - "display": "asvt", + "description": "The native token of the Cudos blockchain", + "display": "cudos", "images": [ { "imageSync": { - "baseDenom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "chainName": "juno", + "baseDenom": "acudos", + "chainName": "cudos", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png", + "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", "theme": { - "primaryColorHex": "#402e5d", + "primaryColorHex": "#5d95ec", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png", + "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", }, - "name": "Another.Software Validator Token", - "symbol": "ASVT", + "name": "Cudos", + "symbol": "CUDOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "base_denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47643,46 +50406,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390", + "base": "ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0", "denomUnits": [ { "aliases": [ - "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", + "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", ], - "denom": "ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390", + "denom": "ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0", "exponent": 0, }, { - "denom": "joe", + "denom": "USDX", "exponent": 6, }, ], - "description": "DAO dedicated to building tools on the Juno Network", - "display": "joe", + "description": "The native stablecoin of Kava", + "display": "USDX", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "chainName": "juno", + "baseDenom": "usdx", + "chainName": "kava", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.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", "theme": { - "primaryColorHex": "#f3baaf", + "primaryColorHex": "#04d4a3", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.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", }, - "name": "JoeDAO", - "symbol": "JOE", + "name": "Kava USDX", + "symbol": "USDX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", + "base_denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47692,48 +50457,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414", + "base": "ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C", "denomUnits": [ { "aliases": [ - "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", ], - "denom": "ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414", + "denom": "ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C", "exponent": 0, }, { - "denom": "luna", + "denom": "bld", "exponent": 6, }, ], - "description": "The native staking token of Terra.", - "display": "luna", + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "display": "bld", "images": [ { "imageSync": { - "baseDenom": "uluna", - "chainName": "terra2", + "baseDenom": "ubld", + "chainName": "agoric", }, - "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/agoric/images/bld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", "theme": { - "primaryColorHex": "#f4de6f", + "primaryColorHex": "#c42b44", }, }, ], "logoURIs": { - "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/agoric/images/bld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", }, - "name": "Luna", - "symbol": "LUNA", + "name": "Agoric", + "symbol": "BLD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "base_denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47743,48 +50508,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E", + "base": "ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F", "denomUnits": [ { "aliases": [ - "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", + "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", ], - "denom": "ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E", + "denom": "ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F", "exponent": 0, }, { - "denom": "atolo", + "denom": "ist", "exponent": 6, }, ], - "description": "Native token of Rizon Chain", - "display": "atolo", + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "display": "ist", "images": [ { "imageSync": { - "baseDenom": "uatolo", - "chainName": "rizon", + "baseDenom": "uist", + "chainName": "agoric", }, - "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/agoric/images/ist.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", "theme": { - "primaryColorHex": "#2b1c54", + "primaryColorHex": "#d485e2", }, }, ], "logoURIs": { - "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/agoric/images/ist.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", }, - "name": "Rizon", - "symbol": "ATOLO", + "name": "Inter Stable Token", + "symbol": "IST", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", + "base_denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47794,48 +50559,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00", + "base": "ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA", "denomUnits": [ { "aliases": [ - "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", + "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", ], - "denom": "ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00", + "denom": "ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA", "exponent": 0, }, { - "denom": "HARD", + "denom": "sejuno", "exponent": 6, }, ], - "description": "Governance token of Kava Lend Protocol", - "display": "HARD", + "description": "Staking derivative seJUNO for staked JUNO", + "display": "sejuno", "images": [ { "imageSync": { - "baseDenom": "hard", - "chainName": "kava", + "baseDenom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "chainName": "juno", }, - "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/sejuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg", "theme": { - "primaryColorHex": "#7b34ac", + "primaryColorHex": "#26363f", }, }, ], "logoURIs": { - "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/sejuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg", }, - "name": "Kava Hard", - "symbol": "HARD", + "name": "StakeEasy seJUNO", + "symbol": "SEJUNO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", + "base_denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47845,48 +50610,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7", + "base": "ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9", "denomUnits": [ { "aliases": [ - "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", + "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", ], - "denom": "ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7", + "denom": "ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9", "exponent": 0, }, { - "denom": "SWP", + "denom": "bjuno", "exponent": 6, }, ], - "description": "Governance token of Kava Swap Protocol", - "display": "SWP", + "description": "Staking derivative bJUNO for staked JUNO", + "display": "bjuno", "images": [ { "imageSync": { - "baseDenom": "swp", - "chainName": "kava", + "baseDenom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "chainName": "juno", }, - "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/juno/images/bjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg", "theme": { - "primaryColorHex": "#544cfc", + "primaryColorHex": "#254454", }, }, ], "logoURIs": { - "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/juno/images/bjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg", }, - "name": "Kava Swap", - "symbol": "SWP", + "name": "StakeEasy bJUNO", + "symbol": "BJUNO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", + "base_denom": "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47896,52 +50661,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C", + "base": "ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A", "denomUnits": [ { "aliases": [ - "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", ], - "denom": "ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C", + "denom": "ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A", "exponent": 0, }, { - "denom": "link", - "exponent": 18, + "denom": "strd", + "exponent": 6, }, ], - "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", - "display": "link", + "description": "The native token of Stride", + "display": "strd", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.svg", - }, { "imageSync": { - "baseDenom": "link-wei", - "chainName": "axelar", + "baseDenom": "ustrd", + "chainName": "stride", }, - "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/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg", "theme": { - "primaryColorHex": "#2c5cdc", + "primaryColorHex": "#e4047c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/link.axl.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", }, - "name": "Chainlink (Axelar)", - "symbol": "LINK.axl", + "name": "Stride", + "symbol": "STRD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "base_denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -47951,51 +50712,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1", + "base": "ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE", "denomUnits": [ { "aliases": [ - "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", + "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", ], - "denom": "ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1", + "denom": "ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE", "exponent": 0, }, { - "denom": "l1", - "exponent": 18, + "denom": "statom", + "exponent": 6, }, ], - "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", - "display": "l1", + "display": "statom", "images": [ { "imageSync": { - "baseDenom": "el1", - "chainName": "genesisl1", + "baseDenom": "stuatom", + "chainName": "stride", }, - "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/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#e40474", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg", }, - "name": "GenesisL1", - "symbol": "L1", + "name": "Stride Staked ATOM", + "symbol": "stATOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", + "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48005,46 +50762,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD", + "base": "ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98", "denomUnits": [ { "aliases": [ - "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", + "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", ], - "denom": "ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD", + "denom": "ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98", "exponent": 0, }, { - "denom": "aave", - "exponent": 18, + "denom": "ststars", + "exponent": 6, }, ], - "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.", - "display": "aave", + "display": "ststars", "images": [ { "imageSync": { - "baseDenom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "chainName": "ethereum", + "baseDenom": "stustars", + "chainName": "stride", + }, + "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", + "theme": { + "primaryColorHex": "#e40474", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.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", }, - "name": "Aave", - "symbol": "AAVE", + "name": "Stride Staked STARS", + "symbol": "stSTARS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", + "base_denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48054,46 +50812,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5", + "base": "ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46", "denomUnits": [ { "aliases": [ - "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", + "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", ], - "denom": "ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5", + "denom": "ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46", "exponent": 0, }, { - "denom": "ape", - "exponent": 18, + "denom": "solar", + "exponent": 6, }, ], - "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.", - "display": "ape", + "description": "Solarbank DAO Governance Token for speeding up the shift to renewable and green energy", + "display": "solar", "images": [ { "imageSync": { - "baseDenom": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "chainName": "ethereum", + "baseDenom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "chainName": "juno", + }, + "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", + "theme": { + "primaryColorHex": "#1c1c1b", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.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", }, - "name": "ApeCoin", - "symbol": "APE", + "name": "Solarbank DAO", + "symbol": "SOLAR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", + "base_denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48103,43 +50863,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0", + "base": "ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6", "denomUnits": [ { "aliases": [ - "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", ], - "denom": "ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0", + "denom": "ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6", "exponent": 0, }, { - "denom": "mkr", - "exponent": 18, + "denom": "seasy", + "exponent": 6, }, ], - "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", - "display": "mkr", + "description": "StakeEasy governance token", + "display": "seasy", "images": [ { "imageSync": { - "baseDenom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "chainName": "ethereum", + "baseDenom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "chainName": "juno", + }, + "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", + "theme": { + "primaryColorHex": "#2d2c2d", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "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", }, - "name": "Maker", - "symbol": "MKR", + "name": "StakeEasy SEASY", + "symbol": "SEASY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "base_denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48149,43 +50914,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD", + "base": "ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B", "denomUnits": [ { "aliases": [ - "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", + "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", ], - "denom": "ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD", + "denom": "ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B", "exponent": 0, }, { - "denom": "rai", - "exponent": 18, + "denom": "axl", + "exponent": 6, }, ], - "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.", - "display": "rai", + "description": "The native token of Axelar", + "display": "axl", "images": [ { "imageSync": { - "baseDenom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "chainName": "ethereum", + "baseDenom": "uaxl", + "chainName": "axelar", + }, + "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", + "theme": { + "primaryColorHex": "#040404", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.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", }, - "name": "Rai Reflex Index", - "symbol": "RAI", + "name": "Axelar", + "symbol": "AXL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", + "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48195,55 +50965,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B", + "base": "ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23", "denomUnits": [ { "aliases": [ - "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", + "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", ], - "denom": "ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B", + "denom": "ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23", "exponent": 0, }, { - "denom": "shib", + "denom": "rebus", "exponent": 18, }, ], - "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.", - "display": "shib", + "description": "REBUS, the native coin of the Rebus chain.", + "display": "rebus", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.svg", - }, { "imageSync": { - "baseDenom": "shib-wei", - "chainName": "axelar", + "baseDenom": "arebus", + "chainName": "rebus", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.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", "theme": { - "backgroundColorHex": "#00000000", - "primaryColorHex": "#FFA409", + "primaryColorHex": "#e75486", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shib.axl.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", }, - "name": "Shiba Inu (Axelar)", - "symbol": "SHIB.axl", + "name": "Rebus", + "symbol": "REBUS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", + "base_denom": "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48253,48 +51016,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87", + "base": "ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95", "denomUnits": [ { "aliases": [ - "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", ], - "denom": "ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87", + "denom": "ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95", "exponent": 0, }, { - "denom": "kuji", + "denom": "tori", "exponent": 6, }, ], - "description": "The native staking and governance token of the Kujira chain.", - "display": "kuji", + "description": "The native token of Teritori", + "display": "tori", "images": [ { "imageSync": { - "baseDenom": "ukuji", - "chainName": "kujira", + "baseDenom": "utori", + "chainName": "teritori", }, - "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/teritori/images/utori.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg", "theme": { - "primaryColorHex": "#e33b34", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/teritori/images/utori.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg", }, - "name": "Kujira", - "symbol": "KUJI", + "name": "Teritori", + "symbol": "TORI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "base_denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48304,48 +51067,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF", + "base": "ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885", "denomUnits": [ { "aliases": [ - "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", + "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", ], - "denom": "ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF", + "denom": "ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885", "exponent": 0, }, { - "denom": "tgd", + "denom": "stjuno", "exponent": 6, }, ], - "description": "The native token of Tgrade", - "display": "tgd", + "display": "stjuno", "images": [ { "imageSync": { - "baseDenom": "utgd", - "chainName": "tgrade", + "baseDenom": "stujuno", + "chainName": "stride", }, - "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", + "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", "theme": { - "primaryColorHex": "#a7248a", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Tgrade", - "symbol": "TGD", + "name": "Stride Staked JUNO", + "symbol": "stJUNO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", + "base_denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48355,43 +51117,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00", + "base": "ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357", "denomUnits": [ { "aliases": [ - "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", + "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", ], - "denom": "ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00", + "denom": "ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357", "exponent": 0, }, { - "denom": "echelon", - "exponent": 18, + "denom": "stosmo", + "exponent": 6, }, ], - "description": "Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics", - "display": "echelon", + "display": "stosmo", "images": [ { "imageSync": { - "baseDenom": "aechelon", - "chainName": "echelon", + "baseDenom": "stuosmo", + "chainName": "stride", + }, + "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", + "theme": { + "primaryColorHex": "#e40474", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.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", }, - "name": "Echelon", - "symbol": "ECH", + "name": "Stride Staked OSMO", + "symbol": "stOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", + "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48401,45 +51167,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11", + "base": "ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699", "denomUnits": [ { "aliases": [ - "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", ], - "denom": "ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11", + "denom": "ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699", "exponent": 0, }, { - "denom": "odin", + "denom": "muse", "exponent": 6, }, ], - "description": "Staking and governance token for ODIN Protocol", - "display": "odin", + "description": "The native token cw20 for MuseDAO on Juno Chain", + "display": "muse", "images": [ { "imageSync": { - "baseDenom": "loki", - "chainName": "odin", + "baseDenom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "chainName": "juno", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", + "theme": { + "primaryColorHex": "#32255f", }, - "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", }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", }, - "name": "Odin Protocol", - "symbol": "ODIN", + "name": "MuseDAO", + "symbol": "MUSE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "base_denom": "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48449,51 +51216,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558", + "base": "ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4", "denomUnits": [ { "aliases": [ - "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", + "ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB", ], - "denom": "ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558", + "denom": "ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4", "exponent": 0, }, { - "denom": "geo", - "exponent": 6, + "denom": "lamb", + "exponent": 18, }, ], - "description": "GEO token for ODIN Protocol", - "display": "geo", + "description": "The native token of Lambda", + "display": "lamb", "images": [ { "imageSync": { - "baseDenom": "mGeo", - "chainName": "odin", + "baseDenom": "ulamb", + "chainName": "lambda", }, - "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", + "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", "theme": { - "primaryColorHex": "#c3ebf3", + "primaryColorHex": "#e41c54", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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", + "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", }, - "name": "GEO", - "symbol": "GEO", + "name": "Lambda", + "symbol": "LAMB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", + "base_denom": "ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48503,51 +51267,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE", + "base": "ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E", "denomUnits": [ { "aliases": [ - "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", + "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", ], - "denom": "ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE", + "denom": "ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E", "exponent": 0, }, { - "denom": "O9W", + "denom": "usk", "exponent": 6, }, ], - "description": "O9W token for ODIN Protocol", - "display": "O9W", + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "display": "usk", "images": [ { "imageSync": { - "baseDenom": "mO9W", - "chainName": "odin", + "baseDenom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chainName": "kujira", }, - "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", + "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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#2e363f", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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", + "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", }, - "name": "O9W", - "symbol": "O9W", + "name": "USK", + "symbol": "USK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", + "base_denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48557,46 +51318,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1", + "base": "ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400", "denomUnits": [ { "aliases": [ - "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", + "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", ], - "denom": "ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1", + "denom": "ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400", "exponent": 0, }, { - "denom": "lvn", - "exponent": 6, + "denom": "FUND", + "exponent": 9, }, ], - "description": "ELEVENPARIS loyalty token on KiChain", - "display": "lvn", + "description": "Staking and governance coin for the Unification Blockchain", + "display": "FUND", "images": [ { "imageSync": { - "baseDenom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "chainName": "kichain", + "baseDenom": "nund", + "chainName": "unification", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png", + "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", "theme": { - "primaryColorHex": "#683480", + "primaryColorHex": "#2279c0", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png", + "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", }, - "name": "LVN", - "symbol": "LVN.ki", + "name": "Unification", + "symbol": "FUND", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", + "base_denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48606,48 +51369,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA", + "base": "ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4", "denomUnits": [ { "aliases": [ - "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", ], - "denom": "ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA", + "denom": "ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4", "exponent": 0, }, { - "denom": "wglmr", - "exponent": 18, + "denom": "jkl", + "exponent": 6, }, ], - "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.", - "display": "wglmr", + "description": "The native staking and governance token of Jackal.", + "display": "jkl", "images": [ { "imageSync": { - "baseDenom": "Wei", - "chainName": "moonbeam", + "baseDenom": "ujkl", + "chainName": "jackal", }, - "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", + "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", "theme": { - "primaryColorHex": "#e4147c", + "primaryColorHex": "#dbdbcb", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Moonbeam", - "symbol": "GLMR", + "name": "Jackal", + "symbol": "JKL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "base_denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48657,59 +51420,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF", + "base": "ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6", "denomUnits": [ { "aliases": [ - "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3", ], - "denom": "ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF", + "denom": "ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6", "exponent": 0, }, { - "denom": "glto", + "denom": "alter", "exponent": 6, }, ], - "description": "DeFi gaming platform built on Juno", - "display": "glto", + "description": "The native token cw20 for Alter on Secret Network", + "display": "alter", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", - "theme": { - "primaryColorHex": "#501cad", - }, - }, - { - "imageSync": { - "baseDenom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "chainName": "juno", + "baseDenom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", + "chainName": "secretnetwork", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "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", "theme": { - "primaryColorHex": "#501cad", + "primaryColorHex": "#694c90", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "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", }, - "name": "Gelotto (Juno)", - "symbol": "GLTO.juno", + "name": "Alter", + "symbol": "ALTER", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "base_denom": "ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48719,48 +51471,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED", + "base": "ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC", "denomUnits": [ { "aliases": [ - "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", + "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", ], - "denom": "ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED", + "denom": "ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC", "exponent": 0, }, { - "denom": "gkey", + "denom": "butt", "exponent": 6, }, ], - "description": "Gelotto Year 1 Grand Prize Token", - "display": "gkey", + "description": "The native token cw20 for Button on Secret Network", + "display": "butt", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "chainName": "juno", + "baseDenom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", + "chainName": "secretnetwork", }, - "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/secretnetwork/images/butt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg", "theme": { - "primaryColorHex": "#521caf", + "primaryColorHex": "#7b04eb", }, }, ], "logoURIs": { - "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/secretnetwork/images/butt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg", }, - "name": "GKey", - "symbol": "GKEY", + "name": "Button", + "symbol": "BUTT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", + "base_denom": "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48770,48 +51522,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7", + "base": "ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC", "denomUnits": [ { "aliases": [ - "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", + "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", ], - "denom": "ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7", + "denom": "ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC", "exponent": 0, }, { - "denom": "cre", - "exponent": 6, + "denom": "shd", + "exponent": 8, }, ], - "description": "The native token of Crescent", - "display": "cre", + "description": "The native token cw20 for Shade on Secret Network", + "display": "shd", "images": [ { "imageSync": { - "baseDenom": "ucre", - "chainName": "crescent", - }, - "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", - "theme": { - "primaryColorHex": "#3c2832", + "baseDenom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", + "chainName": "secretnetwork", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg", }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg", }, - "name": "Crescent", - "symbol": "CRE", + "name": "Shade (old)", + "symbol": "SHD(old)", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", + "base_denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48821,51 +51571,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A", + "base": "ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA", "denomUnits": [ { "aliases": [ - "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", + "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", ], - "denom": "ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A", + "denom": "ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA", "exponent": 0, }, { - "denom": "lumen", - "exponent": 6, + "denom": "sienna", + "exponent": 18, }, ], - "description": "The native token of LumenX Network", - "display": "lumen", + "description": "The native token cw20 for SIENNA on Secret Network", + "display": "sienna", "images": [ { "imageSync": { - "baseDenom": "ulumen", - "chainName": "lumenx", + "baseDenom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", + "chainName": "secretnetwork", }, - "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/secretnetwork/images/sienna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg", "theme": { - "primaryColorHex": "#cb8b40", + "primaryColorHex": "#2c2c2c", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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/secretnetwork/images/sienna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg", }, - "name": "LumenX", - "symbol": "LUMEN", + "name": "SIENNA", + "symbol": "SIENNA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", + "base_denom": "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48875,68 +51622,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78", + "base": "ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B", "denomUnits": [ { "aliases": [ - "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", + "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", ], - "denom": "ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78", + "denom": "ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B", "exponent": 0, }, { - "denom": "ORAI", + "denom": "stkd-scrt", "exponent": 6, }, ], - "description": "The native token of Oraichain", - "display": "ORAI", + "description": "The native token cw20 for SCRT Staking Derivatives on Secret Network", + "display": "stkd-scrt", "images": [ { "imageSync": { - "baseDenom": "orai", - "chainName": "oraichain", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.svg", - "theme": { - "backgroundColorHex": "#FFFFFF", - "circle": true, - "primaryColorHex": "#000000", - }, - }, - { - "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", - "theme": { - "circle": true, - "darkMode": true, - "primaryColorHex": "#FFFFFF", + "baseDenom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", + "chainName": "secretnetwork", }, - }, - { - "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", + "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", "theme": { - "circle": true, - "darkMode": false, - "primaryColorHex": "#000000", + "primaryColorHex": "#b8a2dc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-token.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", }, - "name": "Oraichain", - "symbol": "ORAI", + "name": "SCRT Staking Derivatives", + "symbol": "stkd-SCRT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", + "base_denom": "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48946,48 +51673,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68", + "base": "ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531", "denomUnits": [ { "aliases": [ - "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", ], - "denom": "ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68", + "denom": "ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531", "exponent": 0, }, { - "denom": "cudos", - "exponent": 18, + "denom": "bze", + "exponent": 6, }, ], - "description": "The native token of the Cudos blockchain", - "display": "cudos", + "description": "BeeZee native blockchain", + "display": "bze", "images": [ { "imageSync": { - "baseDenom": "acudos", - "chainName": "cudos", + "baseDenom": "ubze", + "chainName": "beezee", }, - "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", + "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", "theme": { - "primaryColorHex": "#5d95ec", + "primaryColorHex": "#079fd7", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Cudos", - "symbol": "CUDOS", + "name": "BeeZee", + "symbol": "BZE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "base_denom": "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -48997,48 +51724,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0", + "base": "ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14", "denomUnits": [ { "aliases": [ - "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", + "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", ], - "denom": "ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0", + "denom": "ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14", "exponent": 0, }, { - "denom": "USDX", + "denom": "fury", "exponent": 6, }, ], - "description": "The native stablecoin of Kava", - "display": "USDX", + "description": "The native token cw20 for Fanfury on Juno Chain", + "display": "fury", "images": [ { "imageSync": { - "baseDenom": "usdx", - "chainName": "kava", + "baseDenom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "chainName": "juno", }, - "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/fanfury.png", "theme": { - "primaryColorHex": "#04d4a3", + "primaryColorHex": "#14045c", }, }, ], "logoURIs": { - "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/fanfury.png", }, - "name": "Kava USDX", - "symbol": "USDX", + "name": "FURY.legacy", + "symbol": "FURY.juno", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", + "base_denom": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49048,48 +51773,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C", + "base": "ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D", "denomUnits": [ { "aliases": [ - "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", ], - "denom": "ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C", + "denom": "ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D", "exponent": 0, }, { - "denom": "bld", - "exponent": 6, + "denom": "acre", + "exponent": 18, }, ], - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", - "display": "bld", + "description": "The native EVM, governance and staking token of the Acrechain", + "display": "acre", "images": [ { "imageSync": { - "baseDenom": "ubld", - "chainName": "agoric", + "baseDenom": "aacre", + "chainName": "acrechain", }, - "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/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", "theme": { - "primaryColorHex": "#c42b44", + "primaryColorHex": "#4aa29e", }, }, ], "logoURIs": { - "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/acrechain/images/acre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", }, - "name": "Agoric", - "symbol": "BLD", + "name": "Acrechain", + "symbol": "ACRE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "base_denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49099,48 +51824,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F", + "base": "ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A", "denomUnits": [ { "aliases": [ - "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", ], - "denom": "ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F", + "denom": "ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A", "exponent": 0, }, { - "denom": "ist", + "denom": "cmst", "exponent": 6, }, ], - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "display": "ist", + "description": "Stable Token of Harbor protocol on Comdex network", + "display": "cmst", "images": [ { "imageSync": { - "baseDenom": "uist", - "chainName": "agoric", + "baseDenom": "ucmst", + "chainName": "comdex", }, - "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/comdex/images/cmst.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg", "theme": { - "primaryColorHex": "#d485e2", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/comdex/images/cmst.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg", }, - "name": "Inter Stable Token", - "symbol": "IST", + "name": "CMST", + "symbol": "CMST", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "base_denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49150,48 +51875,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA", + "base": "ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381", "denomUnits": [ { "aliases": [ - "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", + "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", ], - "denom": "ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA", + "denom": "ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381", "exponent": 0, }, { - "denom": "sejuno", - "exponent": 6, + "denom": "imv", + "exponent": 18, }, ], - "description": "Staking derivative seJUNO for staked JUNO", - "display": "sejuno", + "description": "The native EVM, governance and staking token of the Imversed", + "display": "imv", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "chainName": "juno", + "baseDenom": "aimv", + "chainName": "imversed", }, - "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/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg", "theme": { - "primaryColorHex": "#26363f", + "primaryColorHex": "#4c54e4", }, }, ], "logoURIs": { - "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/imversed/images/imversed.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg", }, - "name": "StakeEasy seJUNO", - "symbol": "SEJUNO", + "name": "Imversed", + "symbol": "IMV", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", + "base_denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49201,48 +51926,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9", + "base": "ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC", "denomUnits": [ { "aliases": [ - "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", + "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", ], - "denom": "ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9", + "denom": "ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC", "exponent": 0, }, { - "denom": "bjuno", + "denom": "medas", "exponent": 6, }, ], - "description": "Staking derivative bJUNO for staked JUNO", - "display": "bjuno", + "description": "The native token of Medas Digital Network", + "display": "medas", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", - "chainName": "juno", + "baseDenom": "umedas", + "chainName": "medasdigital", }, - "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/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg", "theme": { - "primaryColorHex": "#254454", + "primaryColorHex": "#147ccc", }, }, ], + "keywords": [ + "medas", + ], "logoURIs": { - "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/medasdigital/images/medas.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg", }, - "name": "StakeEasy bJUNO", - "symbol": "BJUNO", + "name": "Medas Digital Network", + "symbol": "MEDAS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", + "base_denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49252,48 +51980,53 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A", + "base": "ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89", "denomUnits": [ { "aliases": [ - "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", ], - "denom": "ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A", + "denom": "ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89", "exponent": 0, }, { - "denom": "strd", + "denom": "phmn", "exponent": 6, }, ], - "description": "The native token of Stride", - "display": "strd", + "description": "The native token cw20 for PHMN on Juno Chain", + "display": "phmn", + "extendedDescription": "$PHMN is the governance token of a distributed validator. Similar to PoS chains, each holder possesses voting rights proportionate to the number of locked tokens. PHMN holders can govern the POSTHUMAN validator via DAODAO. For instance, decisions such as diversifying the treasury, updating the validator's commission rate, or exiting the network are determined by the PHMN community.", "images": [ { "imageSync": { - "baseDenom": "ustrd", - "chainName": "stride", + "baseDenom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "chainName": "juno", }, - "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/juno/images/phmn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg", "theme": { - "primaryColorHex": "#e4047c", + "primaryColorHex": "#bbc2c6", }, }, ], "logoURIs": { - "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/juno/images/phmn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg", }, - "name": "Stride", - "symbol": "STRD", + "name": "POSTHUMAN", + "socials": { + "twitter": "https://twitter.com/POSTHUMAN_DVS", + "website": "https://posthuman.digital/", + }, + "symbol": "PHMN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "base_denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49303,47 +52036,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE", + "base": "ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211", "denomUnits": [ { "aliases": [ - "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", ], - "denom": "ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE", + "denom": "ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211", "exponent": 0, }, { - "denom": "statom", + "denom": "amber", "exponent": 6, }, ], - "display": "statom", + "description": "The native token cw20 for Amber on Secret Network", + "display": "amber", "images": [ { "imageSync": { - "baseDenom": "stuatom", - "chainName": "stride", + "baseDenom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", + "chainName": "secretnetwork", }, - "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/secretnetwork/images/amber.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#f2b854", }, }, ], "logoURIs": { - "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/secretnetwork/images/amber.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg", }, - "name": "Stride Staked ATOM", - "symbol": "stATOM", + "name": "Amber", + "symbol": "AMBER", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "base_denom": "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49353,47 +52087,54 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98", + "base": "ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A", "denomUnits": [ { "aliases": [ - "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", + "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", ], - "denom": "ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98", + "denom": "ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A", "exponent": 0, }, { - "denom": "ststars", - "exponent": 6, + "denom": "nom", + "exponent": 18, }, ], - "display": "ststars", + "description": "The native token of Onomy Protocol", + "display": "nom", "images": [ { "imageSync": { - "baseDenom": "stustars", - "chainName": "stride", + "baseDenom": "anom", + "chainName": "onomy", }, - "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/onomy/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#1c1c28", }, }, ], + "keywords": [ + "dex", + "stablecoin", + "bridge", + "staking", + ], "logoURIs": { - "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/onomy/images/nom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg", }, - "name": "Stride Staked STARS", - "symbol": "stSTARS", + "name": "Onomy", + "symbol": "NOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", + "base_denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49403,48 +52144,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46", + "base": "ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A", "denomUnits": [ { "aliases": [ - "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", + "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", ], - "denom": "ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46", + "denom": "ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A", "exponent": 0, }, { - "denom": "solar", + "aliases": [ + "stk/atom", + ], + "denom": "stkatom", "exponent": 6, }, ], - "description": "Solarbank DAO Governance Token for speeding up the shift to renewable and green energy", - "display": "solar", + "description": "PSTAKE Liquid-Staked ATOM", + "display": "stkatom", "images": [ { "imageSync": { - "baseDenom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", - "chainName": "juno", + "baseDenom": "stk/uatom", + "chainName": "persistence", }, - "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/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg", "theme": { - "primaryColorHex": "#1c1c1b", + "primaryColorHex": "#c4444c", }, }, ], "logoURIs": { - "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", - }, - "name": "Solarbank DAO", - "symbol": "SOLAR", + "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", + }, + "name": "PSTAKE staked ATOM", + "symbol": "stkATOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", + "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49454,48 +52198,44 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6", + "base": "ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877", "denomUnits": [ { "aliases": [ - "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", + "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", ], - "denom": "ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6", + "denom": "ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877", "exponent": 0, }, - { - "denom": "seasy", - "exponent": 6, - }, ], - "description": "StakeEasy governance token", - "display": "seasy", + "description": "The native staking and governance token of the Dyson Protocol", + "display": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", "images": [ { "imageSync": { - "baseDenom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", - "chainName": "juno", + "baseDenom": "dys", + "chainName": "dyson", }, - "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/dyson/images/dys.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg", "theme": { - "primaryColorHex": "#2d2c2d", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/dyson/images/dys.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg", }, - "name": "StakeEasy SEASY", - "symbol": "SEASY", + "name": "Dyson Protocol", + "symbol": "DYS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", + "base_denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49505,48 +52245,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B", + "base": "ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590", "denomUnits": [ { "aliases": [ - "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", ], - "denom": "ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B", + "denom": "ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590", "exponent": 0, }, { - "denom": "axl", + "denom": "hopers", "exponent": 6, }, ], - "description": "The native token of Axelar", - "display": "axl", + "description": "The native token cw20 for Hopers on Juno Chain", + "display": "hopers", "images": [ { "imageSync": { - "baseDenom": "uaxl", - "chainName": "axelar", + "baseDenom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "chainName": "juno", }, - "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/hopers.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#08d890", }, }, ], "logoURIs": { - "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/hopers.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg", }, - "name": "Axelar", - "symbol": "AXL", + "name": "Hopers", + "symbol": "HOPERS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "base_denom": "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49556,48 +52296,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23", + "base": "ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8", "denomUnits": [ { "aliases": [ - "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", + "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", ], - "denom": "ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23", + "denom": "ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8", "exponent": 0, }, { - "denom": "rebus", + "denom": "arusd", "exponent": 18, }, ], - "description": "REBUS, the native coin of the Rebus chain.", - "display": "rebus", + "description": "Overcollateralized stable coin for Arable derivatives v1", + "display": "arusd", "images": [ { "imageSync": { - "baseDenom": "arebus", - "chainName": "rebus", + "baseDenom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "chainName": "acrechain", }, - "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/acrechain/images/arusd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg", "theme": { - "primaryColorHex": "#e75486", + "primaryColorHex": "#77b64f", }, }, ], "logoURIs": { - "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/acrechain/images/arusd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg", }, - "name": "Rebus", - "symbol": "REBUS", + "name": "Arable USD", + "symbol": "arUSD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", + "base_denom": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49607,48 +52347,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95", + "base": "ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F", "denomUnits": [ { "aliases": [ - "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", ], - "denom": "ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95", + "denom": "ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F", "exponent": 0, }, { - "denom": "tori", - "exponent": 6, + "denom": "planq", + "exponent": 18, }, ], - "description": "The native token of Teritori", - "display": "tori", + "description": "The native EVM, governance and staking token of the Planq Network", + "display": "planq", "images": [ { "imageSync": { - "baseDenom": "utori", - "chainName": "teritori", + "baseDenom": "aplanq", + "chainName": "planq", }, - "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/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#d4f3fb", }, }, ], "logoURIs": { - "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/planq/images/planq.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg", }, - "name": "Teritori", - "symbol": "TORI", + "name": "Planq", + "symbol": "PLQ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "base_denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49658,47 +52398,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885", + "base": "ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD", "denomUnits": [ { "aliases": [ - "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", + "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", ], - "denom": "ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885", + "denom": "ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD", "exponent": 0, }, { - "denom": "stjuno", - "exponent": 6, + "denom": "ftm", + "exponent": 18, }, ], - "display": "stjuno", + "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.", + "display": "ftm", "images": [ { "imageSync": { - "baseDenom": "stujuno", - "chainName": "stride", + "baseDenom": "wei", + "chainName": "fantom", }, - "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/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#1c6cfc", }, }, ], "logoURIs": { - "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/_non-cosmos/fantom/images/ftm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg", }, - "name": "Stride Staked JUNO", - "symbol": "stJUNO", + "name": "Fantom", + "symbol": "FTM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", + "base_denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49708,47 +52449,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357", + "base": "ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214", "denomUnits": [ { "aliases": [ - "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", ], - "denom": "ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357", + "denom": "ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214", "exponent": 0, }, { - "denom": "stosmo", - "exponent": 6, + "denom": "canto", + "exponent": 18, }, ], - "display": "stosmo", + "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", + "display": "canto", "images": [ { "imageSync": { - "baseDenom": "stuosmo", - "chainName": "stride", + "baseDenom": "acanto", + "chainName": "canto", }, - "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/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#1c1f1f", }, }, ], "logoURIs": { - "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/canto/images/canto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg", }, - "name": "Stride Staked OSMO", - "symbol": "stOSMO", + "name": "Canto", + "symbol": "CANTO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "base_denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49758,46 +52500,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699", + "base": "ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1", "denomUnits": [ { "aliases": [ - "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", + "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", ], - "denom": "ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699", + "denom": "ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1", "exponent": 0, }, { - "denom": "muse", + "aliases": [], + "denom": "qstars", "exponent": 6, }, ], - "description": "The native token cw20 for MuseDAO on Juno Chain", - "display": "muse", + "description": "Quicksilver Liquid Staked STARS", + "display": "qstars", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", - "chainName": "juno", + "baseDenom": "uqstars", + "chainName": "quicksilver", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", + "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", "theme": { - "primaryColorHex": "#32255f", + "primaryColorHex": "#fc944c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", + "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", }, - "name": "MuseDAO", - "symbol": "MUSE", + "name": "Quicksilver Liquid Staked STARS", + "symbol": "qSTARS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", + "base_denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49807,48 +52552,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4", + "base": "ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463", "denomUnits": [ { "aliases": [ - "ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB", + "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", ], - "denom": "ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4", + "denom": "ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463", "exponent": 0, }, { - "denom": "lamb", - "exponent": 18, + "denom": "wynd", + "exponent": 6, }, ], - "description": "The native token of Lambda", - "display": "lamb", + "description": "WYND DAO Governance Token", + "display": "wynd", "images": [ { "imageSync": { - "baseDenom": "ulamb", - "chainName": "lambda", + "baseDenom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "chainName": "juno", }, - "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/juno/images/wynd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg", "theme": { - "primaryColorHex": "#e41c54", + "primaryColorHex": "#6bcc95", }, }, ], "logoURIs": { - "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/juno/images/wynd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg", }, - "name": "Lambda", - "symbol": "LAMB", + "name": "Wynd DAO Governance Token", + "symbol": "WYND", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB", + "base_denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49858,48 +52603,53 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E", + "base": "ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766", "denomUnits": [ { "aliases": [ - "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", ], - "denom": "ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E", + "denom": "ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766", "exponent": 0, }, { - "denom": "usk", + "denom": "polygon-usdc", "exponent": 6, }, ], - "description": "The native over-collateralized stablecoin from the Kujira chain.", - "display": "usk", + "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.", + "display": "polygon-usdc", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg", + }, { "imageSync": { - "baseDenom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chainName": "kujira", + "baseDenom": "polygon-uusdc", + "chainName": "axelar", }, - "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/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", "theme": { - "primaryColorHex": "#2e363f", + "primaryColorHex": "#2474cc", }, }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg", }, - "name": "USK", - "symbol": "USK", + "name": "USDC (Ethereum) (Polygon via Axelar)", + "symbol": "USDC.e.matic.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "base_denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49909,48 +52659,53 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400", + "base": "ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3", "denomUnits": [ { "aliases": [ - "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", ], - "denom": "ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400", + "denom": "ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3", "exponent": 0, }, { - "denom": "FUND", - "exponent": 9, + "denom": "avalanche-usdc", + "exponent": 6, }, ], - "description": "Staking and governance coin for the Unification Blockchain", - "display": "FUND", + "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.", + "display": "avalanche-usdc", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg", + }, { "imageSync": { - "baseDenom": "nund", - "chainName": "unification", + "baseDenom": "avalanche-uusdc", + "chainName": "axelar", }, - "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/axelar/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", "theme": { - "primaryColorHex": "#2279c0", + "primaryColorHex": "#2474cc", }, }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg", }, - "name": "Unification", - "symbol": "FUND", + "name": "USD Coin (Avalanche)", + "symbol": "USDC.avax.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "base_denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -49960,48 +52715,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4", + "base": "ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172", "denomUnits": [ { "aliases": [ - "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", + "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", ], - "denom": "ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4", + "denom": "ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172", "exponent": 0, }, { - "denom": "jkl", + "denom": "MARS.old", "exponent": 6, }, ], - "description": "The native staking and governance token of Jackal.", - "display": "jkl", + "description": "Mars Protocol token (pre-migration)", + "display": "MARS.old", "images": [ { "imageSync": { - "baseDenom": "ujkl", - "chainName": "jackal", + "baseDenom": "umars", + "chainName": "mars", }, - "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/mars/images/mars-token-ibc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg", "theme": { - "primaryColorHex": "#dbdbcb", + "primaryColorHex": "#000000", }, }, ], "logoURIs": { - "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/mars/images/mars-token-ibc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg", }, - "name": "Jackal", - "symbol": "JKL", + "name": "Mars Protocol token (Mars Hub)", + "symbol": "MARS.mars", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", + "base_denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50011,48 +52766,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6", + "base": "ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819", "denomUnits": [ { "aliases": [ - "ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3", + "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", ], - "denom": "ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6", + "denom": "ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819", "exponent": 0, }, { - "denom": "alter", - "exponent": 6, + "denom": "cnto", + "exponent": 18, }, ], - "description": "The native token cw20 for Alter on Secret Network", - "display": "alter", + "description": "Ciento Exchange Token", + "display": "cnto", "images": [ { "imageSync": { - "baseDenom": "cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej", - "chainName": "secretnetwork", + "baseDenom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "chainName": "acrechain", }, - "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/acrechain/images/cnto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg", "theme": { - "primaryColorHex": "#694c90", + "primaryColorHex": "#ecc53b", }, }, ], "logoURIs": { - "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/acrechain/images/cnto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg", }, - "name": "Alter", - "symbol": "ALTER", + "name": "Ciento Token", + "symbol": "CNTO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3", + "base_denom": "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50062,48 +52817,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC", + "base": "ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49", "denomUnits": [ { "aliases": [ - "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", + "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", ], - "denom": "ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC", + "denom": "ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49", "exponent": 0, }, { - "denom": "butt", + "denom": "stluna", "exponent": 6, }, ], - "description": "The native token cw20 for Button on Secret Network", - "display": "butt", + "display": "stluna", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt", - "chainName": "secretnetwork", + "baseDenom": "stuluna", + "chainName": "stride", }, - "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/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg", "theme": { - "primaryColorHex": "#7b04eb", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "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/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg", }, - "name": "Button", - "symbol": "BUTT", + "name": "Stride Staked LUNA", + "symbol": "stLUNA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", + "base_denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50113,46 +52867,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC", + "base": "ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303", "denomUnits": [ { "aliases": [ - "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", + "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", ], - "denom": "ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC", + "denom": "ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303", "exponent": 0, }, { - "denom": "shd", - "exponent": 8, + "denom": "stevmos", + "exponent": 18, }, ], - "description": "The native token cw20 for Shade on Secret Network", - "display": "shd", + "display": "stevmos", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d", - "chainName": "secretnetwork", + "baseDenom": "staevmos", + "chainName": "stride", + }, + "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", + "theme": { + "primaryColorHex": "#e40474", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg", }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg", + "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", }, - "name": "Shade (old)", - "symbol": "SHD(old)", + "name": "Stride Staked EVMOS", + "symbol": "stEVMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", + "base_denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50162,48 +52917,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA", + "base": "ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01", "denomUnits": [ { "aliases": [ - "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", + "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", ], - "denom": "ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA", + "denom": "ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01", "exponent": 0, }, { - "denom": "sienna", - "exponent": 18, + "denom": "nride", + "exponent": 6, }, ], - "description": "The native token cw20 for SIENNA on Secret Network", - "display": "sienna", + "description": "nRide Token", + "display": "nride", + "extendedDescription": "nRide is developing a uber-like ride-hailing protocol, leveraging cosmwasm smart-contracts for payment, driver registration and text-messaging between the rider and the driver, to create a trustless public transportation environment for any cab or taxi company to use.", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4", - "chainName": "secretnetwork", + "baseDenom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", + "chainName": "juno", }, - "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/juno/images/nride.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg", "theme": { - "primaryColorHex": "#2c2c2c", + "primaryColorHex": "#050505", }, }, ], "logoURIs": { - "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/juno/images/nride.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg", }, - "name": "SIENNA", - "symbol": "SIENNA", + "name": "nRide Token", + "symbol": "NRIDE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", + "base_denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50213,48 +52969,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B", + "base": "ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76", "denomUnits": [ { "aliases": [ - "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", + "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", ], - "denom": "ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B", + "denom": "ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76", "exponent": 0, }, { - "denom": "stkd-scrt", + "denom": "ebl", "exponent": 6, }, ], - "description": "The native token cw20 for SCRT Staking Derivatives on Secret Network", - "display": "stkd-scrt", + "description": "The native staking token of 8ball.", + "display": "ebl", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4", - "chainName": "secretnetwork", + "baseDenom": "uebl", + "chainName": "8ball", }, - "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/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg", "theme": { - "primaryColorHex": "#b8a2dc", + "primaryColorHex": "#dbdbdb", }, }, ], "logoURIs": { - "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/8ball/images/8ball.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg", }, - "name": "SCRT Staking Derivatives", - "symbol": "stkd-SCRT", + "name": "8ball", + "symbol": "EBL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", + "base_denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50264,48 +53020,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531", + "base": "ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689", "denomUnits": [ { "aliases": [ - "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", + "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", ], - "denom": "ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531", + "denom": "ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689", "exponent": 0, }, { - "denom": "bze", + "aliases": [], + "denom": "qatom", "exponent": 6, }, ], - "description": "BeeZee native blockchain", - "display": "bze", + "description": "Quicksilver Liquid Staked ATOM", + "display": "qatom", "images": [ { "imageSync": { - "baseDenom": "ubze", - "chainName": "beezee", + "baseDenom": "uqatom", + "chainName": "quicksilver", }, - "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/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg", "theme": { - "primaryColorHex": "#079fd7", + "primaryColorHex": "#fc944c", }, }, ], "logoURIs": { - "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/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg", }, - "name": "BeeZee", - "symbol": "BZE", + "name": "Quicksilver Liquid Staked ATOM", + "symbol": "qATOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", + "base_denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50315,46 +53072,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14", + "base": "ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E", "denomUnits": [ { "aliases": [ - "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", + "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", ], - "denom": "ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14", + "denom": "ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E", "exponent": 0, }, { - "denom": "fury", + "denom": "harbor", "exponent": 6, }, ], - "description": "The native token cw20 for Fanfury on Juno Chain", - "display": "fury", + "description": "Governance Token of Harbor protocol on Comdex network", + "display": "harbor", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", - "chainName": "juno", + "baseDenom": "uharbor", + "chainName": "comdex", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.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", "theme": { - "primaryColorHex": "#14045c", + "primaryColorHex": "#645ca4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.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", }, - "name": "FURY.legacy", - "symbol": "FURY.juno", + "name": "Harbor", + "symbol": "HARBOR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", + "base_denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50364,48 +53123,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D", + "base": "ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD", "denomUnits": [ { "aliases": [ - "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", + "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", ], - "denom": "ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D", + "denom": "ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD", "exponent": 0, }, { - "denom": "acre", - "exponent": 18, + "aliases": [], + "denom": "qregen", + "exponent": 6, }, ], - "description": "The native EVM, governance and staking token of the Acrechain", - "display": "acre", + "description": "Quicksilver Liquid Staked REGEN", + "display": "qregen", "images": [ { "imageSync": { - "baseDenom": "aacre", - "chainName": "acrechain", + "baseDenom": "uqregen", + "chainName": "quicksilver", }, - "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/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg", "theme": { - "primaryColorHex": "#4aa29e", + "primaryColorHex": "#fc944c", }, }, ], "logoURIs": { - "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/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg", }, - "name": "Acrechain", - "symbol": "ACRE", + "name": "Quicksilver Liquid Staked Regen", + "symbol": "qREGEN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", + "base_denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50415,48 +53175,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A", + "base": "ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18", "denomUnits": [ { "aliases": [ - "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", ], - "denom": "ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A", + "denom": "ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18", "exponent": 0, }, { - "denom": "cmst", + "denom": "fox", "exponent": 6, }, ], - "description": "Stable Token of Harbor protocol on Comdex network", - "display": "cmst", + "description": "Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.", + "display": "fox", "images": [ { "imageSync": { - "baseDenom": "ucmst", - "chainName": "comdex", + "baseDenom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", + "chainName": "juno", }, - "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/juno/images/fox.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#ee5f06", }, }, ], "logoURIs": { - "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/juno/images/fox.png", }, - "name": "CMST", - "symbol": "CMST", + "name": "Juno Fox", + "symbol": "FOX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "base_denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50466,48 +53224,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381", + "base": "ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059", "denomUnits": [ { "aliases": [ - "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", + "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", ], - "denom": "ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381", + "denom": "ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059", "exponent": 0, }, { - "denom": "imv", - "exponent": 18, + "aliases": [], + "denom": "qck", + "exponent": 6, }, ], - "description": "The native EVM, governance and staking token of the Imversed", - "display": "imv", + "description": "QCK - native token of Quicksilver", + "display": "qck", "images": [ { "imageSync": { - "baseDenom": "aimv", - "chainName": "imversed", + "baseDenom": "uqck", + "chainName": "quicksilver", }, - "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/quicksilver/images/qck.png", "theme": { - "primaryColorHex": "#4c54e4", + "primaryColorHex": "#b2b2b2", }, }, ], "logoURIs": { - "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/quicksilver/images/qck.png", }, - "name": "Imversed", - "symbol": "IMV", + "name": "Quicksilver", + "symbol": "QCK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", + "base_denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50517,51 +53274,51 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC", + "base": "ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0", "denomUnits": [ { "aliases": [ - "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", ], - "denom": "ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC", + "denom": "ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0", "exponent": 0, }, { - "denom": "medas", + "denom": "ARKH", "exponent": 6, }, ], - "description": "The native token of Medas Digital Network", - "display": "medas", + "description": "The native token of Arkhadian", + "display": "ARKH", "images": [ { "imageSync": { - "baseDenom": "umedas", - "chainName": "medasdigital", + "baseDenom": "arkh", + "chainName": "arkh", }, - "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/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg", "theme": { - "primaryColorHex": "#147ccc", + "primaryColorHex": "#bdbb82", }, }, ], "keywords": [ - "medas", + "osmosis_unstable", ], "logoURIs": { - "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/arkh/images/arkh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg", }, - "name": "Medas Digital Network", - "symbol": "MEDAS", + "name": "Arkhadian", + "symbol": "ARKH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "base_denom": "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50571,53 +53328,49 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89", + "base": "ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76", "denomUnits": [ { "aliases": [ - "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", ], - "denom": "ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89", + "denom": "ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76", "exponent": 0, }, { - "denom": "phmn", + "aliases": [], + "denom": "qosmo", "exponent": 6, }, ], - "description": "The native token cw20 for PHMN on Juno Chain", - "display": "phmn", - "extendedDescription": "$PHMN is the governance token of a distributed validator. Similar to PoS chains, each holder possesses voting rights proportionate to the number of locked tokens. PHMN holders can govern the POSTHUMAN validator via DAODAO. For instance, decisions such as diversifying the treasury, updating the validator's commission rate, or exiting the network are determined by the PHMN community.", + "description": "Quicksilver Liquid Staked OSMO", + "display": "qosmo", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", - "chainName": "juno", + "baseDenom": "uqosmo", + "chainName": "quicksilver", }, - "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/quicksilver/images/qosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg", "theme": { - "primaryColorHex": "#bbc2c6", + "primaryColorHex": "#fc944c", }, }, ], "logoURIs": { - "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", - }, - "name": "POSTHUMAN", - "socials": { - "twitter": "https://twitter.com/POSTHUMAN_DVS", - "website": "https://posthuman.digital/", + "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", }, - "symbol": "PHMN", + "name": "Quicksilver Liquid Staked OSMO", + "symbol": "qOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "base_denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50627,48 +53380,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211", + "base": "ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3", "denomUnits": [ { "aliases": [ - "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", + "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", ], - "denom": "ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211", + "denom": "ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3", "exponent": 0, }, { - "denom": "amber", + "denom": "frienzies", "exponent": 6, }, ], - "description": "The native token cw20 for Amber on Secret Network", - "display": "amber", + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "display": "frienzies", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852", - "chainName": "secretnetwork", + "baseDenom": "ufrienzies", + "chainName": "noble", }, - "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/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg", "theme": { - "primaryColorHex": "#f2b854", + "primaryColorHex": "#04041c", }, }, ], "logoURIs": { - "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/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg", }, - "name": "Amber", - "symbol": "AMBER", + "name": "Frienzies", + "symbol": "FRNZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", + "base_denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50678,54 +53431,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A", + "base": "ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004", "denomUnits": [ { "aliases": [ - "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", + "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", ], - "denom": "ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A", + "denom": "ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004", "exponent": 0, }, { - "denom": "nom", - "exponent": 18, + "denom": "whale", + "exponent": 6, }, ], - "description": "The native token of Onomy Protocol", - "display": "nom", + "description": "The native token of Migaloo Chain", + "display": "whale", "images": [ { "imageSync": { - "baseDenom": "anom", - "chainName": "onomy", + "baseDenom": "uwhale", + "chainName": "migaloo", }, - "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/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", "theme": { - "primaryColorHex": "#1c1c28", + "primaryColorHex": "#1c1c1c", }, }, ], - "keywords": [ - "dex", - "stablecoin", - "bridge", - "staking", - ], "logoURIs": { - "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/migaloo/images/white-whale.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", }, - "name": "Onomy", - "symbol": "NOM", + "name": "Migaloo", + "symbol": "WHALE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", + "base_denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50735,51 +53482,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A", + "base": "ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151", "denomUnits": [ { "aliases": [ - "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", ], - "denom": "ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A", + "denom": "ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151", "exponent": 0, }, { - "aliases": [ - "stk/atom", - ], - "denom": "stkatom", + "denom": "grdn", "exponent": 6, }, ], - "description": "PSTAKE Liquid-Staked ATOM", - "display": "stkatom", + "description": "Evmos Guardians governance token.", + "display": "grdn", "images": [ { "imageSync": { - "baseDenom": "stk/uatom", - "chainName": "persistence", + "baseDenom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "chainName": "juno", }, - "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/juno/images/guardian.png", "theme": { - "primaryColorHex": "#c4444c", + "primaryColorHex": "#07d7ac", }, }, ], "logoURIs": { - "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/juno/images/guardian.png", }, - "name": "PSTAKE staked ATOM", - "symbol": "stkATOM", + "name": "Guardian", + "symbol": "GRDN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "base_denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50789,44 +53531,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877", + "base": "ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED", "denomUnits": [ { "aliases": [ - "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", + "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", ], - "denom": "ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877", + "denom": "ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED", "exponent": 0, }, + { + "denom": "mnpu", + "exponent": 6, + }, ], - "description": "The native staking and governance token of the Dyson Protocol", - "display": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", + "description": "Mini Punks Token", + "display": "mnpu", "images": [ { "imageSync": { - "baseDenom": "dys", - "chainName": "dyson", + "baseDenom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "chainName": "juno", }, - "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/juno/images/mnpu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#dadbce", }, }, ], "logoURIs": { - "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/juno/images/mnpu.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg", }, - "name": "Dyson Protocol", - "symbol": "DYS", + "name": "Mini Punks", + "symbol": "MNPU", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", + "base_denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50836,48 +53582,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590", + "base": "ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9", "denomUnits": [ { "aliases": [ - "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", + "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", ], - "denom": "ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590", + "denom": "ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9", "exponent": 0, }, { - "denom": "hopers", + "denom": "shibac", "exponent": 6, }, ], - "description": "The native token cw20 for Hopers on Juno Chain", - "display": "hopers", + "description": "Shiba Cosmos", + "display": "shibac", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n", + "baseDenom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", "chainName": "juno", }, - "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/juno/images/shibacosmos.png", "theme": { - "primaryColorHex": "#08d890", + "primaryColorHex": "#eea95d", }, }, ], "logoURIs": { - "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/juno/images/shibacosmos.png", }, - "name": "Hopers", - "symbol": "HOPERS", + "name": "ShibaCosmos", + "symbol": "SHIBAC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", + "base_denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50887,48 +53631,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8", + "base": "ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552", "denomUnits": [ { "aliases": [ - "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", + "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", ], - "denom": "ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8", + "denom": "ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552", "exponent": 0, }, { - "denom": "arusd", - "exponent": 18, + "denom": "sikoba", + "exponent": 6, }, ], - "description": "Overcollateralized stable coin for Arable derivatives v1", - "display": "arusd", + "description": "Sikoba Governance Token", + "display": "sikoba", "images": [ { "imageSync": { - "baseDenom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", - "chainName": "acrechain", + "baseDenom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "chainName": "juno", }, - "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/sikoba.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg", "theme": { - "primaryColorHex": "#77b64f", + "primaryColorHex": "#fbfbfb", }, }, ], "logoURIs": { - "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/sikoba.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg", }, - "name": "Arable USD", - "symbol": "arUSD", + "name": "Sikoba Token", + "symbol": "SKOJ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", + "base_denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50938,48 +53682,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F", + "base": "ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2", "denomUnits": [ { "aliases": [ - "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", ], - "denom": "ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F", + "denom": "ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2", "exponent": 0, }, { - "denom": "planq", - "exponent": 18, + "denom": "nct", + "exponent": 6, }, ], - "description": "The native EVM, governance and staking token of the Planq Network", - "display": "planq", + "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.", + "display": "nct", "images": [ { "imageSync": { - "baseDenom": "aplanq", - "chainName": "planq", + "baseDenom": "eco.uC.NCT", + "chainName": "regen", }, - "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/regen/images/nct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", "theme": { - "primaryColorHex": "#d4f3fb", + "primaryColorHex": "#171c25", }, }, ], "logoURIs": { - "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/regen/images/nct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", }, - "name": "Planq", - "symbol": "PLQ", + "name": "Nature Carbon Ton", + "symbol": "NCT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "base_denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -50989,48 +53733,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD", + "base": "ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16", "denomUnits": [ { "aliases": [ - "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", ], - "denom": "ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD", + "denom": "ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16", "exponent": 0, }, { - "denom": "ftm", - "exponent": 18, + "denom": "clst", + "exponent": 6, }, ], - "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.", - "display": "ftm", + "description": "Celestims", + "display": "clst", "images": [ { "imageSync": { - "baseDenom": "wei", - "chainName": "fantom", + "baseDenom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "chainName": "juno", }, - "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/juno/images/celestims.png", "theme": { - "primaryColorHex": "#1c6cfc", + "primaryColorHex": "#0b1d33", }, }, ], "logoURIs": { - "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/juno/images/celestims.png", }, - "name": "Fantom", - "symbol": "FTM", + "name": "Celestims", + "symbol": "CLST", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "base_denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51040,48 +53782,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214", + "base": "ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470", "denomUnits": [ { "aliases": [ - "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", + "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", ], - "denom": "ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214", + "denom": "ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470", "exponent": 0, }, { - "denom": "canto", - "exponent": 18, + "denom": "osdoge", + "exponent": 6, }, ], - "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", - "display": "canto", + "description": "The First Doge on Osmosis", + "display": "osdoge", "images": [ { "imageSync": { - "baseDenom": "acanto", - "chainName": "canto", + "baseDenom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "chainName": "juno", }, - "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/juno/images/osdoge.png", "theme": { - "primaryColorHex": "#1c1f1f", + "primaryColorHex": "#f49c4c", }, }, ], "logoURIs": { - "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/juno/images/osdoge.png", }, - "name": "Canto", - "symbol": "CANTO", + "name": "Osmosis Doge", + "symbol": "OSDOGE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", + "base_denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51091,49 +53831,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1", + "base": "ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488", "denomUnits": [ { "aliases": [ - "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", + "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", ], - "denom": "ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1", + "denom": "ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488", "exponent": 0, }, { - "aliases": [], - "denom": "qstars", + "denom": "apemos", "exponent": 6, }, ], - "description": "Quicksilver Liquid Staked STARS", - "display": "qstars", + "description": "Apemos", + "display": "apemos", "images": [ { "imageSync": { - "baseDenom": "uqstars", - "chainName": "quicksilver", + "baseDenom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "chainName": "juno", }, - "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/juno/images/apemos.png", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#4d5264", }, }, ], "logoURIs": { - "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/juno/images/apemos.png", }, - "name": "Quicksilver Liquid Staked STARS", - "symbol": "qSTARS", + "name": "Apemos", + "symbol": "APEMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", + "base_denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51143,48 +53880,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463", + "base": "ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2", "denomUnits": [ { "aliases": [ - "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", ], - "denom": "ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463", + "denom": "ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2", "exponent": 0, }, { - "denom": "wynd", + "denom": "invdrs", "exponent": 6, }, ], - "description": "WYND DAO Governance Token", - "display": "wynd", + "description": "Evmos Guardians' Invaders DAO token.", + "display": "invdrs", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "baseDenom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", "chainName": "juno", }, - "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/invdrs.png", "theme": { - "primaryColorHex": "#6bcc95", + "primaryColorHex": "#04ccab", }, }, ], "logoURIs": { - "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/invdrs.png", }, - "name": "Wynd DAO Governance Token", - "symbol": "WYND", + "name": "Invaders", + "symbol": "INVDRS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "base_denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51194,53 +53929,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766", + "base": "ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7", "denomUnits": [ { "aliases": [ - "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", + "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", ], - "denom": "ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766", + "denom": "ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7", "exponent": 0, }, { - "denom": "polygon-usdc", + "denom": "doga", "exponent": 6, }, ], - "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.", - "display": "polygon-usdc", + "description": "Doge Apr", + "display": "doga", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg", - }, { "imageSync": { - "baseDenom": "polygon-uusdc", - "chainName": "axelar", + "baseDenom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", + "chainName": "juno", }, - "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/juno/images/doga.png", "theme": { - "primaryColorHex": "#2474cc", + "primaryColorHex": "#d6a84f", }, }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png", }, - "name": "USDC (Ethereum) (Polygon via Axelar)", - "symbol": "USDC.e.matic.axl", + "name": "Doge Apr", + "symbol": "DOGA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", + "base_denom": "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51250,53 +53978,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3", + "base": "ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E", "denomUnits": [ { "aliases": [ - "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", ], - "denom": "ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3", + "denom": "ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E", "exponent": 0, }, { - "denom": "avalanche-usdc", + "denom": "catmos", "exponent": 6, }, ], - "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.", - "display": "avalanche-usdc", + "description": "Catmos", + "display": "catmos", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg", - }, { "imageSync": { - "baseDenom": "avalanche-uusdc", - "chainName": "axelar", + "baseDenom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "chainName": "juno", }, - "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/juno/images/catmos.png", "theme": { - "primaryColorHex": "#2474cc", + "primaryColorHex": "#140c44", }, }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png", }, - "name": "USD Coin (Avalanche)", - "symbol": "USDC.avax.axl", + "name": "Catmos", + "symbol": "CATMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "base_denom": "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51306,48 +54027,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172", + "base": "ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E", "denomUnits": [ { "aliases": [ - "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", ], - "denom": "ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172", + "denom": "ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E", "exponent": 0, }, { - "denom": "MARS.old", + "denom": "summit", "exponent": 6, }, ], - "description": "Mars Protocol token (pre-migration)", - "display": "MARS.old", + "description": "Social Impact DAO providing showers, meals, and vehicles to the homeless", + "display": "summit", "images": [ { "imageSync": { - "baseDenom": "umars", - "chainName": "mars", + "baseDenom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "chainName": "juno", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", "theme": { - "primaryColorHex": "#000000", + "primaryColorHex": "#cbdb44", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token-ibc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", }, - "name": "Mars Protocol token (Mars Hub)", - "symbol": "MARS.mars", + "name": "Summit", + "symbol": "SUMMIT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "base_denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51357,48 +54076,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819", + "base": "ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61", "denomUnits": [ { "aliases": [ - "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", + "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", ], - "denom": "ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819", + "denom": "ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61", "exponent": 0, }, { - "denom": "cnto", - "exponent": 18, + "denom": "flix", + "exponent": 6, }, ], - "description": "Ciento Exchange Token", - "display": "cnto", + "description": "The native staking token of OmniFlix Hub.", + "display": "flix", "images": [ { "imageSync": { - "baseDenom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", - "chainName": "acrechain", + "baseDenom": "uflix", + "chainName": "omniflixhub", }, - "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/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg", "theme": { - "primaryColorHex": "#ecc53b", + "primaryColorHex": "#c33635", }, }, ], "logoURIs": { - "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/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg", }, - "name": "Ciento Token", - "symbol": "CNTO", + "name": "OmniFlix", + "symbol": "FLIX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", + "base_denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51408,47 +54127,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49", + "base": "ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031", "denomUnits": [ { "aliases": [ - "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", + "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", ], - "denom": "ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49", + "denom": "ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031", "exponent": 0, }, { - "denom": "stluna", + "denom": "spacer", "exponent": 6, }, ], - "display": "stluna", + "description": "Spacer", + "display": "spacer", "images": [ { "imageSync": { - "baseDenom": "stuluna", - "chainName": "stride", + "baseDenom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "chainName": "juno", }, - "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/juno/images/spacer.png", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#695335", }, }, ], "logoURIs": { - "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/juno/images/spacer.png", }, - "name": "Stride Staked LUNA", - "symbol": "stLUNA", + "name": "Spacer", + "symbol": "SPACER", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", + "base_denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51458,47 +54176,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303", + "base": "ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B", "denomUnits": [ { "aliases": [ - "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", ], - "denom": "ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303", + "denom": "ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B", "exponent": 0, }, { - "denom": "stevmos", - "exponent": 18, + "denom": "light", + "exponent": 9, }, ], - "display": "stevmos", + "description": "Light: LumenX community DAO treasury token", + "display": "light", "images": [ { "imageSync": { - "baseDenom": "staevmos", - "chainName": "stride", + "baseDenom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "chainName": "juno", }, - "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/light.png", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#e5e5e5", }, }, ], "logoURIs": { - "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/light.png", }, - "name": "Stride Staked EVMOS", - "symbol": "stEVMOS", + "name": "LIGHT", + "symbol": "LIGHT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "base_denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51508,49 +54225,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01", + "base": "ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D", "denomUnits": [ { "aliases": [ - "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", + "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", ], - "denom": "ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01", + "denom": "ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D", "exponent": 0, }, { - "denom": "nride", + "denom": "silk", "exponent": 6, }, ], - "description": "nRide Token", - "display": "nride", - "extendedDescription": "nRide is developing a uber-like ride-hailing protocol, leveraging cosmwasm smart-contracts for payment, driver registration and text-messaging between the rider and the driver, to create a trustless public transportation environment for any cab or taxi company to use.", + "description": "The native token cw20 for Silk on Secret Network", + "display": "silk", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", - "chainName": "juno", + "baseDenom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "chainName": "secretnetwork", }, - "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", + "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", "theme": { - "primaryColorHex": "#050505", + "primaryColorHex": "#3142fc", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "nRide Token", - "symbol": "NRIDE", + "name": "Silk", + "symbol": "SILK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", + "base_denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51560,48 +54276,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76", + "base": "ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF", "denomUnits": [ { "aliases": [ - "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", + "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", ], - "denom": "ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76", + "denom": "ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF", "exponent": 0, }, { - "denom": "ebl", + "denom": "mile", "exponent": 6, }, ], - "description": "The native staking token of 8ball.", - "display": "ebl", + "description": "Mille: the 1000th token on osmosis", + "display": "mile", "images": [ { "imageSync": { - "baseDenom": "uebl", - "chainName": "8ball", + "baseDenom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "chainName": "juno", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", "theme": { - "primaryColorHex": "#dbdbdb", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", }, - "name": "8ball", - "symbol": "EBL", + "name": "Mille", + "symbol": "MILE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", + "base_denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51611,49 +54325,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689", + "base": "ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051", "denomUnits": [ { "aliases": [ - "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", + "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", ], - "denom": "ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689", + "denom": "ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051", "exponent": 0, }, { - "aliases": [], - "denom": "qatom", + "denom": "manna", "exponent": 6, }, ], - "description": "Quicksilver Liquid Staked ATOM", - "display": "qatom", + "description": "Social Impact DAO dedicated to combatting food insecurity and malnutrition", + "display": "manna", "images": [ { "imageSync": { - "baseDenom": "uqatom", - "chainName": "quicksilver", + "baseDenom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "chainName": "juno", }, - "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/juno/images/manna.png", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#299544", }, }, ], "logoURIs": { - "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/juno/images/manna.png", }, - "name": "Quicksilver Liquid Staked ATOM", - "symbol": "qATOM", + "name": "Manna", + "symbol": "MANNA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", + "base_denom": "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51663,48 +54374,50 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E", + "base": "ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA", "denomUnits": [ { "aliases": [ - "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", ], - "denom": "ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E", + "denom": "ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA", "exponent": 0, }, { - "denom": "harbor", - "exponent": 6, + "denom": "fil", + "exponent": 18, }, ], - "description": "Governance Token of Harbor protocol on Comdex network", - "display": "harbor", + "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. + +Participants 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.", + "display": "fil", "images": [ { "imageSync": { - "baseDenom": "uharbor", - "chainName": "comdex", + "baseDenom": "attoFIL", + "chainName": "filecoin", }, - "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/_non-cosmos/filecoin/images/fil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg", "theme": { - "primaryColorHex": "#645ca4", + "primaryColorHex": "#0493fc", }, }, ], "logoURIs": { - "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/_non-cosmos/filecoin/images/fil.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg", }, - "name": "Harbor", - "symbol": "HARBOR", + "name": "Filecoin", + "symbol": "FIL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "base_denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51714,49 +54427,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD", + "base": "ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34", "denomUnits": [ { "aliases": [ - "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", ], - "denom": "ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD", + "denom": "ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34", "exponent": 0, }, { - "aliases": [], - "denom": "qregen", + "denom": "void", "exponent": 6, }, ], - "description": "Quicksilver Liquid Staked REGEN", - "display": "qregen", + "description": "Void", + "display": "void", "images": [ { "imageSync": { - "baseDenom": "uqregen", - "chainName": "quicksilver", + "baseDenom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", + "chainName": "juno", }, - "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/juno/images/void.png", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#5b2e96", }, }, ], "logoURIs": { - "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/juno/images/void.png", }, - "name": "Quicksilver Liquid Staked Regen", - "symbol": "qREGEN", + "name": "Void", + "symbol": "VOID", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "base_denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51766,46 +54476,48 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18", + "base": "ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645", "denomUnits": [ { "aliases": [ - "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", + "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", ], - "denom": "ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18", + "denom": "ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645", "exponent": 0, }, { - "denom": "fox", - "exponent": 6, + "denom": "shd", + "exponent": 8, }, ], - "description": "Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.", - "display": "fox", + "description": "The native token cw20 for Shade on Secret Network", + "display": "shd", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", - "chainName": "juno", + "baseDenom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "chainName": "secretnetwork", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png", + "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", "theme": { - "primaryColorHex": "#ee5f06", + "primaryColorHex": "#342c52", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png", + "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", }, - "name": "Juno Fox", - "symbol": "FOX", + "name": "Shade", + "symbol": "SHD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", + "base_denom": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51815,47 +54527,55 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059", + "base": "ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD", "denomUnits": [ { "aliases": [ - "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", ], - "denom": "ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059", + "denom": "ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD", "exponent": 0, }, { - "aliases": [], - "denom": "qck", + "aliases": [ + "blz", + ], + "denom": "bnt", "exponent": 6, }, - ], - "description": "QCK - native token of Quicksilver", - "display": "qck", + ], + "description": "The native token of Bluzelle", + "display": "bnt", "images": [ { "imageSync": { - "baseDenom": "uqck", - "chainName": "quicksilver", + "baseDenom": "ubnt", + "chainName": "bluzelle", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.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", "theme": { - "primaryColorHex": "#b2b2b2", + "primaryColorHex": "#708ffc", }, }, ], + "keywords": [ + "bluzelle", + "game", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.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", }, - "name": "Quicksilver", - "symbol": "QCK", + "name": "Bluzelle", + "symbol": "BLZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "base_denom": "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51865,51 +54585,52 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0", + "base": "ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF", "denomUnits": [ { "aliases": [ - "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", + "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", ], - "denom": "ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0", + "denom": "ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF", "exponent": 0, }, { - "denom": "ARKH", - "exponent": 6, + "denom": "arb", + "exponent": 18, }, ], - "description": "The native token of Arkhadian", - "display": "ARKH", + "description": "Native token of Arbitrum", + "display": "arb", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", + }, { "imageSync": { - "baseDenom": "arkh", - "chainName": "arkh", + "baseDenom": "arb-wei", + "chainName": "axelar", }, - "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/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg", "theme": { - "primaryColorHex": "#bdbb82", + "primaryColorHex": "#253545", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "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/osmosis/images/arb.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", }, - "name": "Arkhadian", - "symbol": "ARKH", + "name": "Arbitrum (Axelar)", + "symbol": "ARB.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", + "base_denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51919,49 +54640,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76", + "base": "ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB", "denomUnits": [ { "aliases": [ - "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", ], - "denom": "ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76", + "denom": "ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB", "exponent": 0, }, { - "aliases": [], - "denom": "qosmo", + "denom": "silica", "exponent": 6, }, ], - "description": "Quicksilver Liquid Staked OSMO", - "display": "qosmo", + "description": "Silica", + "display": "silica", "images": [ { "imageSync": { - "baseDenom": "uqosmo", - "chainName": "quicksilver", + "baseDenom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "chainName": "juno", }, - "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/juno/images/silica.png", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#21538f", }, }, ], "logoURIs": { - "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/juno/images/silica.png", }, - "name": "Quicksilver Liquid Staked OSMO", - "symbol": "qOSMO", + "name": "Silica", + "symbol": "SLCA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "base_denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -51971,48 +54689,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3", + "base": "ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF", "denomUnits": [ { "aliases": [ - "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", ], - "denom": "ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3", + "denom": "ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF", "exponent": 0, }, { - "denom": "frienzies", + "denom": "pepec", "exponent": 6, }, ], - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", - "display": "frienzies", + "description": "Pepec", + "display": "pepec", "images": [ { "imageSync": { - "baseDenom": "ufrienzies", - "chainName": "noble", + "baseDenom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "chainName": "juno", }, - "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/juno/images/pepec.png", "theme": { - "primaryColorHex": "#04041c", + "primaryColorHex": "#e9bc37", }, }, ], "logoURIs": { - "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/juno/images/pepec.png", }, - "name": "Frienzies", - "symbol": "FRNZ", + "name": "Pepec", + "symbol": "PEPEC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "base_denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52022,48 +54738,55 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004", + "base": "ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6", "denomUnits": [ { "aliases": [ - "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", ], - "denom": "ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004", + "denom": "ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6", "exponent": 0, }, { - "denom": "whale", - "exponent": 6, + "denom": "pepe", + "exponent": 18, }, ], - "description": "The native token of Migaloo Chain", - "display": "whale", + "description": "Pepe is a community based memecoin with one mission: to make memecoins great again. Made to honor the iconic meme we all know and love, Pepe is here to take reign as the most memeable memecoin in existence, fueled purely by memetic power. Pepe is for the people.", + "display": "pepe", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg", + }, { "imageSync": { - "baseDenom": "uwhale", - "chainName": "migaloo", + "baseDenom": "pepe-wei", + "chainName": "axelar", }, - "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/_non-cosmos/ethereum/images/pepe.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg", "theme": { - "primaryColorHex": "#1c1c1c", + "primaryColorHex": "#cc3233", }, }, ], + "keywords": [ + "meme", + ], "logoURIs": { - "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/osmosis/images/pepe.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg", }, - "name": "Migaloo", - "symbol": "WHALE", + "name": "Pepe (Axelar)", + "symbol": "PEPE.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "base_denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52073,97 +54796,89 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E", + "coingeckoId": "ibc-index", "denomUnits": [ { "aliases": [ - "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", ], - "denom": "ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151", + "denom": "ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E", "exponent": 0, }, { - "denom": "grdn", + "denom": "ibcx", "exponent": 6, }, ], - "description": "Evmos Guardians governance token.", - "display": "grdn", + "display": "ibcx", "images": [ { - "imageSync": { - "baseDenom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png", - "theme": { - "primaryColorHex": "#07d7ac", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", }, - "name": "Guardian", - "symbol": "GRDN", + "name": "IBC Index", + "symbol": "IBCX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED", + "base": "ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7", "denomUnits": [ { "aliases": [ - "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", + "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", ], - "denom": "ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED", + "denom": "ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7", "exponent": 0, }, { - "denom": "mnpu", - "exponent": 6, + "denom": "cbeth", + "exponent": 18, }, ], - "description": "Mini Punks Token", - "display": "mnpu", + "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.", + "display": "cbeth", "images": [ { "imageSync": { - "baseDenom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", - "chainName": "juno", + "baseDenom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", + "chainName": "ethereum", }, - "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/_non-cosmos/ethereum/images/cbeth.png", "theme": { - "primaryColorHex": "#dadbce", + "primaryColorHex": "#c9dbfc", }, }, ], "logoURIs": { - "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/_non-cosmos/ethereum/images/cbeth.png", }, - "name": "Mini Punks", - "symbol": "MNPU", + "name": "Coinbase Wrapped Staked ETH", + "symbol": "cbETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", + "base_denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52173,46 +54888,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9", + "base": "ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC", "denomUnits": [ { "aliases": [ - "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", + "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", ], - "denom": "ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9", + "denom": "ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC", "exponent": 0, }, { - "denom": "shibac", - "exponent": 6, + "denom": "reth", + "exponent": 18, }, ], - "description": "Shiba Cosmos", - "display": "shibac", + "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", + "display": "reth", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", - "chainName": "juno", + "baseDenom": "0xae78736cd615f374d3085123a210448e74fc6393", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", "theme": { - "primaryColorHex": "#eea95d", + "primaryColorHex": "#fba487", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", }, - "name": "ShibaCosmos", - "symbol": "SHIBAC", + "name": "Rocket Pool Ether", + "symbol": "rETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", + "base_denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52222,48 +54937,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552", + "base": "ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B", "denomUnits": [ { "aliases": [ - "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", + "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", ], - "denom": "ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552", + "denom": "ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B", "exponent": 0, }, { - "denom": "sikoba", - "exponent": 6, + "denom": "sfrxeth", + "exponent": 18, }, ], - "description": "Sikoba Governance Token", - "display": "sikoba", + "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.", + "display": "sfrxeth", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", - "chainName": "juno", - }, - "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", - "theme": { - "primaryColorHex": "#fbfbfb", + "baseDenom": "0xac3e018457b222d93114458476f3e3416abbe38f", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", }, - "name": "Sikoba Token", - "symbol": "SKOJ", + "name": "Staked Frax Ether", + "symbol": "sfrxETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", + "base_denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52273,48 +54983,45 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2", + "base": "ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC", "denomUnits": [ { "aliases": [ - "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", ], - "denom": "ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2", + "denom": "ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC", "exponent": 0, }, { - "denom": "nct", - "exponent": 6, + "denom": "wsteth", + "exponent": 18, }, ], - "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.", - "display": "nct", + "display": "wsteth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg", + }, { "imageSync": { - "baseDenom": "eco.uC.NCT", - "chainName": "regen", - }, - "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", - "theme": { - "primaryColorHex": "#171c25", + "baseDenom": "wsteth-wei", + "chainName": "axelar", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg", }, - "name": "Nature Carbon Ton", - "symbol": "NCT", + "name": "Wrapped Lido Staked Ether (Axelar)", + "symbol": "wstETH.eth.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "base_denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52324,46 +55031,54 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16", + "base": "ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260", "denomUnits": [ { "aliases": [ - "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", ], - "denom": "ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16", + "denom": "ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260", "exponent": 0, }, { - "denom": "clst", + "denom": "LORE", "exponent": 6, }, ], - "description": "Celestims", - "display": "clst", + "description": "The native token of Gitopia", + "display": "LORE", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", - "chainName": "juno", + "baseDenom": "ulore", + "chainName": "gitopia", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.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", "theme": { - "primaryColorHex": "#0b1d33", + "primaryColorHex": "#2c173c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png", + "theme": { + "primaryColorHex": "#2e154d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.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", }, - "name": "Celestims", - "symbol": "CLST", + "name": "Gitopia", + "symbol": "LORE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "base_denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52373,46 +55088,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470", + "base": "ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB", "denomUnits": [ { "aliases": [ - "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", + "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", ], - "denom": "ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470", + "denom": "ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB", "exponent": 0, }, { - "denom": "osdoge", + "denom": "roar", "exponent": 6, }, ], - "description": "The First Doge on Osmosis", - "display": "osdoge", + "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", + "display": "roar", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", - "chainName": "juno", + "baseDenom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "chainName": "terra2", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", "theme": { - "primaryColorHex": "#f49c4c", + "primaryColorHex": "#f3f313", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", }, - "name": "Osmosis Doge", - "symbol": "OSDOGE", + "name": "Lion DAO", + "symbol": "ROAR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", + "base_denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52422,46 +55137,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488", + "base": "ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F", "denomUnits": [ { "aliases": [ - "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", + "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", ], - "denom": "ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488", + "denom": "ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F", "exponent": 0, }, { - "denom": "apemos", + "denom": "stumee", "exponent": 6, }, ], - "description": "Apemos", - "display": "apemos", + "display": "stumee", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", - "chainName": "juno", + "baseDenom": "stuumee", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.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", "theme": { - "primaryColorHex": "#4d5264", + "primaryColorHex": "#fbd9e9", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.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", }, - "name": "Apemos", - "symbol": "APEMOS", + "name": "Stride Staked UMEE", + "symbol": "stUMEE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", + "base_denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52471,95 +55187,95 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5", "denomUnits": [ { "aliases": [ - "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", ], - "denom": "ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2", + "denom": "ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5", "exponent": 0, }, { - "denom": "invdrs", + "denom": "stibcx", "exponent": 6, }, ], - "description": "Evmos Guardians' Invaders DAO token.", - "display": "invdrs", + "display": "stibcx", "images": [ { - "imageSync": { - "baseDenom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png", + "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", "theme": { - "primaryColorHex": "#04ccab", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png", + "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", }, - "name": "Invaders", - "symbol": "INVDRS", + "name": "Staked IBCX", + "symbol": "stIBCX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7", + "base": "ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF", "denomUnits": [ { "aliases": [ - "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", + "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", ], - "denom": "ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7", + "denom": "ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF", "exponent": 0, }, { - "denom": "doga", + "denom": "nls", "exponent": 6, }, ], - "description": "Doge Apr", - "display": "doga", + "description": "The native token of Nolus chain", + "display": "nls", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", - "chainName": "juno", + "baseDenom": "unls", + "chainName": "nolus", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png", + "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", "theme": { - "primaryColorHex": "#d6a84f", + "primaryColorHex": "#fc542c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png", + "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", }, - "name": "Doge Apr", - "symbol": "DOGA", + "name": "Nolus", + "symbol": "NLS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", + "base_denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52569,46 +55285,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E", + "base": "ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243", "denomUnits": [ { "aliases": [ - "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", + "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", ], - "denom": "ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E", + "denom": "ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243", "exponent": 0, }, { - "denom": "catmos", + "denom": "cub", "exponent": 6, }, ], - "description": "Catmos", - "display": "catmos", + "description": "Lion Cub DAO is a useless meme community DAO on Terra", + "display": "cub", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", - "chainName": "juno", + "baseDenom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "chainName": "terra2", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "theme": { - "primaryColorHex": "#140c44", + "primaryColorHex": "#f3d343", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", }, - "name": "Catmos", - "symbol": "CATMOS", + "name": "Lion Cub DAO", + "symbol": "CUB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", + "base_denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52618,46 +55334,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E", + "base": "ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF", "denomUnits": [ { "aliases": [ - "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", + "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", ], - "denom": "ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E", + "denom": "ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF", "exponent": 0, }, { - "denom": "summit", + "denom": "blue", "exponent": 6, }, ], - "description": "Social Impact DAO providing showers, meals, and vehicles to the homeless", - "display": "summit", + "description": "BLUE CUB DAO is a community DAO on Terra", + "display": "blue", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", - "chainName": "juno", + "baseDenom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "chainName": "terra2", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", "theme": { - "primaryColorHex": "#cbdb44", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", }, - "name": "Summit", - "symbol": "SUMMIT", + "name": "BLUE CUB DAO", + "symbol": "BLUE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", + "base_denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52667,48 +55383,50 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61", + "base": "ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8", "denomUnits": [ { "aliases": [ - "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", ], - "denom": "ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61", + "denom": "ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8", "exponent": 0, }, { - "denom": "flix", + "denom": "ntrn", "exponent": 6, }, ], - "description": "The native staking token of OmniFlix Hub.", - "display": "flix", + "description": "The native token of Neutron chain.", + "display": "ntrn", "images": [ { "imageSync": { - "baseDenom": "uflix", - "chainName": "omniflixhub", + "baseDenom": "untrn", + "chainName": "neutron", }, - "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/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg", "theme": { - "primaryColorHex": "#c33635", + "backgroundColorHex": "#000000", + "circle": true, + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg", }, - "name": "OmniFlix", - "symbol": "FLIX", + "name": "Neutron", + "symbol": "NTRN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "base_denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52718,46 +55436,46 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031", + "base": "ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633", "denomUnits": [ { "aliases": [ - "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", + "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", ], - "denom": "ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031", + "denom": "ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633", "exponent": 0, }, { - "denom": "spacer", + "denom": "casa", "exponent": 6, }, ], - "description": "Spacer", - "display": "spacer", + "description": "An innovative DAO dedicated to housing the most vulnerable", + "display": "casa", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "baseDenom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", "chainName": "juno", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", "theme": { - "primaryColorHex": "#695335", + "primaryColorHex": "#04040c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", }, - "name": "Spacer", - "symbol": "SPACER", + "name": "Casa", + "symbol": "CASA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", + "base_denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52767,46 +55485,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B", + "base": "ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B", "denomUnits": [ { "aliases": [ - "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", + "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", ], - "denom": "ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B", + "denom": "ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B", "exponent": 0, }, { - "denom": "light", - "exponent": 9, + "denom": "pica", + "exponent": 12, }, ], - "description": "Light: LumenX community DAO treasury token", - "display": "light", + "description": "The native staking and governance token of Composable.", + "display": "pica", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png", - "theme": { - "primaryColorHex": "#e5e5e5", + "baseDenom": "ppica", + "chainName": "picasso", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", }, - "name": "LIGHT", - "symbol": "LIGHT", + "name": "Picasso", + "symbol": "PICA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", + "base_denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52816,48 +55531,43 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D", + "base": "ibc/499EE8178958A9E7C80A439A5BAD0D57FDFFF1AEBAD43A8510A8CE6A021F1B12", "denomUnits": [ { "aliases": [ - "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", ], - "denom": "ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D", + "denom": "ibc/499EE8178958A9E7C80A439A5BAD0D57FDFFF1AEBAD43A8510A8CE6A021F1B12", "exponent": 0, }, { - "denom": "silk", - "exponent": 6, + "denom": "ksm", + "exponent": 12, }, ], - "description": "The native token cw20 for Silk on Secret Network", - "display": "silk", + "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", + "display": "ksm", "images": [ { "imageSync": { - "baseDenom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", - "chainName": "secretnetwork", - }, - "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", - "theme": { - "primaryColorHex": "#3142fc", + "baseDenom": "Planck", + "chainName": "kusama", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg", }, - "name": "Silk", - "symbol": "SILK", + "name": "Kusama", + "symbol": "KSM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "base_denom": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52867,46 +55577,52 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF", + "base": "ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891", "denomUnits": [ { "aliases": [ - "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", + "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", ], - "denom": "ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF", + "denom": "ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891", "exponent": 0, }, { - "denom": "mile", - "exponent": 6, + "denom": "dot", + "exponent": 10, }, ], - "description": "Mille: the 1000th token on osmosis", - "display": "mile", + "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", + "display": "dot", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg", + }, { "imageSync": { - "baseDenom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", - "chainName": "juno", + "baseDenom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", + "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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#e4047c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg", }, - "name": "Mille", - "symbol": "MILE", + "name": "Polkadot (Picasso)", + "symbol": "DOT.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", + "base_denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52916,46 +55632,47 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051", + "base": "ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2", "denomUnits": [ { "aliases": [ - "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", + "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", ], - "denom": "ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051", + "denom": "ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2", "exponent": 0, }, { - "denom": "manna", + "aliases": [], + "denom": "qsr", "exponent": 6, }, ], - "description": "Social Impact DAO dedicated to combatting food insecurity and malnutrition", - "display": "manna", + "description": "The native token of Quasar", + "display": "qsr", "images": [ { "imageSync": { - "baseDenom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", - "chainName": "juno", + "baseDenom": "uqsr", + "chainName": "quasar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", "theme": { - "primaryColorHex": "#299544", + "primaryColorHex": "#a493e4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", }, - "name": "Manna", - "symbol": "MANNA", + "name": "Quasar", + "symbol": "QSR.legacy", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", + "base_denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -52965,50 +55682,52 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "typeAsset": "ics20", }, { - "base": "ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA", + "base": "ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E", "denomUnits": [ { "aliases": [ - "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", ], - "denom": "ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA", + "denom": "ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E", "exponent": 0, }, { - "denom": "fil", + "denom": "uarch", + "exponent": 12, + }, + { + "denom": "arch", "exponent": 18, }, ], - "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. - -Participants 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.", - "display": "fil", + "description": "The native token of Archway network", + "display": "arch", "images": [ { "imageSync": { - "baseDenom": "attoFIL", - "chainName": "filecoin", + "baseDenom": "aarch", + "chainName": "archway", }, - "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/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", "theme": { - "primaryColorHex": "#0493fc", + "primaryColorHex": "#fc4c04", }, }, ], "logoURIs": { - "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/archway/images/arch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", }, - "name": "Filecoin", - "symbol": "FIL", + "name": "Archway", + "symbol": "ARCH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "base_denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53018,46 +55737,56 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34", + "base": "ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868", "denomUnits": [ { "aliases": [ - "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", + "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", ], - "denom": "ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34", + "denom": "ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868", "exponent": 0, }, { - "denom": "void", + "denom": "mpwr", "exponent": 6, }, ], - "description": "Void", - "display": "void", + "description": "The native staking and governance token of Empower.", + "display": "mpwr", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", - "chainName": "juno", + "baseDenom": "umpwr", + "chainName": "empowerchain", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", "theme": { - "primaryColorHex": "#5b2e96", + "backgroundColorHex": "#00e33a", + "circle": true, + "primaryColorHex": "#00e33a", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.png", + "theme": { + "backgroundColorHex": "#00e33a", + "circle": false, + "primaryColorHex": "#00e33a", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", }, - "name": "Void", - "symbol": "VOID", + "name": "EmpowerChain", + "symbol": "MPWR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", + "base_denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53067,48 +55796,46 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645", + "base": "ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2", "denomUnits": [ { "aliases": [ - "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", + "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", ], - "denom": "ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645", + "denom": "ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2", "exponent": 0, }, { - "denom": "shd", - "exponent": 8, + "denom": "watr", + "exponent": 6, }, ], - "description": "The native token cw20 for Shade on Secret Network", - "display": "shd", + "description": "A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!", + "display": "watr", "images": [ { "imageSync": { - "baseDenom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", - "chainName": "secretnetwork", + "baseDenom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "chainName": "juno", }, - "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/watr.png", "theme": { - "primaryColorHex": "#342c52", + "primaryColorHex": "#38b5c5", }, }, ], "logoURIs": { - "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/watr.png", }, - "name": "Shade", - "symbol": "SHD", + "name": "WATR", + "symbol": "WATR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", + "base_denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53118,55 +55845,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD", + "base": "ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E", "denomUnits": [ { "aliases": [ - "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", + "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", ], - "denom": "ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD", + "denom": "ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E", "exponent": 0, }, { - "aliases": [ - "blz", - ], - "denom": "bnt", + "denom": "kyve", "exponent": 6, }, ], - "description": "The native token of Bluzelle", - "display": "bnt", + "description": "The native utility token of the KYVE network.", + "display": "kyve", "images": [ { "imageSync": { - "baseDenom": "ubnt", - "chainName": "bluzelle", + "baseDenom": "ukyve", + "chainName": "kyve", }, - "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/kyve/images/kyve-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg", "theme": { - "primaryColorHex": "#708ffc", + "primaryColorHex": "#335350", }, }, ], - "keywords": [ - "bluzelle", - "game", - ], "logoURIs": { - "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/kyve/images/kyve-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg", }, - "name": "Bluzelle", - "symbol": "BLZ", + "name": "KYVE", + "symbol": "KYVE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", + "base_denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53176,52 +55896,57 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF", + "base": "ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7", "denomUnits": [ { "aliases": [ - "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", + "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", ], - "denom": "ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF", + "denom": "ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7", "exponent": 0, }, { - "denom": "arb", - "exponent": 18, + "denom": "usdt", + "exponent": 6, }, ], - "description": "Native token of Arbitrum", - "display": "arb", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg", + "theme": { + "primaryColorHex": "#049494", + }, }, { "imageSync": { - "baseDenom": "arb-wei", - "chainName": "axelar", + "baseDenom": "erc20/tether/usdt", + "chainName": "kava", }, - "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/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#253545", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/arb.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg", }, - "name": "Arbitrum (Axelar)", - "symbol": "ARB.axl", + "name": "Tether USD (Kava)", + "symbol": "USDT.kava", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", + "base_denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53231,95 +55956,98 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB", + "address": "osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9", + "base": "ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE", "denomUnits": [ { "aliases": [ - "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", + "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", ], - "denom": "ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB", + "denom": "ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE", "exponent": 0, }, { - "denom": "silica", + "denom": "ampOSMO", "exponent": 6, }, ], - "description": "Silica", - "display": "silica", + "description": "ERIS liquid staked OSMO", + "display": "ampOSMO", "images": [ { - "imageSync": { - "baseDenom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", "theme": { - "primaryColorHex": "#21538f", + "primaryColorHex": "#cfdbf1", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", }, - "name": "Silica", - "symbol": "SLCA", + "name": "ERIS Amplified OSMO", + "socials": { + "twitter": "https://twitter.com/eris_protocol", + "website": "https://www.erisprotocol.com/", + }, + "symbol": "ampOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", + "base_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF", + "base": "ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A", "denomUnits": [ { "aliases": [ - "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", + "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", ], - "denom": "ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF", + "denom": "ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A", "exponent": 0, }, { - "denom": "pepec", + "denom": "sei", "exponent": 6, }, ], - "description": "Pepec", - "display": "pepec", + "description": "The native staking token of Sei.", + "display": "sei", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", - "chainName": "juno", + "baseDenom": "usei", + "chainName": "sei", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png", + "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", "theme": { - "primaryColorHex": "#e9bc37", + "primaryColorHex": "#9c1c1c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png", + "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", }, - "name": "Pepec", - "symbol": "PEPEC", + "name": "Sei", + "symbol": "SEI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", + "base_denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53329,55 +56057,49 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6", + "base": "ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995", "denomUnits": [ { "aliases": [ - "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", ], - "denom": "ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6", + "denom": "ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995", "exponent": 0, }, { - "denom": "pepe", - "exponent": 18, + "aliases": [], + "denom": "qsomm", + "exponent": 6, }, ], - "description": "Pepe is a community based memecoin with one mission: to make memecoins great again. Made to honor the iconic meme we all know and love, Pepe is here to take reign as the most memeable memecoin in existence, fueled purely by memetic power. Pepe is for the people.", - "display": "pepe", + "description": "Quicksilver Liquid Staked SOMM", + "display": "qsomm", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.svg", - }, { "imageSync": { - "baseDenom": "pepe-wei", - "chainName": "axelar", + "baseDenom": "uqsomm", + "chainName": "quicksilver", }, - "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/quicksilver/images/qsomm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg", "theme": { - "primaryColorHex": "#cc3233", + "primaryColorHex": "#fc944c", }, }, ], - "keywords": [ - "meme", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.axl.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", }, - "name": "Pepe (Axelar)", - "symbol": "PEPE.axl", + "name": "Quicksilver Liquid Staked SOMM", + "symbol": "qSOMM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "base_denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53387,89 +56109,96 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E", - "coingeckoId": "ibc-index", + "base": "ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710", "denomUnits": [ { "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", ], - "denom": "ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E", + "denom": "ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710", "exponent": 0, }, { - "denom": "ibcx", + "denom": "pasg", "exponent": 6, }, ], - "display": "ibcx", + "description": "The native staking and governance token of the Passage chain.", + "display": "pasg", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", + "imageSync": { + "baseDenom": "upasg", + "chainName": "passage", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", + "theme": { + "primaryColorHex": "#05050c", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", }, - "name": "IBC Index", - "symbol": "IBCX", + "name": "Passage", + "symbol": "PASG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "base_denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7", + "base": "ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8", "denomUnits": [ { "aliases": [ - "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", + "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", ], - "denom": "ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7", + "denom": "ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8", "exponent": 0, }, { - "denom": "cbeth", - "exponent": 18, + "denom": "stsomm", + "exponent": 6, }, ], - "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.", - "display": "cbeth", + "display": "stsomm", "images": [ { "imageSync": { - "baseDenom": "0xbe9895146f7af43049ca1c1ae358b0541ea49704", - "chainName": "ethereum", + "baseDenom": "stusomm", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", + "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", "theme": { - "primaryColorHex": "#c9dbfc", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", + "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", }, - "name": "Coinbase Wrapped Staked ETH", - "symbol": "cbETH", + "name": "Stride Staked SOMM", + "symbol": "stSOMM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", + "base_denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53479,46 +56208,54 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC", + "base": "ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E", "denomUnits": [ { "aliases": [ - "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", + "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", ], - "denom": "ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC", + "denom": "ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E", "exponent": 0, }, { - "denom": "reth", - "exponent": 18, + "aliases": [], + "denom": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", + "exponent": 8, }, ], - "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", - "display": "reth", + "description": "Solana (SOL) is the native asset of the Solana blockchain.", + "display": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg", + }, { "imageSync": { - "baseDenom": "0xae78736cd615f374d3085123a210448e74fc6393", - "chainName": "ethereum", + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "chainName": "gateway", }, - "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/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#fba487", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg", }, - "name": "Rocket Pool Ether", - "symbol": "rETH", + "name": "Solana (Wormhole)", + "symbol": "SOL.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", + "base_denom": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53528,43 +56265,47 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B", + "base": "ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55", "denomUnits": [ { "aliases": [ - "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", + "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", ], - "denom": "ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B", + "denom": "ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55", "exponent": 0, }, { - "denom": "sfrxeth", - "exponent": 18, + "aliases": [], + "denom": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", + "exponent": 5, }, ], - "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.", - "display": "sfrxeth", + "description": "The Official Bonk Inu token", + "display": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", "images": [ { "imageSync": { - "baseDenom": "0xac3e018457b222d93114458476f3e3416abbe38f", - "chainName": "ethereum", + "baseDenom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", + "chainName": "solana", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "theme": { + "primaryColorHex": "#ee950a", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", }, - "name": "Staked Frax Ether", - "symbol": "sfrxETH", + "name": "Bonk", + "symbol": "BONK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", + "base_denom": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53574,45 +56315,58 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC", + "base": "ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB", "denomUnits": [ { "aliases": [ - "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", + "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", ], - "denom": "ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC", + "denom": "ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB", "exponent": 0, }, { - "denom": "wsteth", - "exponent": 18, + "aliases": [], + "denom": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", + "exponent": 6, }, ], - "display": "wsteth", + "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "display": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg", + "theme": { + "primaryColorHex": "#049393", + }, }, { "imageSync": { - "baseDenom": "wsteth-wei", - "chainName": "axelar", + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "chainName": "gateway", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "theme": { + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg", }, - "name": "Wrapped Lido Staked Ether (Axelar)", - "symbol": "wstETH.eth.axl", + "name": "Tether USD (Ethereum via Wormhole)", + "symbol": "USDT.eth.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", + "base_denom": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53622,54 +56376,44 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260", + "base": "ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722", "denomUnits": [ { "aliases": [ - "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", ], - "denom": "ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260", + "denom": "ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722", "exponent": 0, }, { - "denom": "LORE", - "exponent": 6, + "aliases": [], + "denom": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", + "exponent": 8, }, ], - "description": "The native token of Gitopia", - "display": "LORE", + "description": "Sui’s native asset is called SUI.", + "display": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", "images": [ { "imageSync": { - "baseDenom": "ulore", - "chainName": "gitopia", - }, - "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", - "theme": { - "primaryColorHex": "#2c173c", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png", - "theme": { - "primaryColorHex": "#2e154d", + "baseDenom": "0x2::sui::SUI", + "chainName": "sui", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", }, - "name": "Gitopia", - "symbol": "LORE", + "name": "Sui", + "symbol": "SUI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "base_denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53679,46 +56423,50 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB", + "base": "ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74", "denomUnits": [ { "aliases": [ - "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", ], - "denom": "ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB", + "denom": "ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74", "exponent": 0, }, { - "denom": "roar", - "exponent": 6, + "aliases": [], + "denom": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", + "exponent": 8, }, ], - "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", - "display": "roar", + "description": "Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.", + "display": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", "images": [ { - "imageSync": { - "baseDenom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "chainName": "terra2", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg", "theme": { - "primaryColorHex": "#f3f313", + "darkMode": true, + }, + }, + { + "imageSync": { + "baseDenom": "0x1::aptos_coin::AptosCoin", + "chainName": "aptos", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg", }, - "name": "Lion DAO", - "symbol": "ROAR", + "name": "Aptos Coin", + "symbol": "APT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "base_denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53728,47 +56476,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F", + "base": "ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653", "denomUnits": [ { "aliases": [ - "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", + "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", ], - "denom": "ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F", + "denom": "ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653", "exponent": 0, }, { - "denom": "stumee", + "denom": "mnta", "exponent": 6, }, ], - "display": "stumee", + "description": "MantaDAO Governance Token", + "display": "mnta", "images": [ { "imageSync": { - "baseDenom": "stuumee", - "chainName": "stride", + "baseDenom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chainName": "kujira", }, - "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/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", "theme": { - "primaryColorHex": "#fbd9e9", + "primaryColorHex": "#0c141c", }, }, ], "logoURIs": { - "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/kujira/images/mnta.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", }, - "name": "Stride Staked UMEE", - "symbol": "stUMEE", + "name": "MantaDAO", + "symbol": "MNTA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", + "base_denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53778,95 +56527,100 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5", + "base": "ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97", "denomUnits": [ { "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", ], - "denom": "ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5", + "denom": "ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97", "exponent": 0, }, { - "denom": "stibcx", + "denom": "dgl", "exponent": 6, }, ], - "display": "stibcx", + "display": "dgl", "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", + "imageSync": { + "baseDenom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "chainName": "juno", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#dfe0e0", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", }, - "name": "Staked IBCX", - "symbol": "stIBCX", + "name": "Licorice", + "symbol": "DGL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "base_denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF", + "base": "ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1", "denomUnits": [ { "aliases": [ - "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", ], - "denom": "ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF", + "denom": "ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1", "exponent": 0, }, { - "denom": "nls", + "aliases": [], + "denom": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", "exponent": 6, }, ], - "description": "The native token of Nolus chain", - "display": "nls", + "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "display": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", + }, { "imageSync": { - "baseDenom": "unls", - "chainName": "nolus", + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "chainName": "gateway", }, - "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/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#fc542c", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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/osmosis/images/usdc.hole.svg", }, - "name": "Nolus", - "symbol": "NLS", + "name": "USDC (Ethereum via Wormhole)", + "symbol": "USDC.eth.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "base_denom": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53876,46 +56630,51 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243", + "base": "ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336", "denomUnits": [ { "aliases": [ - "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", + "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", ], - "denom": "ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243", + "denom": "ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336", "exponent": 0, }, { - "denom": "cub", - "exponent": 6, + "aliases": [], + "denom": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", + "exponent": 8, }, ], - "description": "Lion Cub DAO is a useless meme community DAO on Terra", - "display": "cub", + "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "display": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg", + }, { "imageSync": { - "baseDenom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "chainName": "terra2", + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "chainName": "gateway", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "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", "theme": { - "primaryColorHex": "#f3d343", + "primaryColorHex": "#303030", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg", }, - "name": "Lion Cub DAO", - "symbol": "CUB", + "name": "Ethereum (Wormhole)", + "symbol": "ETH.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", + "base_denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53925,46 +56684,49 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF", + "base": "ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827", "denomUnits": [ { "aliases": [ - "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", + "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", ], - "denom": "ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF", + "denom": "ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827", "exponent": 0, }, { - "denom": "blue", + "denom": "usdc", "exponent": 6, }, ], - "description": "BLUE CUB DAO is a community DAO on Terra", - "display": "blue", + "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.", + "display": "usdc", "images": [ { "imageSync": { - "baseDenom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "chainName": "terra2", + "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#040404", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, - "name": "BLUE CUB DAO", - "symbol": "BLUE", + "name": "USDC", + "symbol": "USDC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", + "base_denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -53974,50 +56736,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8", + "base": "ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951", "denomUnits": [ { "aliases": [ - "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", ], - "denom": "ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8", + "denom": "ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951", "exponent": 0, }, { - "denom": "ntrn", - "exponent": 6, + "denom": "YieldETH", + "exponent": 18, }, ], - "description": "The native token of Neutron chain.", - "display": "ntrn", + "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", + "display": "YieldETH", "images": [ { "imageSync": { - "baseDenom": "untrn", - "chainName": "neutron", + "baseDenom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", + "chainName": "ethereum", }, - "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/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg", "theme": { - "backgroundColorHex": "#000000", - "circle": true, - "primaryColorHex": "#040404", + "primaryColorHex": "#14448c", }, }, ], "logoURIs": { - "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/_non-cosmos/ethereum/images/yieldeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg", }, - "name": "Neutron", - "symbol": "NTRN", + "name": "Real Yield ETH", + "symbol": "YieldETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "base_denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54027,46 +56787,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633", + "base": "ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A", "denomUnits": [ { "aliases": [ - "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", + "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", ], - "denom": "ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633", + "denom": "ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A", "exponent": 0, }, { - "denom": "casa", - "exponent": 6, + "denom": "xpla", + "exponent": 18, }, ], - "description": "An innovative DAO dedicated to housing the most vulnerable", - "display": "casa", + "description": "The native staking token of XPLA.", + "display": "xpla", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", - "chainName": "juno", + "baseDenom": "axpla", + "chainName": "xpla", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", + "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", "theme": { - "primaryColorHex": "#04040c", + "primaryColorHex": "#04b4fc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", + "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", }, - "name": "Casa", - "symbol": "CASA", + "name": "XPLA", + "symbol": "XPLA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", + "base_denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54076,43 +56838,46 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B", + "base": "ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0", "denomUnits": [ { "aliases": [ - "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", ], - "denom": "ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B", + "denom": "ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0", "exponent": 0, }, { - "denom": "pica", - "exponent": 12, + "denom": "oin", + "exponent": 6, }, ], - "description": "The native staking and governance token of Composable.", - "display": "pica", + "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.", + "display": "oin", "images": [ { "imageSync": { - "baseDenom": "ppica", - "chainName": "picasso", + "baseDenom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "chainName": "sei", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "theme": { + "primaryColorHex": "#6cdbac", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", }, - "name": "Picasso", - "symbol": "PICA", + "name": "OIN STORE OF VALUE", + "symbol": "OIN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "base_denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54122,43 +56887,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540", + "base": "ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333", "denomUnits": [ { "aliases": [ - "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", ], - "denom": "ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540", + "denom": "ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333", "exponent": 0, }, { - "denom": "ksm", - "exponent": 12, + "denom": "neok", + "exponent": 18, }, ], - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "display": "ksm", + "description": "The token of Neokingdom DAO.", + "display": "neok", "images": [ { "imageSync": { - "baseDenom": "Planck", - "chainName": "kusama", + "baseDenom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "chainName": "evmos", + }, + "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", + "theme": { + "primaryColorHex": "#7f0f70", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.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", }, - "name": "Kusama", - "symbol": "KSM", + "name": "Neokingdom DAO", + "symbol": "NEOK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "base_denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54168,52 +56938,50 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891", + "base": "ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D", "denomUnits": [ { "aliases": [ - "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", ], - "denom": "ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891", + "denom": "ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D", "exponent": 0, }, { - "denom": "dot", - "exponent": 10, + "denom": "rio", + "exponent": 18, }, ], - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "display": "dot", + "description": "The native currency of the Realio Network.", + "display": "rio", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.svg", - }, { "imageSync": { - "baseDenom": "ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366", - "chainName": "composable", + "baseDenom": "ario", + "chainName": "realio", }, - "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", + "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", "theme": { - "primaryColorHex": "#e4047c", + "backgroundColorHex": "#000000", + "circle": true, + "primaryColorHex": "#000000", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.pica.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", }, - "name": "Polkadot (Picasso)", - "symbol": "DOT.pica", + "name": "Realio Network", + "symbol": "RIO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "base_denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54223,161 +56991,136 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2", + "base": "ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7", + "coingeckoId": "collateralized-debt-token", "denomUnits": [ { "aliases": [ - "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", ], - "denom": "ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2", + "denom": "ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7", "exponent": 0, }, { - "aliases": [], - "denom": "qsr", + "denom": "cdt", "exponent": 6, }, ], - "description": "The native token of Quasar", - "display": "qsr", + "description": "Membrane's CDP-style stablecoin called CDT", + "display": "cdt", "images": [ { - "imageSync": { - "baseDenom": "uqsr", - "chainName": "quasar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", - "theme": { - "primaryColorHex": "#a493e4", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", }, - "name": "Quasar", - "symbol": "QSR", + "name": "CDT Stablecoin", + "symbol": "CDT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E", + "base": "ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776", + "coingeckoId": "membrane", "denomUnits": [ { "aliases": [ - "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", ], - "denom": "ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E", + "denom": "ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776", "exponent": 0, }, { - "denom": "uarch", - "exponent": 12, - }, - { - "denom": "arch", - "exponent": 18, + "denom": "mbrn", + "exponent": 6, }, ], - "description": "The native token of Archway network", - "display": "arch", + "description": "Membrane's protocol token", + "display": "mbrn", "images": [ { - "imageSync": { - "baseDenom": "aarch", - "chainName": "archway", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", - "theme": { - "primaryColorHex": "#fc4c04", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/arch.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", }, - "name": "Archway", - "symbol": "ARCH", + "name": "Membrane", + "symbol": "MBRN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868", + "base": "ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E", "denomUnits": [ { "aliases": [ - "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", ], - "denom": "ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868", + "denom": "ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E", "exponent": 0, }, { - "denom": "mpwr", + "denom": "sge", "exponent": 6, }, ], - "description": "The native staking and governance token of Empower.", - "display": "mpwr", + "description": "The native token of SGE Network", + "display": "sge", "images": [ { "imageSync": { - "baseDenom": "umpwr", - "chainName": "empowerchain", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", - "theme": { - "backgroundColorHex": "#00e33a", - "circle": true, - "primaryColorHex": "#00e33a", + "baseDenom": "usge", + "chainName": "sge", }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.png", + "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", "theme": { - "backgroundColorHex": "#00e33a", + "backgroundColorHex": "#00000000", "circle": false, - "primaryColorHex": "#00e33a", + "primaryColorHex": "#C0A15B", }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.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", }, - "name": "EmpowerChain", - "symbol": "MPWR", + "name": "SGE", + "symbol": "SGE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "base_denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54387,46 +57130,43 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2", + "base": "ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD", "denomUnits": [ { "aliases": [ - "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", + "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", ], - "denom": "ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2", + "denom": "ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD", "exponent": 0, }, { - "denom": "watr", + "denom": "fis", "exponent": 6, }, ], - "description": "A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!", - "display": "watr", + "description": "The native staking and governance token of the StaFi Hub.", + "display": "fis", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png", - "theme": { - "primaryColorHex": "#38b5c5", + "baseDenom": "ufis", + "chainName": "stafihub", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg", }, - "name": "WATR", - "symbol": "WATR", + "name": "StaFi Hub", + "symbol": "FIS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", + "base_denom": "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54436,48 +57176,43 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E", + "base": "ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156", "denomUnits": [ { "aliases": [ - "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", ], - "denom": "ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E", + "denom": "ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156", "exponent": 0, }, { - "denom": "kyve", + "denom": "ratom", "exponent": 6, }, ], - "description": "The native utility token of the KYVE network.", - "display": "kyve", + "description": "A liquid staking representation of staked ATOMs", + "display": "ratom", "images": [ { "imageSync": { - "baseDenom": "ukyve", - "chainName": "kyve", - }, - "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", - "theme": { - "primaryColorHex": "#335350", + "baseDenom": "uratom", + "chainName": "stafihub", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg", }, ], "logoURIs": { - "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/stafihub/images/ratom.svg", }, - "name": "KYVE", - "symbol": "KYVE", + "name": "rATOM", + "symbol": "rATOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "base_denom": "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54487,57 +57222,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7", + "base": "ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7", "denomUnits": [ { "aliases": [ - "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", ], - "denom": "ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7", + "denom": "ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7", "exponent": 0, }, { - "denom": "usdt", + "denom": "strdst", "exponent": 6, }, ], - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "display": "usdt", + "description": "The native token of ohhNFT.", + "display": "strdst", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg", - "theme": { - "primaryColorHex": "#049494", - }, - }, { "imageSync": { - "baseDenom": "erc20/tether/usdt", - "chainName": "kava", + "baseDenom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "chainName": "stargaze", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.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", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#c9720c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.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", }, - "name": "Tether USD (Kava)", - "symbol": "USDT.kava", + "name": "Stardust STRDST", + "symbol": "STRDST", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "base_denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54547,98 +57273,108 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "address": "osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9", - "base": "ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE", + "base": "ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B", "denomUnits": [ { "aliases": [ - "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", ], - "denom": "ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE", + "denom": "ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B", "exponent": 0, }, { - "denom": "ampOSMO", - "exponent": 6, + "denom": "DORA", + "exponent": 18, }, ], - "description": "ERIS liquid staked OSMO", - "display": "ampOSMO", + "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", + "display": "DORA", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", + "imageSync": { + "baseDenom": "peaka", + "chainName": "doravota", + }, + "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", "theme": { - "primaryColorHex": "#cfdbf1", + "primaryColorHex": "#fba214", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", - }, - "name": "ERIS Amplified OSMO", - "socials": { - "twitter": "https://twitter.com/eris_protocol", - "website": "https://www.erisprotocol.com/", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", }, - "symbol": "ampOSMO", + "name": "Dora Vota", + "symbol": "DORA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "base_denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A", + "base": "ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0", "denomUnits": [ { "aliases": [ - "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", ], - "denom": "ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A", + "denom": "ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0", "exponent": 0, }, { - "denom": "sei", + "denom": "core", "exponent": 6, }, ], - "description": "The native staking token of Sei.", - "display": "sei", + "description": "The native token of Coreum", + "display": "core", "images": [ { "imageSync": { - "baseDenom": "usei", - "chainName": "sei", + "baseDenom": "ucore", + "chainName": "coreum", }, - "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/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg", "theme": { - "primaryColorHex": "#9c1c1c", + "primaryColorHex": "#24d494", }, }, ], + "keywords": [ + "dex", + "staking", + "wasm", + "assets", + "nft", + "XRPL", + ], "logoURIs": { - "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/coreum/images/coreum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg", }, - "name": "Sei", - "symbol": "SEI", + "name": "Coreum", + "symbol": "COREUM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "base_denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54648,49 +57384,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995", + "base": "ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B", "denomUnits": [ { "aliases": [ - "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", + "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", ], - "denom": "ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995", + "denom": "ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B", "exponent": 0, }, { - "aliases": [], - "denom": "qsomm", + "denom": "tia", "exponent": 6, }, ], - "description": "Quicksilver Liquid Staked SOMM", - "display": "qsomm", + "description": "The native token of the Celestia blockchain.", + "display": "tia", "images": [ { "imageSync": { - "baseDenom": "uqsomm", - "chainName": "quicksilver", + "baseDenom": "utia", + "chainName": "celestia", }, - "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", + "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", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#7c2cfb", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Quicksilver Liquid Staked SOMM", - "symbol": "qSOMM", + "name": "Celestia", + "symbol": "TIA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", + "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54700,46 +57435,56 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710", + "base": "ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6", "denomUnits": [ { "aliases": [ - "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", ], - "denom": "ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710", + "denom": "ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6", "exponent": 0, }, { - "denom": "pasg", - "exponent": 6, + "denom": "dydx", + "exponent": 18, }, ], - "description": "The native staking and governance token of the Passage chain.", - "display": "pasg", + "description": "DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.", + "display": "dydx", + "extendedDescription": "DYDX is a leading decentralized trading platform specializing in derivatives and perpetual contracts. It enables users to trade with leverage, providing a sophisticated and efficient trading environment without intermediaries. Built on the Ethereum blockchain, DYDX uses smart contracts to ensure transaction security and transparency, giving users full control over their funds and trades. + +The DYDX platform's native token, DYDX, is integral to its ecosystem, used for governance, staking, and fee discounts, incentivizing active participation. DYDX offers a wide range of trading pairs and supports advanced trading features like margin trading and lending. Combining the benefits of decentralized finance with traditional trading platform functionality, DYDX is paving the way for a more open and inclusive financial system.", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "theme": { + "circle": true, + }, + }, { "imageSync": { - "baseDenom": "upasg", - "chainName": "passage", + "baseDenom": "adydx", + "chainName": "dydx", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", + "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", "theme": { - "primaryColorHex": "#05050c", + "primaryColorHex": "#21212f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", }, - "name": "Passage", - "symbol": "PASG", + "name": "dYdX Protocol", + "symbol": "DYDX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "base_denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54749,47 +57494,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8", + "base": "ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC", "denomUnits": [ { "aliases": [ - "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", + "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", ], - "denom": "ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8", + "denom": "ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC", "exponent": 0, }, { - "denom": "stsomm", - "exponent": 6, + "denom": "WFX", + "exponent": 18, }, ], - "display": "stsomm", + "description": "The native staking token of the Function X", + "display": "WFX", "images": [ { "imageSync": { - "baseDenom": "stusomm", - "chainName": "stride", + "baseDenom": "FX", + "chainName": "fxcore", }, - "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/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#1c1c1c", }, }, ], "logoURIs": { - "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/fxcore/images/fx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg", }, - "name": "Stride Staked SOMM", - "symbol": "stSOMM", + "name": "f(x)Core", + "symbol": "FX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", + "base_denom": "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54799,54 +57545,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E", + "base": "ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437", "denomUnits": [ { "aliases": [ - "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", ], - "denom": "ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E", + "denom": "ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", - "exponent": 8, + "denom": "nbtc", + "exponent": 14, }, ], - "description": "Solana (SOL) is the native asset of the Solana blockchain.", - "display": "wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8", + "description": "Bitcoin. On Cosmos.", + "display": "nbtc", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.svg", - }, { "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", - "chainName": "gateway", + "baseDenom": "usat", + "chainName": "nomic", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.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", "theme": { - "backgroundColorHex": "#000000", - "circle": true, + "primaryColorHex": "#8436e6", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sol.wh.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", }, - "name": "Solana (Wormhole)", - "symbol": "SOL.wh", + "name": "Nomic Bitcoin", + "symbol": "nBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "base_denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54856,47 +57596,54 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55", + "base": "ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C", "denomUnits": [ { "aliases": [ - "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", + "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", ], - "denom": "ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55", + "denom": "ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", - "exponent": 5, + "denom": "nois", + "exponent": 6, }, ], - "description": "The Official Bonk Inu token", - "display": "wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5", + "description": "The native token of Nois", + "display": "nois", "images": [ { "imageSync": { - "baseDenom": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", - "chainName": "solana", + "baseDenom": "unois", + "chainName": "nois", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "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", "theme": { - "primaryColorHex": "#ee950a", + "primaryColorHex": "#0c0c14", }, }, ], + "keywords": [ + "nois", + "randomness", + "drand", + "wasm", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "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", }, - "name": "Bonk", - "symbol": "BONK", + "name": "Nois", + "symbol": "NOIS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", + "base_denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -54906,105 +57653,85 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB", + "base": "ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D", "denomUnits": [ { "aliases": [ - "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", + "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", ], - "denom": "ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB", + "denom": "ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", + "denom": "sqosmo", "exponent": 6, }, ], - "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", - "display": "wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6", + "description": "Margined Power Token sqOSMO", + "display": "sqosmo", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg", - "theme": { - "primaryColorHex": "#049393", - }, - }, - { - "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", - "chainName": "gateway", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", }, - "name": "Tether USD (Ethereum via Wormhole)", - "symbol": "USDT.eth.wh", + "name": "OSMO Squared", + "symbol": "sqOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722", + "base": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", "denomUnits": [ { "aliases": [ - "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", ], - "denom": "ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722", + "denom": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", - "exponent": 8, + "denom": "nstk", + "exponent": 6, }, ], - "description": "Sui’s native asset is called SUI.", - "display": "wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8", + "description": "The Revenue & Governance token of Unstake.fi", + "display": "nstk", "images": [ { "imageSync": { - "baseDenom": "0x2::sui::SUI", - "chainName": "sui", + "baseDenom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "chainName": "kujira", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, - "name": "Sui", - "symbol": "SUI", + "name": "Unstake Fi", + "symbol": "NSTK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "base_denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55014,50 +57741,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74", + "base": "ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198", "denomUnits": [ { "aliases": [ - "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", ], - "denom": "ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74", + "denom": "ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", - "exponent": 8, + "denom": "BRNCH", + "exponent": 6, }, ], - "description": "Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.", - "display": "wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8", + "description": "ohhNFT LP token.", + "display": "BRNCH", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg", - "theme": { - "darkMode": true, - }, - }, { "imageSync": { - "baseDenom": "0x1::aptos_coin::AptosCoin", - "chainName": "aptos", + "baseDenom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", + "chainName": "stargaze", + }, + "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", + "theme": { + "primaryColorHex": "#70372a", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", }, ], "logoURIs": { - "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/stargaze/images/brnch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg", }, - "name": "Aptos Coin", - "symbol": "APT", + "name": "Branch", + "symbol": "BRNCH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "base_denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55067,48 +57792,43 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653", + "base": "ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9", "denomUnits": [ { "aliases": [ - "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", ], - "denom": "ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653", + "denom": "ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9", "exponent": 0, }, { - "denom": "mnta", - "exponent": 6, + "denom": "wstETH", + "exponent": 18, }, ], - "description": "MantaDAO Governance Token", - "display": "mnta", + "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.", + "display": "wstETH", "images": [ { "imageSync": { - "baseDenom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chainName": "kujira", - }, - "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", - "theme": { - "primaryColorHex": "#0c141c", + "baseDenom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", }, - "name": "MantaDAO", - "symbol": "MNTA", + "name": "Wrapped Lido Staked Ether", + "symbol": "wstETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "base_denom": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55118,154 +57838,136 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97", + "base": "ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35", "denomUnits": [ { "aliases": [ - "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", + "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", ], - "denom": "ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97", + "denom": "ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35", "exponent": 0, }, { - "denom": "dgl", + "denom": "sqatom", "exponent": 6, }, ], - "display": "dgl", + "description": "Margined Power Token sqATOM", + "display": "sqatom", "images": [ { - "imageSync": { - "baseDenom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "chainName": "juno", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", - "theme": { - "primaryColorHex": "#dfe0e0", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", }, - "name": "Licorice", - "symbol": "DGL", + "name": "ATOM Squared", + "symbol": "sqATOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1", + "base": "ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2", "denomUnits": [ { "aliases": [ - "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", + "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", ], - "denom": "ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1", + "denom": "ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", + "denom": "sqbtc", "exponent": 6, }, ], - "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", - "display": "wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6", + "description": "Margined Power Token sqBTC", + "display": "sqbtc", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", - }, - { - "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", - "chainName": "gateway", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "theme": { - "circle": true, - "primaryColorHex": "#2775CA", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg", }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg", }, - "name": "USDC (Ethereum via Wormhole)", - "symbol": "USDC.eth.wh", + "name": "BTC Squared", + "symbol": "sqBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336", + "base": "ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781", "denomUnits": [ { "aliases": [ - "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", + "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", ], - "denom": "ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336", + "denom": "ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", - "exponent": 8, + "denom": "qwoyn", + "exponent": 6, }, ], - "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", - "display": "wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8", + "description": "QWOYN is the native governance token for Qwoyn Network", + "display": "qwoyn", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg", - }, { "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", - "chainName": "gateway", + "baseDenom": "uqwoyn", + "chainName": "qwoyn", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png", "theme": { - "primaryColorHex": "#303030", + "primaryColorHex": "#04e4fc", }, }, ], + "keywords": [ + "gaming", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png", }, - "name": "Ethereum (Wormhole)", - "symbol": "ETH.wh", + "name": "Qwoyn", + "symbol": "QWOYN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", + "base_denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55275,61 +57977,44 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827", + "base": "ibc/6735ED3E8D1F5C1BD236DB8857EA207648296CABE08090483F5E935A1520A8A7", "denomUnits": [ { "aliases": [ - "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", ], - "denom": "ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827", + "denom": "ibc/6735ED3E8D1F5C1BD236DB8857EA207648296CABE08090483F5E935A1520A8A7", "exponent": 0, }, - { - "denom": "usdc", - "exponent": 6, - }, ], - "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.", - "display": "usdc", + "description": "The liquid staking token of Bostrom", + "display": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", "images": [ { "imageSync": { - "baseDenom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "theme": { - "circle": true, - "primaryColorHex": "#2775CA", - }, - }, - { - "imageSync": { - "baseDenom": "uusdc", - "chainName": "noble", + "baseDenom": "hydrogen", + "chainName": "bostrom", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "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", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#ffffff", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "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", }, - "name": "USDC", - "symbol": "USDC", + "name": "Bostrom Hydrogen", + "symbol": "HYDROGEN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "base_denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55339,48 +58024,44 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951", + "base": "ibc/5F4DD1A197B376E57A7A7E813E981F376CEA0F1E800E3CEF436ADC3140ED5122", "denomUnits": [ { "aliases": [ - "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", ], - "denom": "ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951", + "denom": "ibc/5F4DD1A197B376E57A7A7E813E981F376CEA0F1E800E3CEF436ADC3140ED5122", "exponent": 0, }, - { - "denom": "YieldETH", - "exponent": 18, - }, ], - "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", - "display": "YieldETH", + "description": "The staking token of Cyber", + "display": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", "images": [ { "imageSync": { - "baseDenom": "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec", - "chainName": "ethereum", + "baseDenom": "tocyb", + "chainName": "bostrom", }, - "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", + "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", "theme": { - "primaryColorHex": "#14448c", + "primaryColorHex": "#1e8fa9", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Real Yield ETH", - "symbol": "YieldETH", + "name": "Bostrom Tocyb", + "symbol": "TOCYB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "base_denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55390,48 +58071,51 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A", + "base": "ibc/38A49509FBA29B3194E406CC603CC30E6584FED9C6880D780809613F58AE4910", "denomUnits": [ { "aliases": [ - "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", ], - "denom": "ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A", + "denom": "ibc/38A49509FBA29B3194E406CC603CC30E6584FED9C6880D780809613F58AE4910", "exponent": 0, }, { - "denom": "xpla", - "exponent": 18, + "aliases": [ + "volt", + ], + "denom": "volt", + "exponent": 3, }, ], - "description": "The native staking token of XPLA.", - "display": "xpla", + "description": "The resource token of Bostrom", + "display": "volt", "images": [ { "imageSync": { - "baseDenom": "axpla", - "chainName": "xpla", + "baseDenom": "millivolt", + "chainName": "bostrom", }, - "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/bostrom/images/volt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg", "theme": { - "primaryColorHex": "#04b4fc", + "primaryColorHex": "#fba809", }, }, ], "logoURIs": { - "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/bostrom/images/volt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg", }, - "name": "XPLA", - "symbol": "XPLA", + "name": "Bostrom Volt", + "symbol": "V", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "base_denom": "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55441,46 +58125,51 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0", + "base": "ibc/ACB8F181499634CD90AD0B81413DA16F694FC1CD25D83B1C90754F0A9ACFA9FA", "denomUnits": [ { "aliases": [ - "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", + "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", ], - "denom": "ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0", + "denom": "ibc/ACB8F181499634CD90AD0B81413DA16F694FC1CD25D83B1C90754F0A9ACFA9FA", "exponent": 0, }, { - "denom": "oin", - "exponent": 6, + "aliases": [ + "ampere", + ], + "denom": "ampere", + "exponent": 3, }, ], - "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.", - "display": "oin", + "description": "The resource token of Bostrom", + "display": "ampere", "images": [ { "imageSync": { - "baseDenom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", - "chainName": "sei", + "baseDenom": "milliampere", + "chainName": "bostrom", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "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", "theme": { - "primaryColorHex": "#6cdbac", + "primaryColorHex": "#f4ecce", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "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", }, - "name": "OIN STORE OF VALUE", - "symbol": "OIN", + "name": "Bostrom Ampere", + "symbol": "A", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", + "base_denom": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55490,48 +58179,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333", + "base": "ibc/FB8486949210039D55F3436C790CBC03564BDEFF38048E85A2415747852A8BBA", "denomUnits": [ { "aliases": [ - "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", ], - "denom": "ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333", + "denom": "ibc/FB8486949210039D55F3436C790CBC03564BDEFF38048E85A2415747852A8BBA", "exponent": 0, }, { - "denom": "neok", - "exponent": 18, + "denom": "source", + "exponent": 6, }, ], - "description": "The token of Neokingdom DAO.", - "display": "neok", + "description": "The native token of SOURCE Chain", + "display": "source", "images": [ { "imageSync": { - "baseDenom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "chainName": "evmos", + "baseDenom": "usource", + "chainName": "source", }, - "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", + "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", "theme": { - "primaryColorHex": "#7f0f70", + "primaryColorHex": "#39a5fc", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Neokingdom DAO", - "symbol": "NEOK", + "name": "Source", + "symbol": "SOURCE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "base_denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55541,50 +58230,53 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D", + "base": "ibc/335ACE530CCACF48D070F8064634294C21943CBCFA32CBC2B4FFF316B93DFC5B", "denomUnits": [ { "aliases": [ - "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", ], - "denom": "ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D", + "denom": "ibc/335ACE530CCACF48D070F8064634294C21943CBCFA32CBC2B4FFF316B93DFC5B", "exponent": 0, }, { - "denom": "rio", - "exponent": 18, + "aliases": [ + "pyth", + ], + "denom": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "exponent": 6, }, ], - "description": "The native currency of the Realio Network.", - "display": "rio", - "images": [ - { - "imageSync": { - "baseDenom": "ario", - "chainName": "realio", - }, - "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", - "theme": { - "backgroundColorHex": "#000000", - "circle": true, - "primaryColorHex": "#000000", + "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: +-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. +-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval. +Consumers read the price information produced by the oracle program. + +Pyth'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. + +In 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.", + "display": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "images": [ + { + "imageSync": { + "baseDenom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "chainName": "solana", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", }, ], "logoURIs": { - "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/_non-cosmos/solana/images/pyth.svg", }, - "name": "Realio Network", - "symbol": "RIO", + "name": "Pyth Network", + "symbol": "PYTH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "base_denom": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55594,83 +58286,110 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7", - "coingeckoId": "collateralized-debt-token", + "base": "ibc/DEFC912F83078D3871B7B23E78051A136D2017FBF24869D1C34BA5DC5003BAF7", "denomUnits": [ { "aliases": [ - "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", ], - "denom": "ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7", + "denom": "ibc/DEFC912F83078D3871B7B23E78051A136D2017FBF24869D1C34BA5DC5003BAF7", "exponent": 0, }, { - "denom": "cdt", + "aliases": [ + "stk/osmo", + ], + "denom": "stkosmo", "exponent": 6, }, ], - "description": "Membrane's CDP-style stablecoin called CDT", - "display": "cdt", + "description": "PSTAKE Liquid-Staked OSMO", + "display": "stkosmo", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "imageSync": { + "baseDenom": "stk/uosmo", + "chainName": "persistence", + }, + "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", + "theme": { + "primaryColorHex": "#c3343d", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "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", }, - "name": "CDT Stablecoin", - "symbol": "CDT", + "name": "PSTAKE staked OSMO", + "symbol": "stkOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "base_denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776", - "coingeckoId": "membrane", + "base": "ibc/46589871DE00760A7FF7CDD13B770D8ED75D6349D29CFDE1FAB92C5E56259368", + "coingeckoId": "levana-protocol", "denomUnits": [ { "aliases": [ - "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", ], - "denom": "ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776", + "denom": "ibc/46589871DE00760A7FF7CDD13B770D8ED75D6349D29CFDE1FAB92C5E56259368", "exponent": 0, }, { - "denom": "mbrn", + "denom": "lvn", "exponent": 6, }, ], - "description": "Membrane's protocol token", - "display": "mbrn", + "description": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts.", + "display": "lvn", + "extendedDescription": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts. It aims to manage risk and provide benefits to both traders and liquidity providers. + +For traders, Levana's solution is to make all positions "well-funded," meaning that the maximum profit for each position is locked in advance. This eliminates the possibility of bad debt and insolvency, providing greater security. + +Liquidity providers, on the other hand, receive a yield for taking on the risk of market instability. They supply funds that act as collateral, and in return, they earn a fee with a risk premium. + +The protocol addresses the issues with existing perpetual swap models, such as the virtual AMM. These models rely on complex mechanisms to maintain price stability, but they have limitations and can be risky in volatile markets. + +By separating different trading pairs and creating a decentralized market for liquidity, Levana reduces the risk of contagion between different markets. This also makes it easier to expand to other blockchain networks. + +Overall, Levana's perpetual swaps protocol offers a reliable and secure platform for traders and liquidity providers. It ensures fair settlement, minimizes risks, and allows for the development of additional financial protocols on top of tokenized positions.", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", + "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", + "theme": { + "primaryColorHex": "#4c146c", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", + "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", }, - "name": "Membrane", - "symbol": "MBRN", + "name": "Levana", + "symbol": "LVN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "base_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55680,50 +58399,49 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "sdk.coin", }, { - "base": "ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E", + "base": "ibc/8380F7EA502C50F5DF97CA64A73A9023592A4A42317A2C3FB4D0A99655C0986C", "denomUnits": [ { "aliases": [ - "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", + "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", ], - "denom": "ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E", + "denom": "ibc/8380F7EA502C50F5DF97CA64A73A9023592A4A42317A2C3FB4D0A99655C0986C", "exponent": 0, }, { - "denom": "sge", + "denom": "puppy", "exponent": 6, }, ], - "description": "The native token of SGE Network", - "display": "sge", + "description": "Puppy", + "display": "puppy", "images": [ { "imageSync": { - "baseDenom": "usge", - "chainName": "sge", + "baseDenom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "chainName": "chihuahua", }, - "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/chihuahua/images/puppyhuahua_logo.png", "theme": { - "backgroundColorHex": "#00000000", - "circle": false, - "primaryColorHex": "#C0A15B", + "primaryColorHex": "#100e0d", }, }, ], + "keywords": [ + "osmosis_unstable", + ], "logoURIs": { - "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/chihuahua/images/puppyhuahua_logo.png", }, - "name": "SGE", - "symbol": "SGE", + "name": "Puppy", + "symbol": "PUPPY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", + "base_denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55733,43 +58451,46 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD", + "base": "ibc/9AD538BF2070C41731FE485F18FB1181CB2DFF230CD7B94F1E42C93242A0B2BE", "denomUnits": [ { "aliases": [ - "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", + "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", ], - "denom": "ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD", + "denom": "ibc/9AD538BF2070C41731FE485F18FB1181CB2DFF230CD7B94F1E42C93242A0B2BE", "exponent": 0, }, { - "denom": "fis", + "denom": "newt", "exponent": 6, }, ], - "description": "The native staking and governance token of the StaFi Hub.", - "display": "fis", + "description": "The cutest NEWT token on Neutron chain.", + "display": "newt", "images": [ { "imageSync": { - "baseDenom": "ufis", - "chainName": "stafihub", + "baseDenom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "theme": { + "primaryColorHex": "#16233d", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", }, - "name": "StaFi Hub", - "symbol": "FIS", + "name": "Newt", + "symbol": "NEWT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", + "base_denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55779,94 +58500,91 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156", + "base": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", + "coingeckoId": "milkyway-staked-tia", "denomUnits": [ { "aliases": [ - "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", + "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", ], - "denom": "ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156", + "denom": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", "exponent": 0, }, { - "denom": "ratom", + "denom": "milkTIA", "exponent": 6, }, ], - "description": "A liquid staking representation of staked ATOMs", - "display": "ratom", + "description": "MilkyWay's liquid staked TIA", + "display": "milkTIA", "images": [ { - "imageSync": { - "baseDenom": "uratom", - "chainName": "stafihub", + "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", + "theme": { + "primaryColorHex": "#d18dfc", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg", + "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", }, - "name": "rATOM", - "symbol": "rATOM", + "name": "milkTIA", + "symbol": "milkTIA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", + "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7", + "base": "ibc/8BED9B0D69DD1981DB405B2008C693265957610F63C7529CF10359183CF05544", "denomUnits": [ { "aliases": [ - "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", ], - "denom": "ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7", + "denom": "ibc/8BED9B0D69DD1981DB405B2008C693265957610F63C7529CF10359183CF05544", "exponent": 0, }, { - "denom": "strdst", + "denom": "ASH", "exponent": 6, }, ], - "description": "The native token of ohhNFT.", - "display": "strdst", + "description": "ASH", + "display": "ASH", "images": [ { "imageSync": { - "baseDenom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", - "chainName": "stargaze", - }, - "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", - "theme": { - "primaryColorHex": "#c9720c", + "baseDenom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "chainName": "migaloo", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", }, - "name": "Stardust STRDST", - "symbol": "STRDST", + "name": "ASH", + "symbol": "ASH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "base_denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55876,49 +58594,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B", + "base": "ibc/89C9B0B748E757A737C60DBE841B1EF8D087671573DFBDB9B0F310079A0C1FE1", "denomUnits": [ { "aliases": [ - "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", ], - "denom": "ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B", + "denom": "ibc/89C9B0B748E757A737C60DBE841B1EF8D087671573DFBDB9B0F310079A0C1FE1", "exponent": 0, }, { - "denom": "DORA", - "exponent": 18, + "denom": "RAC", + "exponent": 6, }, ], - "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", - "display": "DORA", + "description": "RAC", + "display": "RAC", "images": [ { "imageSync": { - "baseDenom": "peaka", - "chainName": "doravota", + "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chainName": "migaloo", }, - "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", + "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", "theme": { - "primaryColorHex": "#fba214", + "primaryColorHex": "#2b2434", }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "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", }, - "name": "Dora Vota", - "symbol": "DORA", + "name": "Racoon", + "symbol": "RAC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "base_denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55928,56 +58645,46 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0", + "base": "ibc/3BA95132BA0B978CAFADAC1A10A2A5F2890A371FA50860B2E0FC79BDE30F8F9D", "denomUnits": [ { "aliases": [ - "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", + "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", ], - "denom": "ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0", + "denom": "ibc/3BA95132BA0B978CAFADAC1A10A2A5F2890A371FA50860B2E0FC79BDE30F8F9D", "exponent": 0, }, { - "denom": "core", + "denom": "GUPPY", "exponent": 6, }, ], - "description": "The native token of Coreum", - "display": "core", + "description": "GUPPY", + "display": "GUPPY", "images": [ { "imageSync": { - "baseDenom": "ucore", - "chainName": "coreum", + "baseDenom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "chainName": "migaloo", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "theme": { - "primaryColorHex": "#24d494", + "primaryColorHex": "#d9966e", }, }, ], - "keywords": [ - "dex", - "staking", - "wasm", - "assets", - "nft", - "XRPL", - ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", }, - "name": "Coreum", - "symbol": "COREUM", + "name": "GUPPY", + "symbol": "GUPPY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", + "base_denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -55987,48 +58694,48 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B", + "base": "ibc/9EA788FA3E095ECFE4834DC842A43F64703B15B54A8318A854E36BB577F1A39D", "denomUnits": [ { "aliases": [ - "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", ], - "denom": "ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B", + "denom": "ibc/9EA788FA3E095ECFE4834DC842A43F64703B15B54A8318A854E36BB577F1A39D", "exponent": 0, }, { - "denom": "tia", - "exponent": 6, + "denom": "ISLM", + "exponent": 18, }, ], - "description": "The native token of the Celestia blockchain.", - "display": "tia", + "description": "The native EVM, governance and staking token of the Haqq Network", + "display": "ISLM", "images": [ { "imageSync": { - "baseDenom": "utia", - "chainName": "celestia", + "baseDenom": "aISLM", + "chainName": "haqq", }, - "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/haqq/images/islm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg", "theme": { - "primaryColorHex": "#7c2cfb", + "primaryColorHex": "#04cd80", }, }, ], "logoURIs": { - "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/haqq/images/islm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg", }, - "name": "Celestia", - "symbol": "TIA", + "name": "Haqq Network", + "symbol": "ISLM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "base_denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56038,56 +58745,49 @@ Participants in the Filecoin network are incentivized to act honestly and store "typeAsset": "ics20", }, { - "base": "ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6", + "base": "ibc/97C44C935A592FFC9FB600FDEB4E6D29EBEEDFCD417B87C83A8BAB2C6C4535AF", "denomUnits": [ { "aliases": [ - "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", ], - "denom": "ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6", + "denom": "ibc/97C44C935A592FFC9FB600FDEB4E6D29EBEEDFCD417B87C83A8BAB2C6C4535AF", "exponent": 0, }, { - "denom": "dydx", - "exponent": 18, + "denom": "autism", + "exponent": 6, }, ], - "description": "DYDX is a decentralized trading platform focused on derivatives and perpetual contracts, offering a secure and efficient trading experience without intermediaries.", - "display": "dydx", - "extendedDescription": "DYDX is a leading decentralized trading platform specializing in derivatives and perpetual contracts. It enables users to trade with leverage, providing a sophisticated and efficient trading environment without intermediaries. Built on the Ethereum blockchain, DYDX uses smart contracts to ensure transaction security and transparency, giving users full control over their funds and trades. - -The DYDX platform's native token, DYDX, is integral to its ecosystem, used for governance, staking, and fee discounts, incentivizing active participation. DYDX offers a wide range of trading pairs and supports advanced trading features like margin trading and lending. Combining the benefits of decentralized finance with traditional trading platform functionality, DYDX is paving the way for a more open and inclusive financial system.", + "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", + "display": "autism", "images": [ - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", - "theme": { - "circle": true, - }, - }, { "imageSync": { - "baseDenom": "adydx", - "chainName": "dydx", + "baseDenom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "chainName": "injective", }, - "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/injective/images/autism.png", "theme": { - "primaryColorHex": "#21212f", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", }, - "name": "dYdX Protocol", - "symbol": "DYDX", + "name": "Autism", + "symbol": "AUTISM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "base_denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56097,48 +58797,48 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC", + "base": "ibc/7727AC09D2B4724D8ACC35BF535F6EA2BF72FC20D7BF552F20C51AF0070624AB", "denomUnits": [ { "aliases": [ - "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", + "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", ], - "denom": "ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC", + "denom": "ibc/7727AC09D2B4724D8ACC35BF535F6EA2BF72FC20D7BF552F20C51AF0070624AB", "exponent": 0, }, { - "denom": "WFX", - "exponent": 18, + "denom": "page", + "exponent": 8, }, ], - "description": "The native staking token of the Function X", - "display": "WFX", + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "display": "page", "images": [ { "imageSync": { - "baseDenom": "FX", - "chainName": "fxcore", + "baseDenom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "chainName": "ethereum", }, - "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", + "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", "theme": { - "primaryColorHex": "#1c1c1c", + "primaryColorHex": "#ebb324", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "f(x)Core", - "symbol": "FX", + "name": "Page", + "symbol": "PAGE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", + "base_denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56148,48 +58848,51 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437", + "base": "ibc/C68A55A21D5DC7AB577B7AA1808FAE4D83DC30D484C9975AD33E5B87210CAEEF", "denomUnits": [ { "aliases": [ - "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", ], - "denom": "ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437", + "denom": "ibc/C68A55A21D5DC7AB577B7AA1808FAE4D83DC30D484C9975AD33E5B87210CAEEF", "exponent": 0, }, { - "denom": "nbtc", - "exponent": 14, + "denom": "PURSE", + "exponent": 18, }, ], - "description": "Bitcoin. On Cosmos.", - "display": "nbtc", + "description": "PURSE Token", + "display": "PURSE", "images": [ { "imageSync": { - "baseDenom": "usat", - "chainName": "nomic", + "baseDenom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", + "chainName": "binancesmartchain", }, - "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/pundix/images/purse-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg", "theme": { - "primaryColorHex": "#8436e6", + "primaryColorHex": "#1c1c1b", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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/pundix/images/purse-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg", }, - "name": "Nomic Bitcoin", - "symbol": "nBTC", + "name": "PURSE Token", + "symbol": "PURSE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "base_denom": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56199,54 +58902,48 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C", + "base": "ibc/AD0974AF34299DC85F354CEF3BA391809F25B9961BAB39A16C1D8F3AD8B76043", "denomUnits": [ { "aliases": [ - "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", ], - "denom": "ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C", + "denom": "ibc/AD0974AF34299DC85F354CEF3BA391809F25B9961BAB39A16C1D8F3AD8B76043", "exponent": 0, }, { - "denom": "nois", + "denom": "NINJA", "exponent": 6, }, ], - "description": "The native token of Nois", - "display": "nois", + "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "display": "NINJA", "images": [ { "imageSync": { - "baseDenom": "unois", - "chainName": "nois", + "baseDenom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "chainName": "injective", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", "theme": { - "primaryColorHex": "#0c0c14", + "backgroundColorHex": "#00468E", + "circle": true, + "primaryColorHex": "#00468E", }, }, ], - "keywords": [ - "nois", - "randomness", - "drand", - "wasm", - ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", }, - "name": "Nois", - "symbol": "NOIS", + "name": "Dog wif nunchucks", + "symbol": "NINJA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "base_denom": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56256,85 +58953,98 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D", + "base": "ibc/E324575520A1B4BCF4C765F89C2F1B441D262D3F32734CEFD04084C59CC7F76C", "denomUnits": [ { "aliases": [ - "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", ], - "denom": "ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D", + "denom": "ibc/E324575520A1B4BCF4C765F89C2F1B441D262D3F32734CEFD04084C59CC7F76C", "exponent": 0, }, { - "denom": "sqosmo", + "denom": "kleo", "exponent": 6, }, ], - "description": "Margined Power Token sqOSMO", - "display": "sqosmo", + "description": "Kleomedes Token", + "display": "kleo", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "imageSync": { + "baseDenom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "chainName": "juno", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", + "theme": { + "primaryColorHex": "#240454", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", }, - "name": "OSMO Squared", - "symbol": "sqOSMO", + "name": "Kleomedes", + "symbol": "KLEO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "base_denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "base": "ibc/D2F62295FFD5672EADBC1B2B9F722ECF777219BBF23DED996B56610364B11A9D", "denomUnits": [ { "aliases": [ - "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", ], - "denom": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "denom": "ibc/D2F62295FFD5672EADBC1B2B9F722ECF777219BBF23DED996B56610364B11A9D", "exponent": 0, }, { - "denom": "nstk", + "denom": "nyx", "exponent": 6, }, ], - "description": "The Revenue & Governance token of Unstake.fi", - "display": "nstk", + "description": "NYX Token (NYX) is the Nym Network's native token.", + "display": "nyx", "images": [ { "imageSync": { - "baseDenom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "chainName": "kujira", + "baseDenom": "unyx", + "chainName": "nyx", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "theme": { + "primaryColorHex": "#f45135", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", }, - "name": "Unstake Fi", - "symbol": "NSTK", + "name": "Nym", + "symbol": "NYX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "base_denom": "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56344,48 +59054,65 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198", + "base": "ibc/D2D44E82B667D9D581E581AAE03380F8BFAB84B8B2FE4968B638CFF158EC2EF3", "denomUnits": [ { "aliases": [ - "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", + "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", ], - "denom": "ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198", + "denom": "ibc/D2D44E82B667D9D581E581AAE03380F8BFAB84B8B2FE4968B638CFF158EC2EF3", "exponent": 0, }, { - "denom": "BRNCH", + "denom": "nym", "exponent": 6, }, ], - "description": "ohhNFT LP token.", - "display": "BRNCH", + "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + "display": "nym", "images": [ { "imageSync": { - "baseDenom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", - "chainName": "stargaze", + "baseDenom": "unym", + "chainName": "nyx", }, - "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", + "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": { - "primaryColorHex": "#70372a", + "circle": true, + "darkMode": false, + "primaryColorHex": "#151525", + }, + }, + { + "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": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#141424", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png", + "theme": { + "primaryColorHex": "#293a5d", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Branch", - "symbol": "BRNCH", + "name": "NYM", + "symbol": "NYM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", + "base_denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56395,43 +59122,48 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9", + "base": "ibc/EEA404549D4C616D266E67AF06B633080FF62974497D814A6D8DE8D86ED4A7D8", "denomUnits": [ { "aliases": [ - "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", ], - "denom": "ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9", + "denom": "ibc/EEA404549D4C616D266E67AF06B633080FF62974497D814A6D8DE8D86ED4A7D8", "exponent": 0, }, { - "denom": "wstETH", - "exponent": 18, + "denom": "achihuahuawifhat", + "exponent": 6, }, ], - "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.", - "display": "wstETH", + "description": "has a hat", + "display": "achihuahuawifhat", "images": [ { "imageSync": { - "baseDenom": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0", - "chainName": "ethereum", + "baseDenom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "chainName": "chihuahua", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "theme": { + "backgroundColorHex": "#F7E3C0", + "circle": true, + "primaryColorHex": "#F7E3C0", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", }, - "name": "Wrapped Lido Staked Ether", - "symbol": "wstETH", + "name": "Chihuahuawifhat", + "symbol": "BADDOG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "base_denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56441,136 +59173,144 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35", + "base": "ibc/60D08C7FDA01942D0C185FE817B9CB619B3266B496F4AA5780DF0A0784ABE505", "denomUnits": [ { "aliases": [ - "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", ], - "denom": "ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35", + "denom": "ibc/60D08C7FDA01942D0C185FE817B9CB619B3266B496F4AA5780DF0A0784ABE505", "exponent": 0, }, { - "denom": "sqatom", + "denom": "circus", "exponent": 6, }, ], - "description": "Margined Power Token sqATOM", - "display": "sqatom", + "description": "clownmaxxed store of value", + "display": "circus", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", + "imageSync": { + "baseDenom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "theme": { + "primaryColorHex": "#242033", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", }, - "name": "ATOM Squared", - "symbol": "sqATOM", + "name": "AtomEconomicZone69JaeKwonInu", + "symbol": "CIRCUS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "base_denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2", + "base": "ibc/FF661366F84BC706942E81F7527E1C933DFBDA7F968E6F1D184A6814B76C7C32", "denomUnits": [ { "aliases": [ - "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", ], - "denom": "ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2", + "denom": "ibc/FF661366F84BC706942E81F7527E1C933DFBDA7F968E6F1D184A6814B76C7C32", "exponent": 0, }, { - "denom": "sqbtc", + "denom": "jape", "exponent": 6, }, ], - "description": "Margined Power Token sqBTC", - "display": "sqbtc", + "description": "Governance and utility token for the Junø Apes NFT platform on Juno", + "display": "jape", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg", + "imageSync": { + "baseDenom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", + "chainName": "juno", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", + "theme": { + "primaryColorHex": "#ee8179", + }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", }, - "name": "BTC Squared", - "symbol": "sqBTC", + "name": "Junø Apes", + "symbol": "JAPE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "base_denom": "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781", + "base": "ibc/D890928B0B869501D98E0A91B5AB9812A7185F950C85D0F12A5236005E15A7DF", "denomUnits": [ { "aliases": [ - "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", + "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", ], - "denom": "ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781", + "denom": "ibc/D890928B0B869501D98E0A91B5AB9812A7185F950C85D0F12A5236005E15A7DF", "exponent": 0, }, { - "denom": "qwoyn", + "denom": "WOOF", "exponent": 6, }, ], - "description": "QWOYN is the native governance token for Qwoyn Network", - "display": "qwoyn", + "description": "Woof", + "display": "WOOF", "images": [ { "imageSync": { - "baseDenom": "uqwoyn", - "chainName": "qwoyn", + "baseDenom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "chainName": "chihuahua", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", "theme": { - "primaryColorHex": "#04e4fc", + "primaryColorHex": "#d9905f", }, }, ], - "keywords": [ - "gaming", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", }, - "name": "Qwoyn", - "symbol": "QWOYN", + "name": "WOOF", + "symbol": "WOOF", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", + "base_denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56580,44 +59320,48 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/6735ED3E8D1F5C1BD236DB8857EA207648296CABE08090483F5E935A1520A8A7", + "base": "ibc/8CF776047867590E4E15E3BF90B2ACA84F50F57D19C58781008835460082F47A", "denomUnits": [ { "aliases": [ - "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", ], - "denom": "ibc/6735ED3E8D1F5C1BD236DB8857EA207648296CABE08090483F5E935A1520A8A7", + "denom": "ibc/8CF776047867590E4E15E3BF90B2ACA84F50F57D19C58781008835460082F47A", "exponent": 0, }, + { + "denom": "sneaky", + "exponent": 6, + }, ], - "description": "The liquid staking token of Bostrom", - "display": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "description": "The native coin of Sneaky Productions.", + "display": "sneaky", "images": [ { "imageSync": { - "baseDenom": "hydrogen", - "chainName": "bostrom", + "baseDenom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "chainName": "stargaze", }, - "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", + "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", "theme": { - "primaryColorHex": "#ffffff", + "primaryColorHex": "#fbcaca", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Bostrom Hydrogen", - "symbol": "HYDROGEN", + "name": "Sneaky Productions", + "symbol": "SNEAKY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "base_denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56627,98 +59371,99 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/5F4DD1A197B376E57A7A7E813E981F376CEA0F1E800E3CEF436ADC3140ED5122", + "address": "osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743", + "base": "ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228", + "coingeckoId": "wrapped-bitcoin", "denomUnits": [ { "aliases": [ - "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", + "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", ], - "denom": "ibc/5F4DD1A197B376E57A7A7E813E981F376CEA0F1E800E3CEF436ADC3140ED5122", + "denom": "ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228", "exponent": 0, }, + { + "denom": "wbtc", + "exponent": 8, + }, ], - "description": "The staking token of Cyber", - "display": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", + "description": "Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", + "display": "wbtc", "images": [ { "imageSync": { - "baseDenom": "tocyb", - "chainName": "bostrom", + "baseDenom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", + "chainName": "ethereum", }, - "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", + "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", "theme": { - "primaryColorHex": "#1e8fa9", + "primaryColorHex": "#f39444", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Bostrom Tocyb", - "symbol": "TOCYB", + "name": "Wrapped Bitcoin", + "symbol": "WBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", + "base_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/38A49509FBA29B3194E406CC603CC30E6584FED9C6880D780809613F58AE4910", + "base": "ibc/5CD627655136684EF99C663C4282A906DBC47B4973B18B5B9B2B0B359A2F174F", "denomUnits": [ { "aliases": [ - "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", + "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", ], - "denom": "ibc/38A49509FBA29B3194E406CC603CC30E6584FED9C6880D780809613F58AE4910", + "denom": "ibc/5CD627655136684EF99C663C4282A906DBC47B4973B18B5B9B2B0B359A2F174F", "exponent": 0, }, { - "aliases": [ - "volt", - ], - "denom": "volt", - "exponent": 3, + "denom": "bad", + "exponent": 6, }, ], - "description": "The resource token of Bostrom", - "display": "volt", + "description": "Baddest coin on Cosmos", + "display": "bad", "images": [ { "imageSync": { - "baseDenom": "millivolt", - "chainName": "bostrom", + "baseDenom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "chainName": "neutron", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", "theme": { - "primaryColorHex": "#fba809", + "primaryColorHex": "#211a0d", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", }, - "name": "Bostrom Volt", - "symbol": "V", + "name": "Badcoin", + "symbol": "BAD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", + "base_denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56728,51 +59473,46 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/ACB8F181499634CD90AD0B81413DA16F694FC1CD25D83B1C90754F0A9ACFA9FA", + "base": "ibc/E07B2F5FA22468B2A65B7DD60241F0512580628830F3F59CA4A050BEDBB11A96", "denomUnits": [ { "aliases": [ - "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", + "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", ], - "denom": "ibc/ACB8F181499634CD90AD0B81413DA16F694FC1CD25D83B1C90754F0A9ACFA9FA", + "denom": "ibc/E07B2F5FA22468B2A65B7DD60241F0512580628830F3F59CA4A050BEDBB11A96", "exponent": 0, }, { - "aliases": [ - "ampere", - ], - "denom": "ampere", - "exponent": 3, + "denom": "sgnl", + "exponent": 6, }, ], - "description": "The resource token of Bostrom", - "display": "ampere", + "description": "Signal Art and Gaming on Juno", + "display": "sgnl", "images": [ { "imageSync": { - "baseDenom": "milliampere", - "chainName": "bostrom", + "baseDenom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "chainName": "juno", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", "theme": { - "primaryColorHex": "#f4ecce", + "primaryColorHex": "#c5c2c2", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", }, - "name": "Bostrom Ampere", - "symbol": "A", + "name": "Signal", + "symbol": "SGNL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", + "base_denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56782,158 +59522,131 @@ The DYDX platform's native token, DYDX, is integral to its ecosystem, used for g "typeAsset": "ics20", }, { - "base": "ibc/FB8486949210039D55F3436C790CBC03564BDEFF38048E85A2415747852A8BBA", + "address": "osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3", + "base": "ibc/E6C7BC444B58AC2E326744348B670C8A1B4123C8BA2868DE2E91F1CDBF30F291", "denomUnits": [ { "aliases": [ - "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", ], - "denom": "ibc/FB8486949210039D55F3436C790CBC03564BDEFF38048E85A2415747852A8BBA", + "denom": "ibc/E6C7BC444B58AC2E326744348B670C8A1B4123C8BA2868DE2E91F1CDBF30F291", "exponent": 0, }, { - "denom": "source", + "denom": "WOSMO", "exponent": 6, }, ], - "description": "The native token of SOURCE Chain", - "display": "source", + "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.", + "display": "WOSMO", "images": [ { - "imageSync": { - "baseDenom": "usource", - "chainName": "source", - }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "theme": { - "primaryColorHex": "#39a5fc", + "primaryColorHex": "#edd5ee", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", }, - "name": "Source", - "symbol": "SOURCE", + "name": "WOSMO", + "symbol": "WOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "base_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/335ACE530CCACF48D070F8064634294C21943CBCFA32CBC2B4FFF316B93DFC5B", + "base": "ibc/6A67B1A1B09613A5DC0479C750E22F327AF26FF1DC6DD2DD366BDB02EFE27EF4", "denomUnits": [ { "aliases": [ - "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", + "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", ], - "denom": "ibc/335ACE530CCACF48D070F8064634294C21943CBCFA32CBC2B4FFF316B93DFC5B", + "denom": "ibc/6A67B1A1B09613A5DC0479C750E22F327AF26FF1DC6DD2DD366BDB02EFE27EF4", "exponent": 0, }, { - "aliases": [ - "pyth", - ], - "denom": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "denom": "sqtia", "exponent": 6, }, ], - "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: --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. --Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval. -Consumers read the price information produced by the oracle program. - -Pyth'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. - -In 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.", - "display": "wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6", + "description": "Margined Power Token sqTIA", + "display": "sqtia", "images": [ { - "imageSync": { - "baseDenom": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", - "chainName": "solana", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", }, - "name": "Pyth Network", - "symbol": "PYTH", + "name": "TIA Squared", + "symbol": "sqTIA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/DEFC912F83078D3871B7B23E78051A136D2017FBF24869D1C34BA5DC5003BAF7", + "base": "ibc/B8FB1AB4BAA604854B9A6B700C54B675E5818EF76C19AB8354EDDD1D849E2657", "denomUnits": [ { "aliases": [ - "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", ], - "denom": "ibc/DEFC912F83078D3871B7B23E78051A136D2017FBF24869D1C34BA5DC5003BAF7", + "denom": "ibc/B8FB1AB4BAA604854B9A6B700C54B675E5818EF76C19AB8354EDDD1D849E2657", "exponent": 0, }, { - "aliases": [ - "stk/osmo", - ], - "denom": "stkosmo", + "denom": "apollo", "exponent": 6, }, ], - "description": "PSTAKE Liquid-Staked OSMO", - "display": "stkosmo", + "description": "The deflationary utility token of the Apollo DAO project", + "display": "apollo", "images": [ { "imageSync": { - "baseDenom": "stk/uosmo", - "chainName": "persistence", - }, - "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", - "theme": { - "primaryColorHex": "#c3343d", + "baseDenom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "chainName": "neutron", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", }, - "name": "PSTAKE staked OSMO", - "symbol": "stkOSMO", + "name": "Apollo DAO", + "symbol": "APOLLO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "base_denom": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -56943,108 +59656,99 @@ In both cases, the critical component of the system is the oracle program that c "typeAsset": "ics20", }, { - "base": "ibc/46589871DE00760A7FF7CDD13B770D8ED75D6349D29CFDE1FAB92C5E56259368", - "coingeckoId": "levana-protocol", + "base": "ibc/3071B8CB2C0615D0183966BBD5E0AF3F874E98E43D6E3B0C4C21DDE01E77D3E1", "denomUnits": [ { "aliases": [ - "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", ], - "denom": "ibc/46589871DE00760A7FF7CDD13B770D8ED75D6349D29CFDE1FAB92C5E56259368", + "denom": "ibc/3071B8CB2C0615D0183966BBD5E0AF3F874E98E43D6E3B0C4C21DDE01E77D3E1", "exponent": 0, }, { - "denom": "lvn", - "exponent": 6, + "denom": "stDYDX", + "exponent": 18, }, ], - "description": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts.", - "display": "lvn", - "extendedDescription": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts. It aims to manage risk and provide benefits to both traders and liquidity providers. - -For traders, Levana's solution is to make all positions "well-funded," meaning that the maximum profit for each position is locked in advance. This eliminates the possibility of bad debt and insolvency, providing greater security. - -Liquidity providers, on the other hand, receive a yield for taking on the risk of market instability. They supply funds that act as collateral, and in return, they earn a fee with a risk premium. - -The protocol addresses the issues with existing perpetual swap models, such as the virtual AMM. These models rely on complex mechanisms to maintain price stability, but they have limitations and can be risky in volatile markets. - -By separating different trading pairs and creating a decentralized market for liquidity, Levana reduces the risk of contagion between different markets. This also makes it easier to expand to other blockchain networks. - -Overall, Levana's perpetual swaps protocol offers a reliable and secure platform for traders and liquidity providers. It ensures fair settlement, minimizes risks, and allows for the development of additional financial protocols on top of tokenized positions.", + "description": "Stride's liquid staked DYDX", + "display": "stDYDX", "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", + "imageSync": { + "baseDenom": "stadydx", + "chainName": "stride", + }, + "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", "theme": { - "primaryColorHex": "#4c146c", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "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/stride/images/stdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg", }, - "name": "Levana", - "symbol": "LVN", + "name": "Stride Staked DYDX", + "symbol": "stDYDX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "base_denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/8380F7EA502C50F5DF97CA64A73A9023592A4A42317A2C3FB4D0A99655C0986C", + "base": "ibc/E06B80181465FDCDAED6024C4B7E98B6F070BA6B3B6DF512F82E4D6ACA5AF7A0", "denomUnits": [ { "aliases": [ - "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", + "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", ], - "denom": "ibc/8380F7EA502C50F5DF97CA64A73A9023592A4A42317A2C3FB4D0A99655C0986C", + "denom": "ibc/E06B80181465FDCDAED6024C4B7E98B6F070BA6B3B6DF512F82E4D6ACA5AF7A0", "exponent": 0, }, { - "denom": "puppy", + "denom": "stTIA", "exponent": 6, }, ], - "description": "Puppy", - "display": "puppy", + "description": "Stride's liquid staked TIA", + "display": "stTIA", "images": [ { "imageSync": { - "baseDenom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", - "chainName": "chihuahua", + "baseDenom": "stutia", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png", + "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", "theme": { - "primaryColorHex": "#100e0d", + "primaryColorHex": "#e40474", }, }, ], - "keywords": [ - "osmosis_unstable", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png", + "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", }, - "name": "Puppy", - "symbol": "PUPPY", + "name": "Stride Staked TIA", + "symbol": "stTIA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", + "base_denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57054,46 +59758,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/9AD538BF2070C41731FE485F18FB1181CB2DFF230CD7B94F1E42C93242A0B2BE", + "base": "ibc/FBCCFC0E5CDCAB87EDEE211304D8324776C62763B98B741107E18AB4165D0BE6", "denomUnits": [ { "aliases": [ - "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", ], - "denom": "ibc/9AD538BF2070C41731FE485F18FB1181CB2DFF230CD7B94F1E42C93242A0B2BE", + "denom": "ibc/FBCCFC0E5CDCAB87EDEE211304D8324776C62763B98B741107E18AB4165D0BE6", "exponent": 0, }, { - "denom": "newt", + "denom": "stSAGA", "exponent": 6, }, ], - "description": "The cutest NEWT token on Neutron chain.", - "display": "newt", + "description": "Stride's liquid staked SAGA", + "display": "stSAGA", "images": [ { "imageSync": { - "baseDenom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "chainName": "neutron", + "baseDenom": "stusaga", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg", "theme": { - "primaryColorHex": "#16233d", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg", }, - "name": "Newt", - "symbol": "NEWT", + "name": "Stride Staked SAGA", + "symbol": "stSAGA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "base_denom": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57103,91 +59809,98 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", - "coingeckoId": "milkyway-staked-tia", + "base": "ibc/B0A055B68D73C6034A120E8E845DA6C4686870A4A98D6FD6F4A4169EA0F163BB", "denomUnits": [ { "aliases": [ - "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", ], - "denom": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", + "denom": "ibc/B0A055B68D73C6034A120E8E845DA6C4686870A4A98D6FD6F4A4169EA0F163BB", "exponent": 0, }, { - "denom": "milkTIA", - "exponent": 6, + "denom": "stINJ", + "exponent": 18, }, ], - "description": "MilkyWay's liquid staked TIA", - "display": "milkTIA", + "display": "stINJ", "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", + "imageSync": { + "baseDenom": "stinj", + "chainName": "stride", + }, + "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", "theme": { - "primaryColorHex": "#d18dfc", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "milkTIA", - "symbol": "milkTIA", + "name": "Stride Staked INJ", + "symbol": "stINJ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "base_denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/8BED9B0D69DD1981DB405B2008C693265957610F63C7529CF10359183CF05544", + "base": "ibc/1EC8EC694440B5C85402633BBC0A7D9481F855EDDC528AA4125E468344BD16AF", "denomUnits": [ { "aliases": [ - "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", + "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", ], - "denom": "ibc/8BED9B0D69DD1981DB405B2008C693265957610F63C7529CF10359183CF05544", + "denom": "ibc/1EC8EC694440B5C85402633BBC0A7D9481F855EDDC528AA4125E468344BD16AF", "exponent": 0, }, { - "denom": "ASH", + "denom": "glto", "exponent": 6, }, ], - "description": "ASH", - "display": "ASH", + "description": "GLTO-ERC20 on injective", + "display": "glto", "images": [ { "imageSync": { - "baseDenom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "chainName": "migaloo", + "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "theme": { + "primaryColorHex": "#501cad", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", }, - "name": "ASH", - "symbol": "ASH", + "name": "Gelotto (Injective)", + "symbol": "GLTO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", + "base_denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57197,48 +59910,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/89C9B0B748E757A737C60DBE841B1EF8D087671573DFBDB9B0F310079A0C1FE1", + "base": "ibc/C9058DD0429D8A61AED77CEFEA375E4DBE41BCE3DD38F3AF4A53B17830798E75", "denomUnits": [ { "aliases": [ - "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", ], - "denom": "ibc/89C9B0B748E757A737C60DBE841B1EF8D087671573DFBDB9B0F310079A0C1FE1", + "denom": "ibc/C9058DD0429D8A61AED77CEFEA375E4DBE41BCE3DD38F3AF4A53B17830798E75", "exponent": 0, }, { - "denom": "RAC", - "exponent": 6, + "denom": "dym", + "exponent": 18, }, ], - "description": "RAC", - "display": "RAC", + "description": "The native governance and staking token of the Dymension Hub", + "display": "dym", "images": [ { "imageSync": { - "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "chainName": "migaloo", + "baseDenom": "adym", + "chainName": "dymension", }, - "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", + "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", "theme": { - "primaryColorHex": "#2b2434", + "primaryColorHex": "#f4e4d4", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Racoon", - "symbol": "RAC", + "name": "Dymension Hub", + "symbol": "DYM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "base_denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57248,97 +59961,103 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/3BA95132BA0B978CAFADAC1A10A2A5F2890A371FA50860B2E0FC79BDE30F8F9D", + "address": "osmo1279xudevmf5cw83vkhglct7jededp86k90k2le", + "base": "ibc/D8EBB37CE2287957843DAFE3F52D359BB6750380F2EC5DD2A84142AE09E79055", "denomUnits": [ { "aliases": [ - "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", ], - "denom": "ibc/3BA95132BA0B978CAFADAC1A10A2A5F2890A371FA50860B2E0FC79BDE30F8F9D", + "denom": "ibc/D8EBB37CE2287957843DAFE3F52D359BB6750380F2EC5DD2A84142AE09E79055", "exponent": 0, }, { - "denom": "GUPPY", + "denom": "RAPTR", "exponent": 6, }, ], - "description": "GUPPY", - "display": "GUPPY", + "description": "Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.", + "display": "RAPTR", "images": [ { - "imageSync": { - "baseDenom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "chainName": "migaloo", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", "theme": { - "primaryColorHex": "#d9966e", + "primaryColorHex": "#e2b67d", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", }, - "name": "GUPPY", - "symbol": "GUPPY", + "name": "RAPTR", + "symbol": "RAPTR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "base_denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/9EA788FA3E095ECFE4834DC842A43F64703B15B54A8318A854E36BB577F1A39D", + "base": "ibc/A3BF21A059F6B2492B1FDC6FA73AB24DD9EE74A773C1D014B1AD7721D7B8CC7D", "denomUnits": [ { "aliases": [ - "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", ], - "denom": "ibc/9EA788FA3E095ECFE4834DC842A43F64703B15B54A8318A854E36BB577F1A39D", + "denom": "ibc/A3BF21A059F6B2492B1FDC6FA73AB24DD9EE74A773C1D014B1AD7721D7B8CC7D", "exponent": 0, }, { - "denom": "ISLM", - "exponent": 18, + "denom": "astro.cw20", + "exponent": 6, }, ], - "description": "The native EVM, governance and staking token of the Haqq Network", - "display": "ISLM", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "astro.cw20", "images": [ { "imageSync": { - "baseDenom": "aISLM", - "chainName": "haqq", + "baseDenom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "chainName": "terra2", }, - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + }, + { + "imageSync": { + "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "chainName": "neutron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", "theme": { - "primaryColorHex": "#04cd80", + "primaryColorHex": "#4056e9", }, }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", }, - "name": "Haqq Network", - "symbol": "ISLM", + "name": "Astroport token (Terra)", + "symbol": "ASTRO.terra", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "base_denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57348,100 +60067,103 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/97C44C935A592FFC9FB600FDEB4E6D29EBEEDFCD417B87C83A8BAB2C6C4535AF", + "address": "osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8", + "base": "ibc/114387AE330079B92E3E0721FECF650B187E1121A19AD87C4F4D7A9BB71AC2D1", "denomUnits": [ { "aliases": [ - "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", ], - "denom": "ibc/97C44C935A592FFC9FB600FDEB4E6D29EBEEDFCD417B87C83A8BAB2C6C4535AF", + "denom": "ibc/114387AE330079B92E3E0721FECF650B187E1121A19AD87C4F4D7A9BB71AC2D1", "exponent": 0, }, { - "denom": "autism", + "denom": "BADKID", "exponent": 6, }, ], - "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", - "display": "autism", + "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.", + "display": "BADKID", "images": [ { - "imageSync": { - "baseDenom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "chainName": "injective", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#57443f", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", }, - "name": "Autism", - "symbol": "AUTISM", + "name": "BADKID", + "symbol": "BADKID", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "base_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/7727AC09D2B4724D8ACC35BF535F6EA2BF72FC20D7BF552F20C51AF0070624AB", + "base": "ibc/9F2BD22A608EB0F48363FA2CFB7FF24D946F0FD4D737F0CA2279C9B64A163018", "denomUnits": [ { "aliases": [ - "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", ], - "denom": "ibc/7727AC09D2B4724D8ACC35BF535F6EA2BF72FC20D7BF552F20C51AF0070624AB", + "denom": "ibc/9F2BD22A608EB0F48363FA2CFB7FF24D946F0FD4D737F0CA2279C9B64A163018", "exponent": 0, }, { - "denom": "page", - "exponent": 8, + "aliases": [], + "denom": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", + "exponent": 6, }, ], - "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", - "display": "page", + "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "display": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg", + "theme": { + "primaryColorHex": "#2775cb", + }, + }, { "imageSync": { - "baseDenom": "0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "chainName": "ethereum", + "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "chainName": "gateway", }, - "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/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "primaryColorHex": "#ebb324", + "circle": true, + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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/osmosis/images/solana.USDC.wh.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg", }, - "name": "Page", - "symbol": "PAGE", + "name": "USDC (Solana via Wormhole)", + "symbol": "USDC.sol.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "base_denom": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57451,51 +60173,49 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/C68A55A21D5DC7AB577B7AA1808FAE4D83DC30D484C9975AD33E5B87210CAEEF", + "base": "ibc/BCE845F1BC59E53B23950F116009C2E53B24DC947503B04036E13B45FE096616", "denomUnits": [ { "aliases": [ - "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", + "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", ], - "denom": "ibc/C68A55A21D5DC7AB577B7AA1808FAE4D83DC30D484C9975AD33E5B87210CAEEF", + "denom": "ibc/BCE845F1BC59E53B23950F116009C2E53B24DC947503B04036E13B45FE096616", "exponent": 0, }, { - "denom": "PURSE", + "denom": "heart", "exponent": 18, }, ], - "description": "PURSE Token", - "display": "PURSE", + "description": "The native staking and governance token of Humans.ai.", + "display": "heart", "images": [ { "imageSync": { - "baseDenom": "0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C", - "chainName": "binancesmartchain", + "baseDenom": "aheart", + "chainName": "humans", }, - "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", + "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", "theme": { - "primaryColorHex": "#1c1c1b", + "darkMode": true, + "primaryColorHex": "#f3f3f3", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "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", + "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", }, - "name": "PURSE Token", - "symbol": "PURSE", + "name": "Humans.ai", + "symbol": "HEART", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", + "base_denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57505,48 +60225,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/AD0974AF34299DC85F354CEF3BA391809F25B9961BAB39A16C1D8F3AD8B76043", + "base": "ibc/D5CD9A747CD2BF0515259473173B6AEAD46523D38F6994B09B4B04A0B1507FDC", "denomUnits": [ { "aliases": [ - "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", + "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", ], - "denom": "ibc/AD0974AF34299DC85F354CEF3BA391809F25B9961BAB39A16C1D8F3AD8B76043", + "denom": "ibc/D5CD9A747CD2BF0515259473173B6AEAD46523D38F6994B09B4B04A0B1507FDC", "exponent": 0, }, { - "denom": "NINJA", - "exponent": 6, + "denom": "berlin", + "exponent": 18, }, ], - "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", - "display": "NINJA", + "description": "The token of Teledisko DAO.", + "display": "berlin", "images": [ { "imageSync": { - "baseDenom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "chainName": "injective", + "baseDenom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "chainName": "evmos", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "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", "theme": { - "backgroundColorHex": "#00468E", - "circle": true, - "primaryColorHex": "#00468E", + "primaryColorHex": "#bbce1a", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "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", }, - "name": "Dog wif nunchucks", - "symbol": "NINJA", + "name": "Teledisko DAO - Legacy", + "symbol": "BERLIN-legacy", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", + "base_denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57556,46 +60276,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/E324575520A1B4BCF4C765F89C2F1B441D262D3F32734CEFD04084C59CC7F76C", + "base": "ibc/71579BD9CDA4C636497CE1AF0D91F20AFEB333A8A048021B12E9C0234DDC2859", "denomUnits": [ { "aliases": [ - "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", ], - "denom": "ibc/E324575520A1B4BCF4C765F89C2F1B441D262D3F32734CEFD04084C59CC7F76C", + "denom": "ibc/71579BD9CDA4C636497CE1AF0D91F20AFEB333A8A048021B12E9C0234DDC2859", "exponent": 0, }, { - "denom": "kleo", - "exponent": 6, + "denom": "scr", + "exponent": 9, }, ], - "description": "Kleomedes Token", - "display": "kleo", + "description": "The native token of Scorum", + "display": "scr", "images": [ { "imageSync": { - "baseDenom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", - "chainName": "juno", + "baseDenom": "nscr", + "chainName": "scorum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg", "theme": { - "primaryColorHex": "#240454", + "primaryColorHex": "#0bc47e", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg", }, - "name": "Kleomedes", - "symbol": "KLEO", + "name": "Scorum Network", + "symbol": "SCR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "base_denom": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57605,49 +60327,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/D2F62295FFD5672EADBC1B2B9F722ECF777219BBF23DED996B56610364B11A9D", + "base": "ibc/3CB4B8925A68260160A42CDBF14E03EB9328C8C93909607B970D63DDC8CD9604", "denomUnits": [ { "aliases": [ - "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", + "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", ], - "denom": "ibc/D2F62295FFD5672EADBC1B2B9F722ECF777219BBF23DED996B56610364B11A9D", + "denom": "ibc/3CB4B8925A68260160A42CDBF14E03EB9328C8C93909607B970D63DDC8CD9604", "exponent": 0, }, { - "denom": "nyx", + "denom": "c4e", "exponent": 6, }, ], - "description": "NYX Token (NYX) is the Nym Network's native token.", - "display": "nyx", + "description": "The native token of Chain4Energy", + "display": "c4e", "images": [ { "imageSync": { - "baseDenom": "unyx", - "chainName": "nyx", + "baseDenom": "uc4e", + "chainName": "chain4energy", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png", "theme": { - "primaryColorHex": "#f45135", + "primaryColorHex": "#24344c", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png", }, - "name": "Nym", - "symbol": "NYX", + "name": "C4E", + "symbol": "C4E", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", + "base_denom": "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57657,65 +60376,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/D2D44E82B667D9D581E581AAE03380F8BFAB84B8B2FE4968B638CFF158EC2EF3", + "base": "ibc/C120E702DC75FB784EAD30B9902C21FAE021B8D9E0BEA6EF4B140B5772034799", "denomUnits": [ { "aliases": [ - "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", ], - "denom": "ibc/D2D44E82B667D9D581E581AAE03380F8BFAB84B8B2FE4968B638CFF158EC2EF3", + "denom": "ibc/C120E702DC75FB784EAD30B9902C21FAE021B8D9E0BEA6EF4B140B5772034799", "exponent": 0, }, { - "denom": "nym", + "denom": "bitmos", "exponent": 6, }, ], - "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", - "display": "nym", + "description": "Bitmos opens doors for BRC20 tokens to thrive alongside established players in the Cosmos Network, revolutionizing decentralized finance (DeFi) for all.", + "display": "bitmos", "images": [ { "imageSync": { - "baseDenom": "unym", - "chainName": "nyx", - }, - "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": { - "circle": true, - "darkMode": false, - "primaryColorHex": "#151525", - }, - }, - { - "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": { - "circle": true, - "darkMode": true, - "primaryColorHex": "#141424", + "baseDenom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "chainName": "terra2", }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", "theme": { - "primaryColorHex": "#293a5d", + "primaryColorHex": "#0c0704", }, }, ], "logoURIs": { - "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/terra2/images/bitmos.png", }, - "name": "NYM", - "symbol": "NYM", + "name": "Bitmos", + "symbol": "BMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "base_denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57725,48 +60425,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/EEA404549D4C616D266E67AF06B633080FF62974497D814A6D8DE8D86ED4A7D8", + "base": "ibc/772018846E76027FDFC317784E815E93FEBE767D3F2DDDDD2B8A50250F3627C3", "denomUnits": [ { "aliases": [ - "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", ], - "denom": "ibc/EEA404549D4C616D266E67AF06B633080FF62974497D814A6D8DE8D86ED4A7D8", + "denom": "ibc/772018846E76027FDFC317784E815E93FEBE767D3F2DDDDD2B8A50250F3627C3", "exponent": 0, }, { - "denom": "achihuahuawifhat", - "exponent": 6, + "denom": "srcx", + "exponent": 9, }, ], - "description": "has a hat", - "display": "achihuahuawifhat", + "description": "The SRCX token of Source Protocol.", + "display": "srcx", "images": [ { "imageSync": { - "baseDenom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "chainName": "chihuahua", + "baseDenom": "0x454b90716a9435e7161a9aea5cf00e0acbe565ae", + "chainName": "binancesmartchain", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", "theme": { - "backgroundColorHex": "#F7E3C0", - "circle": true, - "primaryColorHex": "#F7E3C0", + "primaryColorHex": "#7f22bc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", }, - "name": "Chihuahuawifhat", - "symbol": "BADDOG", + "name": "Source Token", + "symbol": "SRCX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "base_denom": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57776,46 +60474,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/60D08C7FDA01942D0C185FE817B9CB619B3266B496F4AA5780DF0A0784ABE505", + "base": "ibc/F458A93E37219F308C86791A3E5443001A2221018C97A09C45856BF1461AE4D6", "denomUnits": [ { "aliases": [ - "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", + "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", ], - "denom": "ibc/60D08C7FDA01942D0C185FE817B9CB619B3266B496F4AA5780DF0A0784ABE505", + "denom": "ibc/F458A93E37219F308C86791A3E5443001A2221018C97A09C45856BF1461AE4D6", "exponent": 0, }, { - "denom": "circus", + "denom": "rock", "exponent": 6, }, ], - "description": "clownmaxxed store of value", - "display": "circus", + "description": "The revenue token for Pylons", + "display": "rock", "images": [ { "imageSync": { - "baseDenom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "chainName": "neutron", + "baseDenom": "ubedrock", + "chainName": "pylons", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png", "theme": { - "primaryColorHex": "#242033", + "primaryColorHex": "#ec4424", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png", }, - "name": "AtomEconomicZone69JaeKwonInu", - "symbol": "CIRCUS", + "name": "Pylons", + "symbol": "ROCK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", + "base_denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57825,46 +60523,49 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/FF661366F84BC706942E81F7527E1C933DFBDA7F968E6F1D184A6814B76C7C32", + "base": "ibc/BFA61F9398EBBF2D4274FD329DA62E8961EA691849F5BAF810E82FFC0DF0B4EF", "denomUnits": [ { "aliases": [ - "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", + "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", ], - "denom": "ibc/FF661366F84BC706942E81F7527E1C933DFBDA7F968E6F1D184A6814B76C7C32", + "denom": "ibc/BFA61F9398EBBF2D4274FD329DA62E8961EA691849F5BAF810E82FFC0DF0B4EF", "exponent": 0, }, { - "denom": "jape", - "exponent": 6, + "aliases": [ + "bskt", + ], + "denom": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", + "exponent": 5, }, ], - "description": "Governance and utility token for the Junø Apes NFT platform on Juno", - "display": "jape", + "description": "BSKT tracks the top assets across the crypto ecosystem", + "display": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", - "chainName": "juno", + "baseDenom": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "chainName": "solana", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png", "theme": { - "primaryColorHex": "#ee8179", + "primaryColorHex": "#485573", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png", }, - "name": "Junø Apes", - "symbol": "JAPE", + "name": "Basket", + "symbol": "BSKT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", + "base_denom": "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57874,46 +60575,52 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/D890928B0B869501D98E0A91B5AB9812A7185F950C85D0F12A5236005E15A7DF", + "base": "ibc/886B0BEA540E8464820F9ED9A5C46CF0D1F5405578B6E726E8EDB4E762224A67", "denomUnits": [ { "aliases": [ - "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", ], - "denom": "ibc/D890928B0B869501D98E0A91B5AB9812A7185F950C85D0F12A5236005E15A7DF", + "denom": "ibc/886B0BEA540E8464820F9ED9A5C46CF0D1F5405578B6E726E8EDB4E762224A67", "exponent": 0, }, { - "denom": "WOOF", - "exponent": 6, + "denom": "nanoaioz", + "exponent": 9, + }, + { + "denom": "aioz", + "exponent": 18, }, ], - "description": "Woof", - "display": "WOOF", + "description": "The native staking and governance token of the AIOZ Network.", + "display": "aioz", "images": [ { "imageSync": { - "baseDenom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", - "chainName": "chihuahua", + "baseDenom": "attoaioz", + "chainName": "aioz", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", "theme": { - "primaryColorHex": "#d9905f", + "primaryColorHex": "#24241c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", }, - "name": "WOOF", - "symbol": "WOOF", + "name": "AIOZ Network", + "symbol": "AIOZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "base_denom": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57923,48 +60630,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/8CF776047867590E4E15E3BF90B2ACA84F50F57D19C58781008835460082F47A", + "base": "ibc/554EA58C3CA978FFEAAEAA78641885BE6E597EFD2081ED65FDA211F0E672E662", "denomUnits": [ { "aliases": [ - "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", ], - "denom": "ibc/8CF776047867590E4E15E3BF90B2ACA84F50F57D19C58781008835460082F47A", + "denom": "ibc/554EA58C3CA978FFEAAEAA78641885BE6E597EFD2081ED65FDA211F0E672E662", "exponent": 0, }, { - "denom": "sneaky", - "exponent": 6, + "denom": "stDYM", + "exponent": 18, }, ], - "description": "The native coin of Sneaky Productions.", - "display": "sneaky", + "description": "Stride's liquid staked DYM", + "display": "stDYM", "images": [ { "imageSync": { - "baseDenom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "chainName": "stargaze", + "baseDenom": "stadym", + "chainName": "stride", }, - "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", + "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", "theme": { - "primaryColorHex": "#fbcaca", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "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", + "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", }, - "name": "Sneaky Productions", - "symbol": "SNEAKY", + "name": "Stride Staked DYM", + "symbol": "stDYM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "base_denom": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -57974,148 +60681,145 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "address": "osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743", - "base": "ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228", - "coingeckoId": "wrapped-bitcoin", + "base": "ibc/F4E6704E62885A175F390D91448A22A905587A39C50809F4522A0C1392567018", "denomUnits": [ { "aliases": [ - "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", ], - "denom": "ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228", + "denom": "ibc/F4E6704E62885A175F390D91448A22A905587A39C50809F4522A0C1392567018", "exponent": 0, }, { - "denom": "wbtc", - "exponent": 8, + "denom": "doki", + "exponent": 6, }, ], - "description": "Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", - "display": "wbtc", + "description": "DOKI the last Dragon", + "display": "doki", "images": [ { "imageSync": { - "baseDenom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "chainName": "ethereum", + "baseDenom": "udoki", + "chainName": "odin", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", "theme": { - "primaryColorHex": "#f39444", + "primaryColorHex": "#2e2d2a", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", }, - "name": "Wrapped Bitcoin", - "symbol": "WBTC", + "name": "DOKI", + "symbol": "DOKI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "base_denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/5CD627655136684EF99C663C4282A906DBC47B4973B18B5B9B2B0B359A2F174F", + "base": "ibc/9B29820FEC9C47B3EA02B44F6E8EF0F31D212B4272B6A2C78E015E0819F5899E", "denomUnits": [ { "aliases": [ - "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", + "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", ], - "denom": "ibc/5CD627655136684EF99C663C4282A906DBC47B4973B18B5B9B2B0B359A2F174F", + "denom": "ibc/9B29820FEC9C47B3EA02B44F6E8EF0F31D212B4272B6A2C78E015E0819F5899E", "exponent": 0, }, { - "denom": "bad", + "denom": "sail", "exponent": 6, }, ], - "description": "Baddest coin on Cosmos", - "display": "bad", + "description": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains.", + "display": "sail", + "extendedDescription": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains. Seeded by both the Osmosis Community Pool and the Migaloo Foundation, Sail DAO is open to hear offers from cosmos based projects that hope to seed liquidity for their token on the Osmosis blockchain. Along with the creation of this DAO the White Whale DEX is deployed on Osmosis, being the first DEX apart from Osmosis to deploy on the chain, it is a great step towards Osmosis becoming an ecosystem from an appchain. Migaloo incubated projects are encouraged to participate in OTC deals with Sail DAO in order to seed or enhance liquidity on WW's Osmosis DEX. However, offers are not limited to Migaloo projects and liquidity is not limited to being deployed on WW DEX. The treasury of this DAO can be deployed however it wishes at the discretion of the Sail DAO voters. The Osmosis CP has been given veto authorization over any props introduced in this DAO and has also been given clawback rights if this venture ever gets off track.", "images": [ { - "imageSync": { - "baseDenom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "chainName": "neutron", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "theme": { - "primaryColorHex": "#211a0d", + "primaryColorHex": "#1e264f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", }, - "name": "Badcoin", - "symbol": "BAD", + "name": "Sail", + "socials": { + "twitter": "https://twitter.com/Sail_DAO_", + "website": "https://daodao.zone/dao/osmo106tvcj58rvdn9k36m9m3xcmcwk2c3fgft3ldcst9lgy05gcmjanqexru3h/home", + }, + "symbol": "SAIL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", + "base_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/E07B2F5FA22468B2A65B7DD60241F0512580628830F3F59CA4A050BEDBB11A96", + "base": "ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC", "denomUnits": [ { "aliases": [ - "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", + "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", ], - "denom": "ibc/E07B2F5FA22468B2A65B7DD60241F0512580628830F3F59CA4A050BEDBB11A96", + "denom": "ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC", "exponent": 0, }, { - "denom": "sgnl", + "denom": "SHARK", "exponent": 6, }, ], - "description": "Signal Art and Gaming on Juno", - "display": "sgnl", + "description": "SHARK is the apex price prediction market within Cosmos.", + "display": "SHARK", "images": [ { "imageSync": { - "baseDenom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", - "chainName": "juno", + "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "chainName": "migaloo", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", "theme": { - "primaryColorHex": "#c5c2c2", + "primaryColorHex": "#062d54", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", }, - "name": "Signal", - "symbol": "SGNL", + "name": "SHARK", + "symbol": "SHARK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", + "base_denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58125,131 +60829,156 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "address": "osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3", - "base": "ibc/E6C7BC444B58AC2E326744348B670C8A1B4123C8BA2868DE2E91F1CDBF30F291", + "base": "ibc/1F3BF5898BE9E174769792795A7D676C71A45DA0774EBA51CC006ECAE9C9A106", "denomUnits": [ { "aliases": [ - "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", ], - "denom": "ibc/E6C7BC444B58AC2E326744348B670C8A1B4123C8BA2868DE2E91F1CDBF30F291", + "denom": "ibc/1F3BF5898BE9E174769792795A7D676C71A45DA0774EBA51CC006ECAE9C9A106", "exponent": 0, }, { - "denom": "WOSMO", + "denom": "xrp", "exponent": 6, }, ], - "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.", - "display": "WOSMO", + "description": "XRP bridged from XRPL", + "display": "xrp", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", "theme": { - "primaryColorHex": "#edd5ee", + "primaryColorHex": "#040404", + }, + }, + { + "imageSync": { + "baseDenom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "chainName": "coreum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.svg", + "theme": { + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", }, - "name": "WOSMO", - "symbol": "WOSMO", + "name": "Ripple (Coreum)", + "symbol": "XRP.core", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "base_denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/6A67B1A1B09613A5DC0479C750E22F327AF26FF1DC6DD2DD366BDB02EFE27EF4", + "base": "ibc/D51DB75B88ACAB17C381991FCBAD22DBAC1D6CF3D3B5185890257427062030F9", "denomUnits": [ { "aliases": [ - "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", ], - "denom": "ibc/6A67B1A1B09613A5DC0479C750E22F327AF26FF1DC6DD2DD366BDB02EFE27EF4", + "denom": "ibc/D51DB75B88ACAB17C381991FCBAD22DBAC1D6CF3D3B5185890257427062030F9", "exponent": 0, }, { - "denom": "sqtia", + "denom": "SEIYAN", "exponent": 6, }, ], - "description": "Margined Power Token sqTIA", - "display": "sqtia", + "description": "The Original Meme Coin of SEI Network", + "display": "SEIYAN", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", + "imageSync": { + "baseDenom": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", + "chainName": "sei", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png", + "theme": { + "primaryColorHex": "#db1f22", + }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png", }, - "name": "TIA Squared", - "symbol": "sqTIA", + "name": "SEIYAN", + "symbol": "SEIYAN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "base_denom": "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/B8FB1AB4BAA604854B9A6B700C54B675E5818EF76C19AB8354EDDD1D849E2657", + "base": "ibc/B8790B217F737942132E29C734DD7E484B7A3BAE10E8D6E84EBF94936B481903", "denomUnits": [ { "aliases": [ - "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", + "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", ], - "denom": "ibc/B8FB1AB4BAA604854B9A6B700C54B675E5818EF76C19AB8354EDDD1D849E2657", + "denom": "ibc/B8790B217F737942132E29C734DD7E484B7A3BAE10E8D6E84EBF94936B481903", "exponent": 0, }, { - "denom": "apollo", + "denom": "nibi", "exponent": 6, }, ], - "description": "The deflationary utility token of the Apollo DAO project", - "display": "apollo", + "description": "The native token of Nibiru network", + "display": "nibi", "images": [ { "imageSync": { - "baseDenom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "chainName": "neutron", + "baseDenom": "unibi", + "chainName": "nibiru", + }, + "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", + "theme": { + "primaryColorHex": "#14c0ce", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "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", }, - "name": "Apollo DAO", - "symbol": "APOLLO", + "name": "Nibiru", + "symbol": "NIBI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", + "base_denom": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58259,48 +60988,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/3071B8CB2C0615D0183966BBD5E0AF3F874E98E43D6E3B0C4C21DDE01E77D3E1", + "base": "ibc/2ACBCCCC19CB96954549AF80ADDEF925FC8D947D45964C2CD59DF84ACC0D1378", "denomUnits": [ { "aliases": [ - "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", ], - "denom": "ibc/3071B8CB2C0615D0183966BBD5E0AF3F874E98E43D6E3B0C4C21DDE01E77D3E1", + "denom": "ibc/2ACBCCCC19CB96954549AF80ADDEF925FC8D947D45964C2CD59DF84ACC0D1378", "exponent": 0, }, { - "denom": "stDYDX", - "exponent": 18, + "denom": "beast", + "exponent": 6, }, ], - "description": "Stride's liquid staked DYDX", - "display": "stDYDX", + "description": "BEAST-ERC20 on injective", + "display": "beast", "images": [ { "imageSync": { - "baseDenom": "stadydx", - "chainName": "stride", + "baseDenom": "0xA4426666addBE8c4985377d36683D17FB40c31Be", + "chainName": "ethereum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#21172b", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", }, - "name": "Stride Staked DYDX", - "symbol": "stDYDX", + "name": "Gelotto BEAST", + "symbol": "BEAST", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "base_denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58310,48 +61037,51 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/E06B80181465FDCDAED6024C4B7E98B6F070BA6B3B6DF512F82E4D6ACA5AF7A0", + "base": "ibc/DAFC338F192C45AE9F63546E5EE75D4B45AE54F5F57D0CD1C89AEC34BF52F98A", "denomUnits": [ { "aliases": [ - "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", ], - "denom": "ibc/E06B80181465FDCDAED6024C4B7E98B6F070BA6B3B6DF512F82E4D6ACA5AF7A0", + "denom": "ibc/DAFC338F192C45AE9F63546E5EE75D4B45AE54F5F57D0CD1C89AEC34BF52F98A", "exponent": 0, }, { - "denom": "stTIA", - "exponent": 6, + "denom": "cvnt", + "exponent": 18, }, ], - "description": "Stride's liquid staked TIA", - "display": "stTIA", + "description": "Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi", + "display": "cvnt", "images": [ { "imageSync": { - "baseDenom": "stutia", - "chainName": "stride", + "baseDenom": "acvnt", + "chainName": "conscious", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#047e04", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg", }, - "name": "Stride Staked TIA", - "symbol": "stTIA", + "name": "ConsciousDAO", + "symbol": "CVN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "base_denom": "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58361,98 +61091,99 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/FBCCFC0E5CDCAB87EDEE211304D8324776C62763B98B741107E18AB4165D0BE6", + "address": "osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z", + "base": "ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB", "denomUnits": [ { "aliases": [ - "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", ], - "denom": "ibc/FBCCFC0E5CDCAB87EDEE211304D8324776C62763B98B741107E18AB4165D0BE6", + "denom": "ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB", "exponent": 0, }, { - "denom": "stSAGA", + "denom": "toro", "exponent": 6, }, ], - "description": "Stride's liquid staked SAGA", - "display": "stSAGA", + "description": "The memecoin built for the Celestia community", + "display": "toro", "images": [ { - "imageSync": { - "baseDenom": "stusaga", - "chainName": "stride", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#c39ccc", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg", }, - "name": "Stride Staked SAGA", - "symbol": "stSAGA", + "name": "TORO", + "symbol": "TORO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "base_denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/B0A055B68D73C6034A120E8E845DA6C4686870A4A98D6FD6F4A4169EA0F163BB", + "base": "ibc/5F1C80ED319775C81910BCC7AC8B712E447CBD8C5DAE7BCFD263D3EE54128196", "denomUnits": [ { "aliases": [ - "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", ], - "denom": "ibc/B0A055B68D73C6034A120E8E845DA6C4686870A4A98D6FD6F4A4169EA0F163BB", + "denom": "ibc/5F1C80ED319775C81910BCC7AC8B712E447CBD8C5DAE7BCFD263D3EE54128196", "exponent": 0, }, { - "denom": "stINJ", - "exponent": 18, + "denom": "sayve", + "exponent": 6, }, ], - "display": "stINJ", + "description": "Sayve is a revolutionary language learning app in the Web3 era that combines gamification, blockchain technology, and a Metaverse experience to motivate users to learn languages while earning rewards.", + "display": "sayve", "images": [ { "imageSync": { - "baseDenom": "stinj", - "chainName": "stride", + "baseDenom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "chainName": "terra2", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", "theme": { - "primaryColorHex": "#e40474", + "primaryColorHex": "#f3ebdb", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", }, - "name": "Stride Staked INJ", - "symbol": "stINJ", + "name": "sayve", + "symbol": "SAYVE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "base_denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58462,216 +61193,208 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/1EC8EC694440B5C85402633BBC0A7D9481F855EDDC528AA4125E468344BD16AF", + "address": "osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n", + "base": "ibc/214998822A78253F5B3C4C1BCC0501805C3D6B49DD9A0AC37C54F064516DC1F1", + "coingeckoId": "mad-scientists", "denomUnits": [ { "aliases": [ - "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", ], - "denom": "ibc/1EC8EC694440B5C85402633BBC0A7D9481F855EDDC528AA4125E468344BD16AF", + "denom": "ibc/214998822A78253F5B3C4C1BCC0501805C3D6B49DD9A0AC37C54F064516DC1F1", "exponent": 0, }, { - "denom": "glto", + "denom": "LAB", "exponent": 6, }, ], - "description": "GLTO-ERC20 on injective", - "display": "glto", - "images": [ - { - "imageSync": { - "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", - "theme": { - "primaryColorHex": "#501cad", - }, - }, + "description": "LAB - Everything is an Experiment", + "display": "LAB", + "extendedDescription": "LAB - Everything is an Experiment + +Use 10 $LAB tokens to mint 1 Mad Scientist NFT on Backbone Labs Osmosis Launchpad. You will then be able to trade your NFTs on the marketplace. You can also choose to hold onto your $LAB tokens as unrevealed NFTs and trade it. + + Fair Launch: The event was marked by the absence of whitelists (WLs), no bots and no lock, ensuring an equitable opportunity for all interested parties. + +Preparation for the Launch: Participants were given a 52.91-hour window to deposit $OSMO into a pool on Streamswap. + +The Swap Process: After the initial deposit period, $OSMO was converted into $LAB tokens over an additional hour, allowing for a smooth transition and fair distribution.", + "images": [ { - "imageSync": { - "baseDenom": "0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", "theme": { - "primaryColorHex": "#501cad", + "primaryColorHex": "#bcdd76", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/glto.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", }, - "name": "Gelotto (Injective)", - "symbol": "GLTO", + "name": "LAB", + "symbol": "LAB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "base_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/C9058DD0429D8A61AED77CEFEA375E4DBE41BCE3DD38F3AF4A53B17830798E75", + "address": "osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv", + "base": "ibc/C6D87341B033BB107B61DA018D9B9C2FF3CD2A0560030BD2F0FB0493B75B4338", "denomUnits": [ { "aliases": [ - "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", ], - "denom": "ibc/C9058DD0429D8A61AED77CEFEA375E4DBE41BCE3DD38F3AF4A53B17830798E75", + "denom": "ibc/C6D87341B033BB107B61DA018D9B9C2FF3CD2A0560030BD2F0FB0493B75B4338", "exponent": 0, }, { - "denom": "dym", - "exponent": 18, + "denom": "bOSMO", + "exponent": 6, }, ], - "description": "The native governance and staking token of the Dymension Hub", - "display": "dym", + "description": "BackBone Labs Liquid Staked OSMO", + "display": "bOSMO", + "extendedDescription": "bOSMO - solving capital inefficiencies in the NFT market space", "images": [ { - "imageSync": { - "baseDenom": "adym", - "chainName": "dymension", - }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", "theme": { - "primaryColorHex": "#f4e4d4", + "primaryColorHex": "#c68db5", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", }, - "name": "Dymension Hub", - "symbol": "DYM", + "name": "BackBone Labs Liquid Staked OSMO", + "socials": { + "twitter": "https://twitter.com/BackBone_Labs", + "website": "https://app.backbonelabs.io/", + }, + "symbol": "bOSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "base_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1279xudevmf5cw83vkhglct7jededp86k90k2le", - "base": "ibc/D8EBB37CE2287957843DAFE3F52D359BB6750380F2EC5DD2A84142AE09E79055", + "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "denomUnits": [ { "aliases": [ - "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", + "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", ], - "denom": "ibc/D8EBB37CE2287957843DAFE3F52D359BB6750380F2EC5DD2A84142AE09E79055", + "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "exponent": 0, }, { - "denom": "RAPTR", - "exponent": 6, + "aliases": [], + "denom": "PUNDIX", + "exponent": 18, }, ], - "description": "Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.", - "display": "RAPTR", + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "display": "PUNDIX", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", + "imageSync": { + "baseDenom": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg", "theme": { - "primaryColorHex": "#e2b67d", + "primaryColorHex": "#f1d20c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "theme": { + "primaryColorHex": "#f1d20c", }, }, - ], - "keywords": [ - "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg", }, - "name": "RAPTR", - "symbol": "RAPTR", + "name": "Pundi X Token", + "symbol": "PUNDIX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", + "base_denom": "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/A3BF21A059F6B2492B1FDC6FA73AB24DD9EE74A773C1D014B1AD7721D7B8CC7D", + "base": "ibc/16A4181A009E618AB2E91D86CFC27142605411A58055521F7E89606C836B8DED", "denomUnits": [ { "aliases": [ - "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", + "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", ], - "denom": "ibc/A3BF21A059F6B2492B1FDC6FA73AB24DD9EE74A773C1D014B1AD7721D7B8CC7D", + "denom": "ibc/16A4181A009E618AB2E91D86CFC27142605411A58055521F7E89606C836B8DED", "exponent": 0, }, { - "denom": "astro.cw20", - "exponent": 6, + "denom": "tnkr", + "exponent": 12, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "astro.cw20", + "description": "The native fee, governance and staking token of the Tinkernet Parachain.", + "display": "tnkr", "images": [ { "imageSync": { - "baseDenom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "chainName": "terra2", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", - }, - { - "imageSync": { - "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "chainName": "neutron", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", - "theme": { - "primaryColorHex": "#4056e9", + "baseDenom": "Planck", + "chainName": "tinkernet", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg", }, - "name": "Astroport token (Terra)", - "symbol": "ASTRO.terra", + "name": "Tinkernet", + "symbol": "TNKR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", + "base_denom": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58681,103 +61404,97 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "address": "osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8", - "base": "ibc/114387AE330079B92E3E0721FECF650B187E1121A19AD87C4F4D7A9BB71AC2D1", + "base": "ibc/F2C3FEF6F21E77DDD839B59D07806591BC557CF80BDA99865898E6474BA6445B", "denomUnits": [ { "aliases": [ - "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", ], - "denom": "ibc/114387AE330079B92E3E0721FECF650B187E1121A19AD87C4F4D7A9BB71AC2D1", + "denom": "ibc/F2C3FEF6F21E77DDD839B59D07806591BC557CF80BDA99865898E6474BA6445B", "exponent": 0, }, { - "denom": "BADKID", + "denom": "w", "exponent": 6, }, ], - "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.", - "display": "BADKID", + "description": "W is the native token powering the Wormhole interoperability platform.", + "display": "w", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "imageSync": { + "baseDenom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "chainName": "solana", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", "theme": { - "primaryColorHex": "#57443f", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", }, - "name": "BADKID", - "symbol": "BADKID", + "name": "Wormhole Token", + "symbol": "W", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "base_denom": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/9F2BD22A608EB0F48363FA2CFB7FF24D946F0FD4D737F0CA2279C9B64A163018", + "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "denomUnits": [ { "aliases": [ - "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", + "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", ], - "denom": "ibc/9F2BD22A608EB0F48363FA2CFB7FF24D946F0FD4D737F0CA2279C9B64A163018", + "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "exponent": 0, }, { - "aliases": [], - "denom": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", + "denom": "dhp", "exponent": 6, }, ], - "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", - "display": "wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6", + "description": "The native token of dHealth", + "display": "dhp", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg", - "theme": { - "primaryColorHex": "#2775cb", - }, - }, { "imageSync": { - "baseDenom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", - "chainName": "gateway", + "baseDenom": "udhp", + "chainName": "dhealth", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", "theme": { - "circle": true, - "primaryColorHex": "#2775CA", + "primaryColorHex": "#140c7c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/solana.USDC.wh.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", }, - "name": "USDC (Solana via Wormhole)", - "symbol": "USDC.sol.wh", + "name": "dHealth", + "symbol": "DHP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", + "base_denom": "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58787,49 +61504,52 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/BCE845F1BC59E53B23950F116009C2E53B24DC947503B04036E13B45FE096616", + "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "denomUnits": [ { "aliases": [ - "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE", ], - "denom": "ibc/BCE845F1BC59E53B23950F116009C2E53B24DC947503B04036E13B45FE096616", + "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "exponent": 0, }, { - "denom": "heart", - "exponent": 18, + "denom": "fury", + "exponent": 6, }, ], - "description": "The native staking and governance token of Humans.ai.", - "display": "heart", + "description": "The native token of Furya", + "display": "fury", "images": [ { "imageSync": { - "baseDenom": "aheart", - "chainName": "humans", + "baseDenom": "ufury", + "chainName": "furya", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", "theme": { - "darkMode": true, - "primaryColorHex": "#f3f3f3", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "gaming", + "staking", + ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", }, - "name": "Humans.ai", - "symbol": "HEART", + "name": "furya", + "symbol": "FURY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "base_denom": "ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58839,48 +61559,57 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/D5CD9A747CD2BF0515259473173B6AEAD46523D38F6994B09B4B04A0B1507FDC", + "base": "ibc/BB4E0D2AF916E6D40D0FCBC0743448880A4146C8364E7C3D800F27E2E01A606A", "denomUnits": [ { "aliases": [ - "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", ], - "denom": "ibc/D5CD9A747CD2BF0515259473173B6AEAD46523D38F6994B09B4B04A0B1507FDC", + "denom": "ibc/BB4E0D2AF916E6D40D0FCBC0743448880A4146C8364E7C3D800F27E2E01A606A", "exponent": 0, }, { - "denom": "berlin", - "exponent": 18, + "denom": "saga", + "exponent": 6, }, ], - "description": "The token of Teledisko DAO.", - "display": "berlin", + "description": "The native staking and governance token of Saga.", + "display": "saga", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", + "theme": { + "darkMode": true, + "primaryColorHex": "#FFFFFF", + }, + }, { "imageSync": { - "baseDenom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", - "chainName": "evmos", + "baseDenom": "usaga", + "chainName": "saga", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg", "theme": { - "primaryColorHex": "#bbce1a", + "darkMode": false, + "primaryColorHex": "#000000", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", }, - "name": "Teledisko DAO - Legacy", - "symbol": "BERLIN-legacy", + "name": "Saga", + "symbol": "SAGA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "base_denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58890,48 +61619,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/71579BD9CDA4C636497CE1AF0D91F20AFEB333A8A048021B12E9C0234DDC2859", + "base": "ibc/7A86896AFC89C06AB5286BB4A6DB070475956CF2B58F1C13114F20B1B2718B78", "denomUnits": [ { "aliases": [ - "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", ], - "denom": "ibc/71579BD9CDA4C636497CE1AF0D91F20AFEB333A8A048021B12E9C0234DDC2859", + "denom": "ibc/7A86896AFC89C06AB5286BB4A6DB070475956CF2B58F1C13114F20B1B2718B78", "exponent": 0, }, { - "denom": "scr", - "exponent": 9, + "denom": "ATOM1KLFG", + "exponent": 6, }, ], - "description": "The native token of Scorum", - "display": "scr", + "description": "$ATOM to $1,000 LFG!!", + "display": "ATOM1KLFG", "images": [ { "imageSync": { - "baseDenom": "nscr", - "chainName": "scorum", + "baseDenom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "chainName": "neutron", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", "theme": { - "primaryColorHex": "#0bc47e", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", }, - "name": "Scorum", - "symbol": "SCR", + "name": "ATOM1KLFG", + "symbol": "ATOM1KLFG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "base_denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58941,46 +61668,51 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/3CB4B8925A68260160A42CDBF14E03EB9328C8C93909607B970D63DDC8CD9604", + "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "denomUnits": [ { "aliases": [ - "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", + "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", ], - "denom": "ibc/3CB4B8925A68260160A42CDBF14E03EB9328C8C93909607B970D63DDC8CD9604", + "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "exponent": 0, }, { - "denom": "c4e", - "exponent": 6, + "denom": "SHIDO", + "exponent": 18, }, ], - "description": "The native token of Chain4Energy", - "display": "c4e", + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "display": "SHIDO", "images": [ { "imageSync": { - "baseDenom": "uc4e", - "chainName": "chain4energy", + "baseDenom": "shido", + "chainName": "shido", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", "theme": { - "primaryColorHex": "#24344c", + "primaryColorHex": "#046ffc", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", }, - "name": "C4E", - "symbol": "C4E", + "name": "Shido", + "symbol": "SHIDO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", + "base_denom": "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -58990,46 +61722,51 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/C120E702DC75FB784EAD30B9902C21FAE021B8D9E0BEA6EF4B140B5772034799", + "base": "ibc/1D4760757E4EDC388BB3CF12DD13235EC8030D3E122DC304DE5622492D86DA02", "denomUnits": [ { "aliases": [ - "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", ], - "denom": "ibc/C120E702DC75FB784EAD30B9902C21FAE021B8D9E0BEA6EF4B140B5772034799", + "denom": "ibc/1D4760757E4EDC388BB3CF12DD13235EC8030D3E122DC304DE5622492D86DA02", "exponent": 0, }, { - "denom": "bitmos", + "denom": "cif", "exponent": 6, }, ], - "description": "Bitmos opens doors for BRC20 tokens to thrive alongside established players in the Cosmos Network, revolutionizing decentralized finance (DeFi) for all.", - "display": "bitmos", + "description": "Decentralized Machine Learning", + "display": "cif", "images": [ { "imageSync": { - "baseDenom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "chainName": "terra2", + "baseDenom": "ucif", + "chainName": "cifer", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "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", "theme": { - "primaryColorHex": "#0c0704", + "primaryColorHex": "#af49b7", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "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", }, - "name": "Bitmos", - "symbol": "BMOS", + "name": "Cifer", + "symbol": "CIF", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "base_denom": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59039,46 +61776,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/772018846E76027FDFC317784E815E93FEBE767D3F2DDDDD2B8A50250F3627C3", + "base": "ibc/9A02E6918754F50AC3150E975DCD15D8A980747E99A666C0F70C809A3BCA1A2D", "denomUnits": [ { "aliases": [ - "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", + "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", ], - "denom": "ibc/772018846E76027FDFC317784E815E93FEBE767D3F2DDDDD2B8A50250F3627C3", + "denom": "ibc/9A02E6918754F50AC3150E975DCD15D8A980747E99A666C0F70C809A3BCA1A2D", "exponent": 0, }, { - "denom": "srcx", - "exponent": 9, + "denom": "hava", + "exponent": 6, }, ], - "description": "The SRCX token of Source Protocol.", - "display": "srcx", + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", + "display": "hava", "images": [ { "imageSync": { - "baseDenom": "0x454b90716a9435e7161a9aea5cf00e0acbe565ae", - "chainName": "binancesmartchain", + "baseDenom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "chainName": "injective", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", "theme": { - "primaryColorHex": "#7f22bc", + "primaryColorHex": "#eacea5", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", }, - "name": "Source Token", - "symbol": "SRCX", + "name": "Hava Coin", + "symbol": "HAVA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", + "base_denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59088,98 +61825,104 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/F458A93E37219F308C86791A3E5443001A2221018C97A09C45856BF1461AE4D6", + "base": "ibc/F76B13D759708EF9BBECB3DFAB7C6652F4F5164D09A4DB3E5A5BD22412EDBDE2", "denomUnits": [ { "aliases": [ - "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", ], - "denom": "ibc/F458A93E37219F308C86791A3E5443001A2221018C97A09C45856BF1461AE4D6", + "denom": "ibc/F76B13D759708EF9BBECB3DFAB7C6652F4F5164D09A4DB3E5A5BD22412EDBDE2", "exponent": 0, }, { - "denom": "rock", + "denom": "IBC", "exponent": 6, }, ], - "description": "The revenue token for Pylons", - "display": "rock", + "description": "OnE mEmEcOiN tO cOnNeCt oL ImBeCiles - aNd in Da Cosmos BiNd DeM", + "display": "IBC", "images": [ { - "imageSync": { - "baseDenom": "ubedrock", - "chainName": "pylons", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png", "theme": { - "primaryColorHex": "#ec4424", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "memecoin", + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png", }, - "name": "Pylons", - "symbol": "ROCK", + "name": "IBC", + "socials": { + "twitter": "https://twitter.com/IBCmemecoin", + "website": "https://www.ibcmeme.wtf", + }, + "symbol": "IBC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "base_denom": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BFA61F9398EBBF2D4274FD329DA62E8961EA691849F5BAF810E82FFC0DF0B4EF", + "base": "ibc/8DCD88C72325CC1D9740517AD109BCC7D243709A4269C071F07B19A88050ACF3", "denomUnits": [ { "aliases": [ - "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", + "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", ], - "denom": "ibc/BFA61F9398EBBF2D4274FD329DA62E8961EA691849F5BAF810E82FFC0DF0B4EF", + "denom": "ibc/8DCD88C72325CC1D9740517AD109BCC7D243709A4269C071F07B19A88050ACF3", "exponent": 0, }, { - "aliases": [ - "bskt", - ], - "denom": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", - "exponent": 5, + "denom": "crowdp", + "exponent": 18, }, ], - "description": "BSKT tracks the top assets across the crypto ecosystem", - "display": "wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5", + "description": "The token of Crowdpunk DAO", + "display": "crowdp", "images": [ { "imageSync": { - "baseDenom": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", - "chainName": "solana", + "baseDenom": "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", + "chainName": "evmos", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg", "theme": { - "primaryColorHex": "#485573", + "primaryColorHex": "#04fbfb", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg", }, - "name": "Basket", - "symbol": "BSKT", + "name": "Crowdpunk DAO", + "symbol": "CROWDP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA", + "base_denom": "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59189,52 +61932,48 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/886B0BEA540E8464820F9ED9A5C46CF0D1F5405578B6E726E8EDB4E762224A67", + "base": "ibc/5672B0C0F8B81D05DEFC7781A6A3C46CA70D65E5BB4282E331149B4722F6B080", "denomUnits": [ { "aliases": [ - "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", + "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", ], - "denom": "ibc/886B0BEA540E8464820F9ED9A5C46CF0D1F5405578B6E726E8EDB4E762224A67", + "denom": "ibc/5672B0C0F8B81D05DEFC7781A6A3C46CA70D65E5BB4282E331149B4722F6B080", "exponent": 0, }, { - "denom": "nanoaioz", - "exponent": 9, - }, - { - "denom": "aioz", - "exponent": 18, + "denom": "astro", + "exponent": 6, }, ], - "description": "The native staking and governance token of the AIOZ Network.", - "display": "aioz", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "astro", "images": [ { "imageSync": { - "baseDenom": "attoaioz", - "chainName": "aioz", + "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "chainName": "neutron", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", "theme": { - "primaryColorHex": "#24241c", + "primaryColorHex": "#4056e9", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", }, - "name": "AIOZ Network", - "symbol": "AIOZ", + "name": "Astroport token", + "symbol": "ASTRO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", + "base_denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59244,48 +61983,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/554EA58C3CA978FFEAAEAA78641885BE6E597EFD2081ED65FDA211F0E672E662", + "base": "ibc/87DEAC4978821878D74272DC7665F31A5549DDFBCB8366DD3B4959492BCE6ED4", "denomUnits": [ { "aliases": [ - "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", ], - "denom": "ibc/554EA58C3CA978FFEAAEAA78641885BE6E597EFD2081ED65FDA211F0E672E662", + "denom": "ibc/87DEAC4978821878D74272DC7665F31A5549DDFBCB8366DD3B4959492BCE6ED4", "exponent": 0, }, { - "denom": "stDYM", - "exponent": 18, + "denom": "xASTRO", + "exponent": 6, }, ], - "description": "Stride's liquid staked DYM", - "display": "stDYM", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "display": "xASTRO", "images": [ { "imageSync": { - "baseDenom": "stadym", - "chainName": "stride", - }, - "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", - "theme": { - "primaryColorHex": "#e40474", + "baseDenom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "chainName": "neutron", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", }, - "name": "Stride Staked DYM", - "symbol": "stDYM", + "name": "Staked Astroport Token", + "symbol": "xASTRO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "base_denom": "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59295,46 +62032,55 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/F4E6704E62885A175F390D91448A22A905587A39C50809F4522A0C1392567018", + "base": "ibc/4D448462FAE17CA0138E0ACE90CEA45685D0E141E2D7BE9EC162C3C586140029", "denomUnits": [ { "aliases": [ - "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", ], - "denom": "ibc/F4E6704E62885A175F390D91448A22A905587A39C50809F4522A0C1392567018", + "denom": "ibc/4D448462FAE17CA0138E0ACE90CEA45685D0E141E2D7BE9EC162C3C586140029", "exponent": 0, }, { - "denom": "doki", - "exponent": 6, + "denom": "gpaxg", + "exponent": 18, }, ], - "description": "DOKI the last Dragon", - "display": "doki", + "description": "Gravity Bridge Paxos Gold", + "display": "gpaxg", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg", + "theme": { + "primaryColorHex": "#ddc81a", + }, + }, { "imageSync": { - "baseDenom": "udoki", - "chainName": "odin", + "baseDenom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "chainName": "gravitybridge", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.svg", "theme": { - "primaryColorHex": "#2e2d2a", + "primaryColorHex": "#ebe60e", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg", }, - "name": "DOKI", - "symbol": "DOKI", + "name": "Paxos Gold (Gravity Bridge)", + "symbol": "PAXG.grv", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "base_denom": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59344,153 +62090,154 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/9B29820FEC9C47B3EA02B44F6E8EF0F31D212B4272B6A2C78E015E0819F5899E", - "coingeckoId": "sail-dao", + "base": "ibc/3E768B30583F3669B699842E66DCDEF0981E87428BDFA37A260A6A0403AF643A", "denomUnits": [ { "aliases": [ - "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", ], - "denom": "ibc/9B29820FEC9C47B3EA02B44F6E8EF0F31D212B4272B6A2C78E015E0819F5899E", + "denom": "ibc/3E768B30583F3669B699842E66DCDEF0981E87428BDFA37A260A6A0403AF643A", "exponent": 0, }, { - "denom": "sail", + "denom": "rstk", "exponent": 6, }, ], - "description": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains.", - "display": "sail", - "extendedDescription": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains. Seeded by both the Osmosis Community Pool and the Migaloo Foundation, Sail DAO is open to hear offers from cosmos based projects that hope to seed liquidity for their token on the Osmosis blockchain. Along with the creation of this DAO the White Whale DEX is deployed on Osmosis, being the first DEX apart from Osmosis to deploy on the chain, it is a great step towards Osmosis becoming an ecosystem from an appchain. Migaloo incubated projects are encouraged to participate in OTC deals with Sail DAO in order to seed or enhance liquidity on WW's Osmosis DEX. However, offers are not limited to Migaloo projects and liquidity is not limited to being deployed on WW DEX. The treasury of this DAO can be deployed however it wishes at the discretion of the Sail DAO voters. The Osmosis CP has been given veto authorization over any props introduced in this DAO and has also been given clawback rights if this venture ever gets off track.", + "description": "Restake DAO Token", + "display": "rstk", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "imageSync": { + "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", "theme": { - "primaryColorHex": "#1e264f", + "primaryColorHex": "#3ccc64", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", - }, - "name": "Sail", - "socials": { - "twitter": "https://twitter.com/Sail_DAO_", - "website": "https://daodao.zone/dao/osmo106tvcj58rvdn9k36m9m3xcmcwk2c3fgft3ldcst9lgy05gcmjanqexru3h/home", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", }, - "symbol": "SAIL", + "name": "RESTAKE", + "symbol": "RSTK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "base_denom": "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC", + "address": "osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss", + "base": "ibc/47142E586837999080B19BB00412D4F055A1752816421739215728DD165FB09A", "denomUnits": [ { "aliases": [ - "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", ], - "denom": "ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC", + "denom": "ibc/47142E586837999080B19BB00412D4F055A1752816421739215728DD165FB09A", "exponent": 0, }, { - "denom": "SHARK", + "denom": "BERNESE", "exponent": 6, }, ], - "description": "SHARK is the apex price prediction market within Cosmos.", - "display": "SHARK", + "description": "Bernese Mountain Dog. Thematic dog token to have fun and be friends with all other dog tokens. Fixed supply 132M", + "display": "BERNESE", "images": [ { - "imageSync": { - "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", - "chainName": "migaloo", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png", "theme": { - "primaryColorHex": "#062d54", + "primaryColorHex": "#e7754f", }, }, ], + "keywords": [ + "memecoin", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png", }, - "name": "SHARK", - "symbol": "SHARK", + "name": "BERNESE", + "socials": { + "twitter": "https://twitter.com/bernesechain", + "website": "https://bernesechain.github.io", + }, + "symbol": "BERNESE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "base_denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/1F3BF5898BE9E174769792795A7D676C71A45DA0774EBA51CC006ECAE9C9A106", + "base": "ibc/0D3D77BFC7A19B226DC900A2B549C7F40FA895DAEA236E7EBFEED567F763088A", "denomUnits": [ { "aliases": [ - "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", ], - "denom": "ibc/1F3BF5898BE9E174769792795A7D676C71A45DA0774EBA51CC006ECAE9C9A106", + "denom": "ibc/0D3D77BFC7A19B226DC900A2B549C7F40FA895DAEA236E7EBFEED567F763088A", "exponent": 0, }, { - "denom": "xrp", - "exponent": 6, + "denom": "eth", + "exponent": 18, }, ], - "description": "XRP bridged from XRPL", - "display": "xrp", + "description": "The native token of Ethereum, bridged via IBC.", + "display": "eth", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", - "theme": { - "primaryColorHex": "#040404", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg", }, { "imageSync": { - "baseDenom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", - "chainName": "coreum", + "baseDenom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#303030", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/xrp.core.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg", }, - "name": "Ripple (Coreum)", - "symbol": "XRP.core", + "name": "Ethereum (Picasso)", + "symbol": "ETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "base_denom": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59500,49 +62247,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/D51DB75B88ACAB17C381991FCBAD22DBAC1D6CF3D3B5185890257427062030F9", + "base": "ibc/92C1BA1D0B8F8E6001197C341B772CCC14AFBB9F109D85B19EE3AE834BCB6610", "denomUnits": [ { "aliases": [ - "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", + "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", ], - "denom": "ibc/D51DB75B88ACAB17C381991FCBAD22DBAC1D6CF3D3B5185890257427062030F9", + "denom": "ibc/92C1BA1D0B8F8E6001197C341B772CCC14AFBB9F109D85B19EE3AE834BCB6610", "exponent": 0, }, { - "denom": "SEIYAN", - "exponent": 6, + "denom": "dai", + "exponent": 18, }, ], - "description": "The Original Meme Coin of SEI Network", - "display": "SEIYAN", + "description": "A stablecoin issued by Maker Protocol.", + "display": "dai", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg", + }, { "imageSync": { - "baseDenom": "cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed", - "chainName": "sei", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png", - "theme": { - "primaryColorHex": "#db1f22", + "baseDenom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "chainName": "composable", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg", }, - "name": "SEIYAN", - "symbol": "SEIYAN", + "name": "Dai Stablecoin (Picasso)", + "symbol": "DAI.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05", + "base_denom": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59552,48 +62296,50 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/B8790B217F737942132E29C734DD7E484B7A3BAE10E8D6E84EBF94936B481903", + "base": "ibc/D30BECDE54EE4B168026809BB1B66349ABD1B3C1B4F968BCC34B1470F94C8E95", "denomUnits": [ { "aliases": [ - "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", ], - "denom": "ibc/B8790B217F737942132E29C734DD7E484B7A3BAE10E8D6E84EBF94936B481903", + "denom": "ibc/D30BECDE54EE4B168026809BB1B66349ABD1B3C1B4F968BCC34B1470F94C8E95", "exponent": 0, }, { - "denom": "nibi", - "exponent": 6, + "denom": "fxs", + "exponent": 18, }, ], - "description": "The native token of Nibiru network", - "display": "nibi", + "description": "The governance token of the Frax ecosystem.", + "display": "fxs", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg", + }, { "imageSync": { - "baseDenom": "unibi", - "chainName": "nibiru", + "baseDenom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "chainName": "composable", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg", "theme": { - "primaryColorHex": "#14c0ce", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "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", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg", }, - "name": "Nibiru", - "symbol": "NIBI", + "name": "Frax Share (Picasso)", + "symbol": "FXS.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "base_denom": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59603,46 +62349,46 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/2ACBCCCC19CB96954549AF80ADDEF925FC8D947D45964C2CD59DF84ACC0D1378", + "base": "ibc/36F2AB76D77920810D4B9BC3CA30BBAE830F6A4EC36023EFEAA75986BCE831DC", "denomUnits": [ { "aliases": [ - "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", + "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", ], - "denom": "ibc/2ACBCCCC19CB96954549AF80ADDEF925FC8D947D45964C2CD59DF84ACC0D1378", + "denom": "ibc/36F2AB76D77920810D4B9BC3CA30BBAE830F6A4EC36023EFEAA75986BCE831DC", "exponent": 0, }, { - "denom": "beast", - "exponent": 6, + "denom": "frax", + "exponent": 18, }, ], - "description": "BEAST-ERC20 on injective", - "display": "beast", + "description": "The first fractional-algorithmic stablecoin by Frax Finance.", + "display": "frax", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg", + }, { "imageSync": { - "baseDenom": "0xA4426666addBE8c4985377d36683D17FB40c31Be", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", - "theme": { - "primaryColorHex": "#21172b", + "baseDenom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "chainName": "composable", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg", }, - "name": "Gelotto BEAST", - "symbol": "BEAST", + "name": "Frax (Picasso)", + "symbol": "FRAX.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", + "base_denom": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59652,51 +62398,57 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "base": "ibc/DAFC338F192C45AE9F63546E5EE75D4B45AE54F5F57D0CD1C89AEC34BF52F98A", + "base": "ibc/488CA452E5878963B55324297DEF181C594B3BC160EDACD2F8398C98E79F7BB2", "denomUnits": [ { "aliases": [ - "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", + "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", ], - "denom": "ibc/DAFC338F192C45AE9F63546E5EE75D4B45AE54F5F57D0CD1C89AEC34BF52F98A", + "denom": "ibc/488CA452E5878963B55324297DEF181C594B3BC160EDACD2F8398C98E79F7BB2", "exponent": 0, }, { - "denom": "cvnt", - "exponent": 18, + "denom": "usdt", + "exponent": 6, }, ], - "description": "Cvn is a Layer-1 blockchain built to deliver on the promise of DeFi", - "display": "cvnt", + "description": "A stablecoin issued by Tether that is pegged 1:1 to the USD.", + "display": "usdt", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", + "theme": { + "primaryColorHex": "#049494", + }, + }, { "imageSync": { - "baseDenom": "acvnt", - "chainName": "conscious", + "baseDenom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#047e04", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/conscious/images/cvn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", }, - "name": "ConsciousDAO", - "symbol": "CVN", + "name": "Tether USD (Ethereum via Picasso)", + "symbol": "USDT.eth.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A", + "base_denom": "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59706,99 +62458,103 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "address": "osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z", - "base": "ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB", + "base": "ibc/98A4ECEB565354AEAE03CA6B56D6F81D78AB9A5A9F34874062E5A018918FF020", "denomUnits": [ { "aliases": [ - "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", ], - "denom": "ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB", + "denom": "ibc/98A4ECEB565354AEAE03CA6B56D6F81D78AB9A5A9F34874062E5A018918FF020", "exponent": 0, }, { - "denom": "toro", - "exponent": 6, + "denom": "sfrax", + "exponent": 18, }, ], - "description": "The memecoin built for the Celestia community", - "display": "toro", + "description": "An ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins. ", + "display": "sfrax", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg", + }, + { + "imageSync": { + "baseDenom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", + "chainName": "composable", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg", "theme": { - "primaryColorHex": "#c39ccc", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg", }, - "name": "TORO", - "symbol": "TORO", + "name": "Staked FRAX (Picasso)", + "symbol": "sFRAX.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "base_denom": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/5F1C80ED319775C81910BCC7AC8B712E447CBD8C5DAE7BCFD263D3EE54128196", + "base": "ibc/011122FD754E2A09331DE55F118FCE117B3370468860CC7B0422BD9A2524BAD7", "denomUnits": [ { "aliases": [ - "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", ], - "denom": "ibc/5F1C80ED319775C81910BCC7AC8B712E447CBD8C5DAE7BCFD263D3EE54128196", + "denom": "ibc/011122FD754E2A09331DE55F118FCE117B3370468860CC7B0422BD9A2524BAD7", "exponent": 0, }, { - "denom": "sayve", - "exponent": 6, + "denom": "frxeth", + "exponent": 18, }, ], - "description": "Sayve is a revolutionary language learning app in the Web3 era that combines gamification, blockchain technology, and a Metaverse experience to motivate users to learn languages while earning rewards.", - "display": "sayve", + "description": "A liquid ETH staking derivative designed to leverage the Frax ecosystem.", + "display": "frxeth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg", + }, { "imageSync": { - "baseDenom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "chainName": "terra2", + "baseDenom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg", "theme": { - "primaryColorHex": "#f3ebdb", + "primaryColorHex": "#040404", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg", }, - "name": "sayve", - "symbol": "SAYVE", + "name": "Frax Ether (Picasso)", + "symbol": "frxETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "base_denom": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59808,162 +62564,144 @@ Overall, Levana's perpetual swaps protocol offers a reliable and secure platform "typeAsset": "ics20", }, { - "address": "osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n", - "base": "ibc/214998822A78253F5B3C4C1BCC0501805C3D6B49DD9A0AC37C54F064516DC1F1", - "coingeckoId": "mad-scientists", + "base": "ibc/A6BC84E6092CD5A76006538FEF099DF88AFFEB282B8B3E838E1EA60E866A7D81", "denomUnits": [ { "aliases": [ - "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", ], - "denom": "ibc/214998822A78253F5B3C4C1BCC0501805C3D6B49DD9A0AC37C54F064516DC1F1", + "denom": "ibc/A6BC84E6092CD5A76006538FEF099DF88AFFEB282B8B3E838E1EA60E866A7D81", "exponent": 0, }, { - "denom": "LAB", - "exponent": 6, + "denom": "sfrxeth", + "exponent": 18, }, ], - "description": "LAB - Everything is an Experiment", - "display": "LAB", - "extendedDescription": "LAB - Everything is an Experiment - -Use 10 $LAB tokens to mint 1 Mad Scientist NFT on Backbone Labs Osmosis Launchpad. You will then be able to trade your NFTs on the marketplace. You can also choose to hold onto your $LAB tokens as unrevealed NFTs and trade it. - - Fair Launch: The event was marked by the absence of whitelists (WLs), no bots and no lock, ensuring an equitable opportunity for all interested parties. - -Preparation for the Launch: Participants were given a 52.91-hour window to deposit $OSMO into a pool on Streamswap. - -The Swap Process: After the initial deposit period, $OSMO was converted into $LAB tokens over an additional hour, allowing for a smooth transition and fair distribution.", + "description": "A Liquid Staking Derivative designed to accrue the staking yield of the Frax ETH validators.", + "display": "sfrxeth", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", - "theme": { - "primaryColorHex": "#bcdd76", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg", + }, + { + "imageSync": { + "baseDenom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", + "chainName": "composable", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg", }, - "name": "LAB", - "symbol": "LAB", + "name": "Staked Frax Ether (Picasso)", + "symbol": "sfrxETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "base_denom": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv", - "base": "ibc/C6D87341B033BB107B61DA018D9B9C2FF3CD2A0560030BD2F0FB0493B75B4338", + "base": "ibc/70056C0C9BC6A7568AD81146164239475C9E8E66BCD4F785C39F7713F733F3DE", "denomUnits": [ { "aliases": [ - "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", ], - "denom": "ibc/C6D87341B033BB107B61DA018D9B9C2FF3CD2A0560030BD2F0FB0493B75B4338", + "denom": "ibc/70056C0C9BC6A7568AD81146164239475C9E8E66BCD4F785C39F7713F733F3DE", "exponent": 0, }, { - "denom": "bOSMO", + "denom": "clay", "exponent": 6, }, ], - "description": "BackBone Labs Liquid Staked OSMO", - "display": "bOSMO", - "extendedDescription": "bOSMO - solving capital inefficiencies in the NFT market space", + "description": "Adam Clay a BitSong Music FanToken", + "display": "clay", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", + "imageSync": { + "baseDenom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "chainName": "bitsong", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", "theme": { - "primaryColorHex": "#c68db5", + "primaryColorHex": "#e8e5e7", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", - }, - "name": "BackBone Labs Liquid Staked OSMO", - "socials": { - "twitter": "https://twitter.com/BackBone_Labs", - "website": "https://app.backbonelabs.io/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", }, - "symbol": "bOSMO", + "name": "Adam Clay FanToken", + "symbol": "CLAY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "base_denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "base": "ibc/C6F9EDD2E791059CC6D287C89B2E1B1B598D589C84ADC7C8AD0BE234A91CA37E", "denomUnits": [ { "aliases": [ - "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", + "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", ], - "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "denom": "ibc/C6F9EDD2E791059CC6D287C89B2E1B1B598D589C84ADC7C8AD0BE234A91CA37E", "exponent": 0, }, { - "aliases": [], - "denom": "PUNDIX", - "exponent": 18, + "denom": "404dr", + "exponent": 6, }, ], - "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", - "display": "PUNDIX", + "description": "404Deep Records a BitSong Music FanToken", + "display": "404dr", "images": [ { "imageSync": { - "baseDenom": "0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg", - "theme": { - "primaryColorHex": "#f1d20c", + "baseDenom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "chainName": "bitsong", }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", "theme": { - "primaryColorHex": "#f1d20c", + "primaryColorHex": "#cfb1b3", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/pundi-x-token-logo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", }, - "name": "Pundi X Token", - "symbol": "PUNDIX", + "name": "404Deep Records Fantoken", + "symbol": "404DR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE", + "base_denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -59973,92 +62711,119 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/96B1E91F4B6656F05B49DEE62322C8484EC5C4E7DC145A1E6767AF9E7FACB56A", + "address": "osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p", + "base": "ibc/639C79B4130612FDC85F9365E0C29111505433B1668011D71E5783F66B0E26B8", "denomUnits": [ { "aliases": [ - "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", ], - "denom": "ibc/96B1E91F4B6656F05B49DEE62322C8484EC5C4E7DC145A1E6767AF9E7FACB56A", + "denom": "ibc/639C79B4130612FDC85F9365E0C29111505433B1668011D71E5783F66B0E26B8", "exponent": 0, }, { - "denom": "tnkr", - "exponent": 12, + "denom": "wLIBRA", + "exponent": 6, }, ], - "description": "The native fee, governance and staking token of the Tinkernet Parachain.", - "display": "tnkr", + "description": "wLibra is a bridged version of Libra Coin from 0L Network via LibraBridge.", + "display": "wLIBRA", + "extendedDescription": "Libra Coin is a fork from Facebook's Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining. + + Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary. + + Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.", "images": [ { "imageSync": { - "baseDenom": "Planck", - "chainName": "tinkernet", + "baseDenom": "microlibra", + "chainName": "0l", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", + "theme": { + "primaryColorHex": "#e45c5c", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tinkernet/images/tnkr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", }, - "name": "Tinkernet", - "symbol": "TNKR", + "name": "Wrapped Libra Coin (LibraBridge)", + "socials": { + "twitter": "https://twitter.com/0LNetwork", + "website": "https://0l.network/", + }, + "symbol": "wLIBRA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "base_denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F2C3FEF6F21E77DDD839B59D07806591BC557CF80BDA99865898E6474BA6445B", + "base": "ibc/7963F2EB3E6FA375EF9DC2709BC5320E7FACC1A927A454096C7B10CBBA6E3350", "denomUnits": [ { "aliases": [ - "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", ], - "denom": "ibc/F2C3FEF6F21E77DDD839B59D07806591BC557CF80BDA99865898E6474BA6445B", + "denom": "ibc/7963F2EB3E6FA375EF9DC2709BC5320E7FACC1A927A454096C7B10CBBA6E3350", "exponent": 0, }, { - "denom": "w", - "exponent": 6, + "denom": "nim", + "exponent": 18, }, ], - "description": "W is the native token powering the Wormhole interoperability platform.", - "display": "w", + "description": "The native token of Nim Network.", + "display": "nim", + "extendedDescription": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", "images": [ { "imageSync": { - "baseDenom": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", - "chainName": "solana", + "baseDenom": "anim", + "chainName": "nim", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#519cea", }, }, ], + "keywords": [ + "gaming", + "AI", + "osmosis_unstable", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg", }, - "name": "Wormhole Token", - "symbol": "W", + "name": "Nim Network", + "socials": { + "twitter": "https://twitter.com/nim_network", + "website": "https://ai.nim.network/", + }, + "symbol": "NIM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "base_denom": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60068,48 +62833,48 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "base": "ibc/6F59FC012DABF4B3B1DA8E68D1851DFC02999E0AFB27FE69FA249633C91D6D58", "denomUnits": [ { "aliases": [ - "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", + "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", ], - "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "denom": "ibc/6F59FC012DABF4B3B1DA8E68D1851DFC02999E0AFB27FE69FA249633C91D6D58", "exponent": 0, }, { - "denom": "dhp", - "exponent": 6, + "denom": "seda", + "exponent": 18, }, ], - "description": "The native token of dHealth", - "display": "dhp", + "description": "The native token of SEDA Chain.", + "display": "seda", "images": [ { "imageSync": { - "baseDenom": "udhp", - "chainName": "dhealth", + "baseDenom": "aseda", + "chainName": "seda", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg", "theme": { - "primaryColorHex": "#140c7c", + "primaryColorHex": "#8178d1", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg", }, - "name": "dHealth", - "symbol": "DHP", + "name": "SEDA", + "symbol": "SEDA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", + "base_denom": "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60119,112 +62884,93 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/3BAE2ED3401C8F688ECB2D2A8BB498FEFD9C3953F67DBCB364EE0742F4351DA2", "denomUnits": [ { "aliases": [ - "ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", ], - "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "denom": "ibc/3BAE2ED3401C8F688ECB2D2A8BB498FEFD9C3953F67DBCB364EE0742F4351DA2", "exponent": 0, }, { - "denom": "fury", + "denom": "CAC", "exponent": 6, }, ], - "description": "The native token of Furya", - "display": "fury", + "description": "Cosmos Airdrop Chat", + "display": "CAC", + "extendedDescription": "Official Token of the Cosmos Airdrop community", "images": [ { - "imageSync": { - "baseDenom": "ufury", - "chainName": "furya", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#160542", }, }, ], - "keywords": [ - "gaming", - "staking", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png", }, - "name": "furya", - "symbol": "FURY", + "name": "Cosmos Airdrop Chat", + "symbol": "CAC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BB4E0D2AF916E6D40D0FCBC0743448880A4146C8364E7C3D800F27E2E01A606A", + "base": "ibc/4B18B816CFE158580291C0A23280E343831329A9CCD1087B2EC0198B518FF967", "denomUnits": [ { "aliases": [ - "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", ], - "denom": "ibc/BB4E0D2AF916E6D40D0FCBC0743448880A4146C8364E7C3D800F27E2E01A606A", + "denom": "ibc/4B18B816CFE158580291C0A23280E343831329A9CCD1087B2EC0198B518FF967", "exponent": 0, }, { - "denom": "saga", + "denom": "WEIRD", "exponent": 6, }, ], - "description": "The native staking and governance token of Saga.", - "display": "saga", + "description": "WEIRD token for WEIRD friends collection", + "display": "WEIRD", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", - "theme": { - "darkMode": true, - "primaryColorHex": "#FFFFFF", - }, - }, { "imageSync": { - "baseDenom": "usaga", - "chainName": "saga", + "baseDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", + "chainName": "neutron", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", "theme": { - "darkMode": false, - "primaryColorHex": "#000000", + "primaryColorHex": "#ebf0f4", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", }, - "name": "Saga", - "symbol": "SAGA", + "name": "WEIRD", + "symbol": "WEIRD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "base_denom": "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60234,154 +62980,134 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/7A86896AFC89C06AB5286BB4A6DB070475956CF2B58F1C13114F20B1B2718B78", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/FDE12500FBE28193781910E3DADB360A781344C9041C5F3506B7F50F532E2CF9", "denomUnits": [ { "aliases": [ - "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", ], - "denom": "ibc/7A86896AFC89C06AB5286BB4A6DB070475956CF2B58F1C13114F20B1B2718B78", + "denom": "ibc/FDE12500FBE28193781910E3DADB360A781344C9041C5F3506B7F50F532E2CF9", "exponent": 0, }, { - "denom": "ATOM1KLFG", + "denom": "PBB", "exponent": 6, }, ], - "description": "$ATOM to $1,000 LFG!!", - "display": "ATOM1KLFG", + "description": "Uhm, Power Bottom", + "display": "PBB", "images": [ { - "imageSync": { - "baseDenom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "chainName": "neutron", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#f21313", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png", }, - "name": "ATOM1KLFG", - "symbol": "ATOM1KLFG", + "name": "Power Bottom", + "symbol": "PBB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/D111ED3ECB253CB464D8D9FFA07DD5CF3E1F244D4D37CF757ADEC82191D34229", "denomUnits": [ { "aliases": [ - "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", ], - "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "denom": "ibc/D111ED3ECB253CB464D8D9FFA07DD5CF3E1F244D4D37CF757ADEC82191D34229", "exponent": 0, }, { - "denom": "SHIDO", - "exponent": 18, + "denom": "bwh", + "exponent": 6, }, ], - "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", - "display": "SHIDO", + "description": "Beer Is Good for You!", + "display": "bwh", "images": [ { - "imageSync": { - "baseDenom": "shido", - "chainName": "shido", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BWH.png", "theme": { - "primaryColorHex": "#046ffc", + "primaryColorHex": "#775038", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BWH.png", }, - "name": "Shido", - "symbol": "SHIDO", + "name": "BeerWifHat", + "symbol": "BWH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/1D4760757E4EDC388BB3CF12DD13235EC8030D3E122DC304DE5622492D86DA02", + "base": "ibc/05DAA44ABFDF60B851BE49D3AF89B853DD1A1FC47FF9579111877803F6D37E76", "denomUnits": [ { "aliases": [ - "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", ], - "denom": "ibc/1D4760757E4EDC388BB3CF12DD13235EC8030D3E122DC304DE5622492D86DA02", + "denom": "ibc/05DAA44ABFDF60B851BE49D3AF89B853DD1A1FC47FF9579111877803F6D37E76", "exponent": 0, }, - { - "denom": "cif", - "exponent": 6, - }, ], - "description": "Decentralized Machine Learning", - "display": "cif", + "description": "Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.", + "display": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", "images": [ { "imageSync": { - "baseDenom": "ucif", - "chainName": "cifer", + "baseDenom": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "chainName": "juno", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png", "theme": { - "primaryColorHex": "#af49b7", + "primaryColorHex": "#f3cb0c", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png", }, - "name": "Cifer", - "symbol": "CIF", + "name": "Airdrop For All", + "symbol": "AFA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "base_denom": "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60391,153 +63117,158 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/9A02E6918754F50AC3150E975DCD15D8A980747E99A666C0F70C809A3BCA1A2D", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/FCCEF9E760831CB2C2BE9F6D97CD73F01EB9DB7F64311F372066CF2A0760EF51", "denomUnits": [ { "aliases": [ - "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", ], - "denom": "ibc/9A02E6918754F50AC3150E975DCD15D8A980747E99A666C0F70C809A3BCA1A2D", + "denom": "ibc/FCCEF9E760831CB2C2BE9F6D97CD73F01EB9DB7F64311F372066CF2A0760EF51", "exponent": 0, }, { - "denom": "hava", + "denom": "SHITMOS", "exponent": 6, }, ], - "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", - "display": "hava", + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", "images": [ { - "imageSync": { - "baseDenom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", - "chainName": "injective", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "primaryColorHex": "#eacea5", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "memecoin", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, - "name": "Hava Coin", - "symbol": "HAVA", + "name": "Shitmos", + "socials": { + "twitter": "https://twitter.com/shitoncosmos", + "website": "https://shitmos.wtf", + }, + "symbol": "SHITMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F76B13D759708EF9BBECB3DFAB7C6652F4F5164D09A4DB3E5A5BD22412EDBDE2", + "base": "ibc/9E406B37D487211B375E35AC42D0E7C1D86CEF180943A379D8A0858407508546", "denomUnits": [ { "aliases": [ - "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", + "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", ], - "denom": "ibc/F76B13D759708EF9BBECB3DFAB7C6652F4F5164D09A4DB3E5A5BD22412EDBDE2", + "denom": "ibc/9E406B37D487211B375E35AC42D0E7C1D86CEF180943A379D8A0858407508546", "exponent": 0, }, { - "denom": "IBC", + "aliases": [], + "denom": "qjuno", "exponent": 6, }, ], - "description": "OnE mEmEcOiN tO cOnNeCt oL ImBeCiles - aNd in Da Cosmos BiNd DeM", - "display": "IBC", + "description": "Quicksilver Liquid Staked JUNO", + "display": "qjuno", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png", + "imageSync": { + "baseDenom": "uqjuno", + "chainName": "quicksilver", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#fc944c", }, }, ], - "keywords": [ - "memecoin", - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png", - }, - "name": "IBC", - "socials": { - "twitter": "https://twitter.com/IBCmemecoin", - "website": "https://www.ibcmeme.wtf", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg", }, - "symbol": "IBC", + "name": "Quicksilver Liquid Staked JUNO", + "symbol": "qJUNO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", + "base_denom": "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/8DCD88C72325CC1D9740517AD109BCC7D243709A4269C071F07B19A88050ACF3", + "base": "ibc/D1350CDB3202294C9B0F387C89B996CEA47E7CF6DCF605C82147F38A5DE026D5", "denomUnits": [ { "aliases": [ - "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", + "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", ], - "denom": "ibc/8DCD88C72325CC1D9740517AD109BCC7D243709A4269C071F07B19A88050ACF3", + "denom": "ibc/D1350CDB3202294C9B0F387C89B996CEA47E7CF6DCF605C82147F38A5DE026D5", "exponent": 0, }, { - "denom": "crowdp", - "exponent": 18, + "aliases": [], + "denom": "qsaga", + "exponent": 6, }, ], - "description": "The token of Crowdpunk DAO", - "display": "crowdp", + "description": "Quicksilver Liquid Staked SAGA", + "display": "qsaga", "images": [ { "imageSync": { - "baseDenom": "erc20/0xfbf4318d24a93753f11d365a6dcf8b830e98ab0f", - "chainName": "evmos", + "baseDenom": "uqsaga", + "chainName": "quicksilver", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg", "theme": { - "primaryColorHex": "#04fbfb", + "primaryColorHex": "#f9924b", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/crowdp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg", }, - "name": "Crowdpunk DAO", - "symbol": "CROWDP", + "name": "Quicksilver Liquid Staked SAGA", + "symbol": "qSAGA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B87F0F5255CC658408F167C2F7B987A8D914622E1F73BCC267406360588F2B1E", + "base_denom": "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60547,48 +63278,49 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/5672B0C0F8B81D05DEFC7781A6A3C46CA70D65E5BB4282E331149B4722F6B080", + "base": "ibc/6E3A8A3C6848C411A2B53079374CD217B9A510353EAC2DCD9EC62FABC4BC675D", "denomUnits": [ { "aliases": [ - "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", ], - "denom": "ibc/5672B0C0F8B81D05DEFC7781A6A3C46CA70D65E5BB4282E331149B4722F6B080", + "denom": "ibc/6E3A8A3C6848C411A2B53079374CD217B9A510353EAC2DCD9EC62FABC4BC675D", "exponent": 0, }, { - "denom": "astro", - "exponent": 6, + "aliases": [], + "denom": "qdydx", + "exponent": 18, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "astro", + "description": "Quicksilver Liquid Staked DYDX", + "display": "qdydx", "images": [ { "imageSync": { - "baseDenom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "chainName": "neutron", + "baseDenom": "aqdydx", + "chainName": "quicksilver", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg", "theme": { - "primaryColorHex": "#4056e9", + "primaryColorHex": "#fc944c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg", }, - "name": "Astroport token", - "symbol": "ASTRO", + "name": "Quicksilver Liquid Staked DYDX", + "symbol": "qDYDX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "base_denom": "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60598,46 +63330,49 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/87DEAC4978821878D74272DC7665F31A5549DDFBCB8366DD3B4959492BCE6ED4", + "base": "ibc/655BF474A1DABC1A2D98783210E35B6EA345275A96DF7789FE4ED2002B6746AF", "denomUnits": [ { "aliases": [ - "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", + "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", ], - "denom": "ibc/87DEAC4978821878D74272DC7665F31A5549DDFBCB8366DD3B4959492BCE6ED4", + "denom": "ibc/655BF474A1DABC1A2D98783210E35B6EA345275A96DF7789FE4ED2002B6746AF", "exponent": 0, }, { - "denom": "xASTRO", + "aliases": [], + "denom": "qbld", "exponent": 6, }, ], - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", - "display": "xASTRO", + "description": "Quicksilver Liquid Staked BLD", + "display": "qbld", "images": [ { "imageSync": { - "baseDenom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", - "chainName": "neutron", + "baseDenom": "uqbld", + "chainName": "quicksilver", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg", + "theme": { + "primaryColorHex": "#fc944c", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg", }, - "name": "Staked Astroport Token", - "symbol": "xASTRO", + "name": "Quicksilver Liquid Staked BLD", + "symbol": "qBLD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", + "base_denom": "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60647,55 +63382,53 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/4D448462FAE17CA0138E0ACE90CEA45685D0E141E2D7BE9EC162C3C586140029", + "base": "ibc/CC94C70E3CE31ABF5931A819AD5554E81993924EC760CE399C7F9849D7290FE6", "denomUnits": [ { "aliases": [ - "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", ], - "denom": "ibc/4D448462FAE17CA0138E0ACE90CEA45685D0E141E2D7BE9EC162C3C586140029", + "denom": "ibc/CC94C70E3CE31ABF5931A819AD5554E81993924EC760CE399C7F9849D7290FE6", "exponent": 0, }, { - "denom": "gpaxg", + "denom": "pepe", "exponent": 18, }, ], - "description": "Gravity Bridge Paxos Gold", - "display": "gpaxg", + "description": "PEPE is a deflationary memecoin launched on Ethereum. ", + "display": "pepe", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg", - "theme": { - "primaryColorHex": "#ddc81a", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png", }, { "imageSync": { - "baseDenom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "chainName": "gravitybridge", + "baseDenom": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.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", "theme": { - "primaryColorHex": "#ebe60e", + "primaryColorHex": "#cc3233", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/paxg.grv.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png", }, - "name": "Paxos Gold (Gravity Bridge)", - "symbol": "PAXG.grv", + "name": "Pepe (Picasso)", + "symbol": "PEPE.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "base_denom": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60705,48 +63438,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/3E768B30583F3669B699842E66DCDEF0981E87428BDFA37A260A6A0403AF643A", + "base": "ibc/74D2B0480F1AB74317EB9B2E0D50D52C32535C298132D371153E21D0AA94AA12", "denomUnits": [ { "aliases": [ - "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", + "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", ], - "denom": "ibc/3E768B30583F3669B699842E66DCDEF0981E87428BDFA37A260A6A0403AF643A", + "denom": "ibc/74D2B0480F1AB74317EB9B2E0D50D52C32535C298132D371153E21D0AA94AA12", "exponent": 0, }, { - "denom": "rstk", - "exponent": 6, + "denom": "crv", + "exponent": 18, }, ], - "description": "Restake DAO Token", - "display": "rstk", + "description": "CRV is the governance token for Curve Finance.", + "display": "crv", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png", + }, { "imageSync": { - "baseDenom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", - "chainName": "migaloo", + "baseDenom": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png", "theme": { - "primaryColorHex": "#3ccc64", + "primaryColorHex": "#1fcbdb", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png", }, - "name": "RESTAKE", - "symbol": "RSTK", + "name": "Curve DAO (Picasso)", + "symbol": "CRV.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB", + "base_denom": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60756,103 +63493,107 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss", - "base": "ibc/47142E586837999080B19BB00412D4F055A1752816421739215728DD165FB09A", + "base": "ibc/0FBB9D0BFE91B58E39C5946C6808B1D2E5775EC7E7EEC73008E664F05DBB02EB", "denomUnits": [ { "aliases": [ - "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", ], - "denom": "ibc/47142E586837999080B19BB00412D4F055A1752816421739215728DD165FB09A", + "denom": "ibc/0FBB9D0BFE91B58E39C5946C6808B1D2E5775EC7E7EEC73008E664F05DBB02EB", "exponent": 0, }, { - "denom": "BERNESE", - "exponent": 6, + "denom": "ezeth", + "exponent": 18, }, ], - "description": "Bernese Mountain Dog. Thematic dog token to have fun and be friends with all other dog tokens. Fixed supply 132M", - "display": "BERNESE", + "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", + "display": "ezeth", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png", + }, + { + "imageSync": { + "baseDenom": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041", + "chainName": "composable", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png", "theme": { - "primaryColorHex": "#e7754f", + "primaryColorHex": "#9bcf2c", }, }, ], "keywords": [ - "memecoin", + "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bernese.png", - }, - "name": "BERNESE", - "socials": { - "twitter": "https://twitter.com/bernesechain", - "website": "https://bernesechain.github.io", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png", }, - "symbol": "BERNESE", + "name": "Renzo Restaked ETH (Picasso)", + "symbol": "ezETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "base_denom": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/D14C071479FF252ED4841B818E6DF35CD38CB5531058F64F946DFA8FB6292005", + "base": "ibc/CBC84CDD2BA2E6F518BDF73AF691C668D0D35737A9F92C371AE6257D7BEDE8BF", "denomUnits": [ { "aliases": [ - "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", + "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", ], - "denom": "ibc/D14C071479FF252ED4841B818E6DF35CD38CB5531058F64F946DFA8FB6292005", + "denom": "ibc/CBC84CDD2BA2E6F518BDF73AF691C668D0D35737A9F92C371AE6257D7BEDE8BF", "exponent": 0, }, { - "denom": "eth", + "denom": "usde", "exponent": 18, }, ], - "description": "The native token of Ethereum, bridged via IBC.", - "display": "eth", + "description": "Ethena USDe is a synthetic dollar protocol built on Ethereum.", + "display": "usde", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png", }, { "imageSync": { - "baseDenom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", + "baseDenom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", "chainName": "composable", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png", "theme": { - "primaryColorHex": "#303030", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png", }, - "name": "Ethereum (Picasso)", - "symbol": "ETH.pica", + "name": "Ethena USDe (Picasso)", + "symbol": "USDe.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", + "base_denom": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60862,46 +63603,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/3F5F2447D4A636888E4A7CCF457D1BB6D6F7A77AAF4AAE473FF156841B34BDB4", + "base": "ibc/F2BFBC627763BBE9FF4F40DEA684FA62DA39D420D997B815474B4B6DEFC40E06", "denomUnits": [ { "aliases": [ - "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", + "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", ], - "denom": "ibc/3F5F2447D4A636888E4A7CCF457D1BB6D6F7A77AAF4AAE473FF156841B34BDB4", + "denom": "ibc/F2BFBC627763BBE9FF4F40DEA684FA62DA39D420D997B815474B4B6DEFC40E06", "exponent": 0, }, { - "denom": "dai", + "denom": "ena", "exponent": 18, }, ], - "description": "A stablecoin issued by Maker Protocol.", - "display": "dai", + "description": "The native governance token of Ethena.", + "display": "ena", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png", }, { "imageSync": { - "baseDenom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", + "baseDenom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", "chainName": "composable", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png", + "theme": { + "primaryColorHex": "#1c1c1c", + }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png", }, - "name": "Dai Stablecoin (Picasso)", - "symbol": "DAI.pica", + "name": "Ethena (Picasso)", + "symbol": "ENA.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B", + "base_denom": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60911,50 +63658,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/C3B58DCCDB758193C1E17885F84602270828D40978AC9B16EAB4BE5B916F0E2E", + "base": "ibc/89204DEA63E8C18B60E557E87896DD4FDA8336A345D13FD9956A2E4568620EAB", "denomUnits": [ { "aliases": [ - "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", + "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", ], - "denom": "ibc/C3B58DCCDB758193C1E17885F84602270828D40978AC9B16EAB4BE5B916F0E2E", + "denom": "ibc/89204DEA63E8C18B60E557E87896DD4FDA8336A345D13FD9956A2E4568620EAB", "exponent": 0, }, { - "denom": "fxs", + "denom": "eeth", "exponent": 18, }, ], - "description": "The governance token of the Frax ecosystem.", - "display": "fxs", + "description": "eETH is a natively restaked liquid staking token on Ethereum.", + "display": "eeth", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png", }, { "imageSync": { - "baseDenom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", + "baseDenom": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B", "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/fxs.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#5045b7", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fxs.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png", }, - "name": "Frax Share (Picasso)", - "symbol": "FXS.pica", + "name": "ether.fi Staked ETH (Picasso)", + "symbol": "eETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", + "base_denom": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -60964,46 +63713,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/8B9FC625FC472BBB72F4EA06399111091B35D57AD34B408486A7FF048930308C", + "base": "ibc/93C225DCDFDAB6B81EBE81880E868972760EF23F51A1FF2B7FB651C7588A5C99", "denomUnits": [ { "aliases": [ - "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", + "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", ], - "denom": "ibc/8B9FC625FC472BBB72F4EA06399111091B35D57AD34B408486A7FF048930308C", + "denom": "ibc/93C225DCDFDAB6B81EBE81880E868972760EF23F51A1FF2B7FB651C7588A5C99", "exponent": 0, }, { - "denom": "frax", + "denom": "pxeth", "exponent": 18, }, ], - "description": "The first fractional-algorithmic stablecoin by Frax Finance.", - "display": "frax", + "description": "pxETH is built on top of the Pirex platform and forms the foundation of the Dinero protocol.", + "display": "pxeth", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png", }, { "imageSync": { - "baseDenom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", + "baseDenom": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821", "chainName": "composable", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png", + "theme": { + "primaryColorHex": "#c3cbd2", + }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frax.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png", }, - "name": "Frax (Picasso)", - "symbol": "FRAX.pica", + "name": "Dinero Staked ETH (Picasso)", + "symbol": "pxETH.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9", + "base_denom": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61013,57 +63768,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/8E045843B1F8211CF56CEA43345FE12E38416540BF6BC09D1CF6C6AE5886DF15", + "base": "ibc/743784A2CE2894B957E27CD92390955870B3EDC4BA0CED372D971700AE1F5C9E", "denomUnits": [ { "aliases": [ - "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", + "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", ], - "denom": "ibc/8E045843B1F8211CF56CEA43345FE12E38416540BF6BC09D1CF6C6AE5886DF15", + "denom": "ibc/743784A2CE2894B957E27CD92390955870B3EDC4BA0CED372D971700AE1F5C9E", "exponent": 0, }, { - "denom": "usdt", - "exponent": 6, + "denom": "crvusd", + "exponent": 18, }, ], - "description": "A stablecoin issued by Tether that is pegged 1:1 to the USD.", - "display": "usdt", + "description": "A collateralized-debt-position (CDP) stablecoin by Curve DAO.", + "display": "crvusd", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", - "theme": { - "primaryColorHex": "#049494", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png", }, { "imageSync": { - "baseDenom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", + "baseDenom": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A", "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#d6e3d9", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png", }, - "name": "Tether USD (Ethereum) (Picasso)", - "symbol": "USDT.eth.pica", + "name": "crvUSD (Picasso)", + "symbol": "crvUSD.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3", + "base_denom": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61073,201 +63823,198 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/CD5B439429B9EE609B0C998AD6F95EDC8079B99C9AFDF46D002C41EED310CA31", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/042B037916E4D59E7C1FEDD40EA32DFD5DEB3046B6F465C1313D6F999355BEDC", "denomUnits": [ { "aliases": [ - "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", ], - "denom": "ibc/CD5B439429B9EE609B0C998AD6F95EDC8079B99C9AFDF46D002C41EED310CA31", + "denom": "ibc/042B037916E4D59E7C1FEDD40EA32DFD5DEB3046B6F465C1313D6F999355BEDC", "exponent": 0, }, { - "denom": "sfrax", - "exponent": 18, + "denom": "WIHA", + "exponent": 6, }, ], - "description": "An ERC4626 staking vault that distributes part of the Frax Protocol yield weekly to stakers denominated in FRAX stablecoins. ", - "display": "sfrax", + "description": "Coin to support the real world in Wilhelmshall im Huy", + "display": "WIHA", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg", - }, - { - "imageSync": { - "baseDenom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrax.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#f2f2ec", }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrax.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png", }, - "name": "Staked FRAX (Picasso)", - "symbol": "sFRAX.pica", + "name": "WiliHall", + "symbol": "WIHA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/75DA832E8BF7E668702AD686AFEAB9BAC74BB0DC35E69610F086D42F0E0B88DE", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/8B94B5DDD90F317D253175AEEE88E2E7E3E15E3867E225577D9C892ACF3660FB", "denomUnits": [ { "aliases": [ - "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", ], - "denom": "ibc/75DA832E8BF7E668702AD686AFEAB9BAC74BB0DC35E69610F086D42F0E0B88DE", + "denom": "ibc/8B94B5DDD90F317D253175AEEE88E2E7E3E15E3867E225577D9C892ACF3660FB", "exponent": 0, }, { - "denom": "frxeth", - "exponent": 18, + "denom": "CRAZYHORSE", + "exponent": 6, }, ], - "description": "A liquid ETH staking derivative designed to leverage the Frax ecosystem.", - "display": "frxeth", + "description": "For th", + "display": "CRAZYHORSE", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg", - }, - { - "imageSync": { - "baseDenom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frxeth.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png", "theme": { "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/frxeth.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png", }, - "name": "Frax Ether (Picasso)", - "symbol": "frxETH.pica", + "name": "HorseShoeBar", + "symbol": "CRAZYHORSE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/29B7D64637E59751447EA8554FF0635C20439DD26791BFCF4202CEA9E2F6CD85", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/8711072492F51C3765688E2A58C88E0986A8EC3090F567B16B9462108F312BF2", "denomUnits": [ { "aliases": [ - "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", ], - "denom": "ibc/29B7D64637E59751447EA8554FF0635C20439DD26791BFCF4202CEA9E2F6CD85", + "denom": "ibc/8711072492F51C3765688E2A58C88E0986A8EC3090F567B16B9462108F312BF2", "exponent": 0, }, { - "denom": "sfrxeth", - "exponent": 18, + "denom": "COCA", + "exponent": 6, }, ], - "description": "A Liquid Staking Derivative designed to accrue the staking yield of the Frax ETH validators.", - "display": "sfrxeth", + "description": "Cosmus Cartol always get rich", + "display": "COCA", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg", - }, - { - "imageSync": { - "baseDenom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", - "chainName": "composable", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png", + "theme": { + "primaryColorHex": "#1e2029", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sfrxeth.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png", }, - "name": "Staked Frax Ether (Picasso)", - "symbol": "sfrxETH.pica", + "name": "CosmusCartol", + "symbol": "COCA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/70056C0C9BC6A7568AD81146164239475C9E8E66BCD4F785C39F7713F733F3DE", + "base": "ibc/2B8D948B3C4A3EE0B503E18FBED6AC8CFEC9E0E722A05D3C8F5A40ED6BE279A1", "denomUnits": [ { "aliases": [ - "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", ], - "denom": "ibc/70056C0C9BC6A7568AD81146164239475C9E8E66BCD4F785C39F7713F733F3DE", + "denom": "ibc/2B8D948B3C4A3EE0B503E18FBED6AC8CFEC9E0E722A05D3C8F5A40ED6BE279A1", "exponent": 0, }, { - "denom": "clay", + "denom": "usdt", "exponent": 6, }, ], - "description": "Adam Clay a BitSong Music FanToken", - "display": "clay", + "description": "Tether, issued natively on Solana.", + "display": "usdt", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", + "theme": { + "primaryColorHex": "#089496", + }, + }, { "imageSync": { - "baseDenom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "chainName": "bitsong", + "baseDenom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#e8e5e7", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", }, - "name": "Adam Clay FanToken", - "symbol": "CLAY", + "name": "Tether USD (Solana via Picasso)", + "symbol": "USDT.sol.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "base_denom": "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61277,46 +64024,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/C6F9EDD2E791059CC6D287C89B2E1B1B598D589C84ADC7C8AD0BE234A91CA37E", + "base": "ibc/C7E3223CDF8B6FBD878BF0C9F85C8301B608272FC3275D178569B971D2AADC82", "denomUnits": [ { "aliases": [ - "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", + "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", ], - "denom": "ibc/C6F9EDD2E791059CC6D287C89B2E1B1B598D589C84ADC7C8AD0BE234A91CA37E", + "denom": "ibc/C7E3223CDF8B6FBD878BF0C9F85C8301B608272FC3275D178569B971D2AADC82", "exponent": 0, }, { - "denom": "404dr", - "exponent": 6, + "denom": "edgesol", + "exponent": 9, }, ], - "description": "404Deep Records a BitSong Music FanToken", - "display": "404dr", + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the Edgevana protocol.", + "display": "edgesol", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png", + }, { "imageSync": { - "baseDenom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "chainName": "bitsong", + "baseDenom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png", "theme": { - "primaryColorHex": "#cfb1b3", + "primaryColorHex": "#146cfc", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png", }, - "name": "404Deep Records Fantoken", - "symbol": "404DR", + "name": "Edgevana Staked SOL (Picasso)", + "symbol": "edgeSOL.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", + "base_denom": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61326,119 +64079,107 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p", - "base": "ibc/639C79B4130612FDC85F9365E0C29111505433B1668011D71E5783F66B0E26B8", + "base": "ibc/C77520401669DC337688068E3E37F0C4B1DD4B6F3734027B6573F645C64682FF", "denomUnits": [ { "aliases": [ - "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", ], - "denom": "ibc/639C79B4130612FDC85F9365E0C29111505433B1668011D71E5783F66B0E26B8", + "denom": "ibc/C77520401669DC337688068E3E37F0C4B1DD4B6F3734027B6573F645C64682FF", "exponent": 0, }, { - "denom": "wLIBRA", - "exponent": 6, + "denom": "lst", + "exponent": 9, }, ], - "description": "wLibra is a bridged version of Libra Coin from 0L Network via LibraBridge.", - "display": "wLIBRA", - "extendedDescription": "Libra Coin is a fork from Facebook's Diem (Libra) blockchain that was announced in 2019. Libra Coin operates on its own high-performance Layer 1 blockchain, known as the 0L Network. In October 2021, Libra Coin began mining. - - Like Bitcoin, there were no pre-mined coins or dedicated token allocation to any parties; all coins were minted through a mining process. Unlike Bitcoin, which undergoes continuous issuance, Libra Coin has a fixed supply. By December 2023, all the Libra Coin had been issued, establishing a capped supply and making the coin permanently deflationary. - - Fiercely independent, the project has a long-term view because it is unburdened by venture capital funding, labs entities, a foundation, and the influence of other blockchain ecosystems. Carpe diem.", + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the MarginFi protocol.", + "display": "lst", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png", + }, { "imageSync": { - "baseDenom": "microlibra", - "chainName": "0l", + "baseDenom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png", "theme": { - "primaryColorHex": "#e45c5c", + "primaryColorHex": "#cbebe3", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg", - }, - "name": "Wrapped Libra Coin (LibraBridge)", - "socials": { - "twitter": "https://twitter.com/0LNetwork", - "website": "https://0l.network/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png", }, - "symbol": "wLIBRA", + "name": "Liquid Staking Token (Picasso)", + "symbol": "LST.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "base_denom": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/7963F2EB3E6FA375EF9DC2709BC5320E7FACC1A927A454096C7B10CBBA6E3350", + "base": "ibc/F81604911688DDA2B3DC9536A533CBF1041DA24820EE69EDB8B4B354CD848DEE", "denomUnits": [ { "aliases": [ - "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", + "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", ], - "denom": "ibc/7963F2EB3E6FA375EF9DC2709BC5320E7FACC1A927A454096C7B10CBBA6E3350", + "denom": "ibc/F81604911688DDA2B3DC9536A533CBF1041DA24820EE69EDB8B4B354CD848DEE", "exponent": 0, }, { - "denom": "nim", - "exponent": 18, + "denom": "jitosol", + "exponent": 9, }, ], - "description": "The native token of Nim Network.", - "display": "nim", - "extendedDescription": "Nim Network is a highly-adoptable AI Gaming chain that will provide the ultimate ecosystem for exploration and development of games at the intersection of Web3 and AI.", + "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using Jito.", + "display": "jitosol", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png", + }, { "imageSync": { - "baseDenom": "anim", - "chainName": "nim", + "baseDenom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png", "theme": { - "primaryColorHex": "#519cea", + "primaryColorHex": "#5bb384", }, }, ], "keywords": [ - "gaming", - "AI", - "osmosis_unstable", + "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nim/images/nim.svg", - }, - "name": "Nim Network", - "socials": { - "twitter": "https://twitter.com/nim_network", - "website": "https://ai.nim.network/", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png", }, - "symbol": "NIM", + "name": "Jito Staked SOL (Picasso)", + "symbol": "jitoSOL.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426", + "base_denom": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61448,48 +64189,54 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/6F59FC012DABF4B3B1DA8E68D1851DFC02999E0AFB27FE69FA249633C91D6D58", + "base": "ibc/102C2A723BD74786372EA5F5A58E2900D44311762F0D40C9E379004532AEC7FA", "denomUnits": [ { "aliases": [ - "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", + "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", ], - "denom": "ibc/6F59FC012DABF4B3B1DA8E68D1851DFC02999E0AFB27FE69FA249633C91D6D58", + "denom": "ibc/102C2A723BD74786372EA5F5A58E2900D44311762F0D40C9E379004532AEC7FA", "exponent": 0, }, { - "denom": "seda", - "exponent": 18, + "denom": "wsol", + "exponent": 9, }, ], - "description": "The native token of SEDA Chain.", - "display": "seda", + "description": "SOL is the native cryptocurrency of the Solana blockchain.", + "display": "wsol", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png", + }, { "imageSync": { - "baseDenom": "aseda", - "chainName": "seda", + "baseDenom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", + "chainName": "composable", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#8178d1", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/seda/images/seda.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png", }, - "name": "SEDA", - "symbol": "SEDA", + "name": "Solana (Picasso)", + "symbol": "SOL.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", + "base_denom": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61499,44 +64246,67 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/3BAE2ED3401C8F688ECB2D2A8BB498FEFD9C3953F67DBCB364EE0742F4351DA2", + "address": "osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek", + "base": "ibc/90F1F2AF21140DB3FA7EA90360AAF0D43B6BFDB0758794734ECF1BF1C7134C07", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", ], - "denom": "ibc/3BAE2ED3401C8F688ECB2D2A8BB498FEFD9C3953F67DBCB364EE0742F4351DA2", + "denom": "ibc/90F1F2AF21140DB3FA7EA90360AAF0D43B6BFDB0758794734ECF1BF1C7134C07", "exponent": 0, }, { - "denom": "CAC", + "denom": "allUSDT", "exponent": 6, }, ], - "description": "Cosmos Airdrop Chat", - "display": "CAC", - "extendedDescription": "Official Token of the Cosmos Airdrop community", + "description": "An alloy of USDT asset variants on Osmosis.", + "display": "allUSDT", + "extendedDescription": "Multiple Tether USD variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of USDT.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png", + "imageSync": { + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#160542", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#50AF95", }, }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg", + }, + ], + "keywords": [ + "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CAC.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, - "name": "Cosmos Airdrop Chat", - "symbol": "CAC", + "name": "Tether USD", + "symbol": "USDT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "base_denom": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61546,46 +64316,48 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/4B18B816CFE158580291C0A23280E343831329A9CCD1087B2EC0198B518FF967", + "base": "ibc/7BD6E423D471DF65CC5086F4F555DB2DD253412D6B7F1376CCDC2B120C03F19D", "denomUnits": [ { "aliases": [ - "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", + "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", ], - "denom": "ibc/4B18B816CFE158580291C0A23280E343831329A9CCD1087B2EC0198B518FF967", + "denom": "ibc/7BD6E423D471DF65CC5086F4F555DB2DD253412D6B7F1376CCDC2B120C03F19D", "exponent": 0, }, { - "denom": "WEIRD", + "denom": "whine", "exponent": 6, }, ], - "description": "WEIRD token for WEIRD friends collection", - "display": "WEIRD", + "description": "Whinecoin is an experimental memecoin by the Sommelier Finance team.", + "display": "whine", "images": [ { "imageSync": { - "baseDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD", - "chainName": "neutron", + "baseDenom": "ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump", + "chainName": "solana", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png", "theme": { - "primaryColorHex": "#ebf0f4", + "backgroundColorHex": "#FFFFFF", + "circle": false, + "primaryColorHex": "#FFFFFF", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WEIRD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png", }, - "name": "WEIRD", - "symbol": "WEIRD", + "name": "WHINEcoin", + "symbol": "WHINE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748", + "base_denom": "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61596,42 +64368,42 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/FDE12500FBE28193781910E3DADB360A781344C9041C5F3506B7F50F532E2CF9", + "base": "ibc/B0309B89F0B0DC23BE92473957FD990C3C76C3CDA54FF64E027140A09FCFA605", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag", ], - "denom": "ibc/FDE12500FBE28193781910E3DADB360A781344C9041C5F3506B7F50F532E2CF9", + "denom": "ibc/B0309B89F0B0DC23BE92473957FD990C3C76C3CDA54FF64E027140A09FCFA605", "exponent": 0, }, { - "denom": "PBB", + "denom": "BAG", "exponent": 6, }, ], - "description": "Uhm, Power Bottom", - "display": "PBB", + "description": "A group of french boulanger who wanna bring fun and baguette on cosmos", + "display": "BAG", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BAG.png", "theme": { - "primaryColorHex": "#f21313", + "primaryColorHex": "#a07042", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/PBB.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BAG.png", }, - "name": "Power Bottom", - "symbol": "PBB", + "name": "Baguette", + "symbol": "BAG", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61641,43 +64413,55 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/D111ED3ECB253CB464D8D9FFA07DD5CF3E1F244D4D37CF757ADEC82191D34229", + "address": "osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3", + "base": "ibc/955101AB8C0673FAAA6D155AFE8F592B0453A971E64138E944E04F74F60D69EE", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", + "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", ], - "denom": "ibc/D111ED3ECB253CB464D8D9FFA07DD5CF3E1F244D4D37CF757ADEC82191D34229", + "denom": "ibc/955101AB8C0673FAAA6D155AFE8F592B0453A971E64138E944E04F74F60D69EE", "exponent": 0, }, { - "denom": "bwh", - "exponent": 6, + "denom": "allBTC", + "exponent": 8, }, ], - "description": "Beer Is Good for You!", - "display": "bwh", + "description": "An alloy of BTC asset variants on Osmosis.", + "display": "allBTC", + "extendedDescription": "Multiple Bitcoin variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of BTC.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BWH.png", + "imageSync": { + "baseDenom": "sat", + "chainName": "bitcoin", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "theme": { - "primaryColorHex": "#775038", + "backgroundColorHex": "#f4941c", + "circle": true, + "primaryColorHex": "#f4941c", }, }, + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg", + }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BWH.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", }, - "name": "BeerWifHat", - "symbol": "BWH", + "name": "Bitcoin", + "symbol": "BTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", + "base_denom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61687,42 +64471,46 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/05DAA44ABFDF60B851BE49D3AF89B853DD1A1FC47FF9579111877803F6D37E76", + "base": "ibc/1E6973E4BD445AEE28B1DA35AAD6BE26336099EC6A8FE2978C353587E9AE3DDE", "denomUnits": [ { "aliases": [ - "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", + "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", ], - "denom": "ibc/05DAA44ABFDF60B851BE49D3AF89B853DD1A1FC47FF9579111877803F6D37E76", + "denom": "ibc/1E6973E4BD445AEE28B1DA35AAD6BE26336099EC6A8FE2978C353587E9AE3DDE", "exponent": 0, }, + { + "denom": "n43", + "exponent": 6, + }, ], - "description": "Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.", - "display": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", + "description": "N43 a BitSong Music FanToken", + "display": "n43", "images": [ { "imageSync": { - "baseDenom": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", - "chainName": "juno", + "baseDenom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "chainName": "bitsong", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", "theme": { - "primaryColorHex": "#f3cb0c", + "primaryColorHex": "#0a0a0a", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/afa.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", }, - "name": "Airdrop For All", - "symbol": "AFA", + "name": "N43 Fantoken", + "symbol": "N43", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995", + "base_denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61732,106 +64520,91 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/FCCEF9E760831CB2C2BE9F6D97CD73F01EB9DB7F64311F372066CF2A0760EF51", + "base": "ibc/0F07F5F604A1F9B9864349D3706C0BEDD586E2E6BD5E418D4E20B9D3344B9699", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", ], - "denom": "ibc/FCCEF9E760831CB2C2BE9F6D97CD73F01EB9DB7F64311F372066CF2A0760EF51", + "denom": "ibc/0F07F5F604A1F9B9864349D3706C0BEDD586E2E6BD5E418D4E20B9D3344B9699", "exponent": 0, }, { - "denom": "SHITMOS", + "denom": "rakoff", "exponent": 6, }, ], - "description": "The Cosmos Network's premier self-hatred memecoin.", - "display": "SHITMOS", - "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "description": "Rakoff Token is the Meme Token for Terra Classic", + "display": "rakoff", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", - "theme": { - "circle": true, - "primaryColorHex": "#639BFF", + "imageSync": { + "baseDenom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", + "chainName": "terra", }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png", }, ], - "keywords": [ - "memecoin", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", - }, - "name": "Shitmos", - "socials": { - "twitter": "https://twitter.com/shitoncosmos", - "website": "https://shitmos.wtf", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png", }, - "symbol": "SHITMOS", + "name": "Juris Protocol", + "symbol": "JURIS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "base_denom": "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/9E406B37D487211B375E35AC42D0E7C1D86CEF180943A379D8A0858407508546", + "base": "ibc/BD781A8FCCCD69919BFBEC5CF6C7EF92E8AF5F2708ACCBBDC86C98FB3117CFEE", "denomUnits": [ { "aliases": [ - "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", + "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", ], - "denom": "ibc/9E406B37D487211B375E35AC42D0E7C1D86CEF180943A379D8A0858407508546", + "denom": "ibc/BD781A8FCCCD69919BFBEC5CF6C7EF92E8AF5F2708ACCBBDC86C98FB3117CFEE", "exponent": 0, }, { - "aliases": [], - "denom": "qjuno", - "exponent": 6, + "denom": "arbitrum-weth", + "exponent": 18, }, ], - "description": "Quicksilver Liquid Staked JUNO", - "display": "qjuno", + "display": "arbitrum-weth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.svg", + }, { "imageSync": { - "baseDenom": "uqjuno", - "chainName": "quicksilver", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg", - "theme": { - "primaryColorHex": "#fc944c", + "baseDenom": "arbitrum-weth-wei", + "chainName": "axelar", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qjuno.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.svg", }, - "name": "Quicksilver Liquid Staked JUNO", - "symbol": "qJUNO", + "name": "Wrapped Ether (Arbitrum via Axelar)", + "symbol": "ETH.arb.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54", + "base_denom": "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61841,49 +64614,45 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/D1350CDB3202294C9B0F387C89B996CEA47E7CF6DCF605C82147F38A5DE026D5", + "base": "ibc/F0FE9835F457AAB2B05B41BFA506169A712D6CAA6C56572B7A340A9090391E71", "denomUnits": [ { "aliases": [ - "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", + "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", ], - "denom": "ibc/D1350CDB3202294C9B0F387C89B996CEA47E7CF6DCF605C82147F38A5DE026D5", + "denom": "ibc/F0FE9835F457AAB2B05B41BFA506169A712D6CAA6C56572B7A340A9090391E71", "exponent": 0, }, { - "aliases": [], - "denom": "qsaga", - "exponent": 6, + "denom": "base-weth", + "exponent": 18, }, ], - "description": "Quicksilver Liquid Staked SAGA", - "display": "qsaga", + "display": "base-weth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.svg", + }, { "imageSync": { - "baseDenom": "uqsaga", - "chainName": "quicksilver", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg", - "theme": { - "primaryColorHex": "#f9924b", + "baseDenom": "base-weth-wei", + "chainName": "axelar", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsaga.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.svg", }, - "name": "Quicksilver Liquid Staked SAGA", - "symbol": "qSAGA", + "name": "Wrapped Ether (Base via Axelar)", + "symbol": "ETH.base.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13", + "base_denom": "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61893,49 +64662,45 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/6E3A8A3C6848C411A2B53079374CD217B9A510353EAC2DCD9EC62FABC4BC675D", + "base": "ibc/587147FDA6A54C7F45DA057985A4861C2505FF19EC040C7986F084FFBD7F35DE", "denomUnits": [ { "aliases": [ - "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", + "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", ], - "denom": "ibc/6E3A8A3C6848C411A2B53079374CD217B9A510353EAC2DCD9EC62FABC4BC675D", + "denom": "ibc/587147FDA6A54C7F45DA057985A4861C2505FF19EC040C7986F084FFBD7F35DE", "exponent": 0, }, { - "aliases": [], - "denom": "qdydx", + "denom": "polygon-weth", "exponent": 18, }, ], - "description": "Quicksilver Liquid Staked DYDX", - "display": "qdydx", + "display": "polygon-weth", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg", + }, { "imageSync": { - "baseDenom": "aqdydx", - "chainName": "quicksilver", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg", - "theme": { - "primaryColorHex": "#fc944c", + "baseDenom": "polygon-weth-wei", + "chainName": "axelar", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qdydx.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg", }, - "name": "Quicksilver Liquid Staked DYDX", - "symbol": "qDYDX", + "name": "Wrapped Ether (Polygon via Axelar)", + "symbol": "ETH.matic.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27", + "base_denom": "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61945,49 +64710,47 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/655BF474A1DABC1A2D98783210E35B6EA345275A96DF7789FE4ED2002B6746AF", + "base": "ibc/8B39DE503A6B6F4A627E5C66598877C6BC06F896D8C7C5A278E99BE6A87A6AB8", "denomUnits": [ { "aliases": [ - "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", + "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", ], - "denom": "ibc/655BF474A1DABC1A2D98783210E35B6EA345275A96DF7789FE4ED2002B6746AF", + "denom": "ibc/8B39DE503A6B6F4A627E5C66598877C6BC06F896D8C7C5A278E99BE6A87A6AB8", "exponent": 0, }, { - "aliases": [], - "denom": "qbld", - "exponent": 6, + "denom": "stISLM", + "exponent": 18, }, ], - "description": "Quicksilver Liquid Staked BLD", - "display": "qbld", + "display": "stISLM", "images": [ { "imageSync": { - "baseDenom": "uqbld", - "chainName": "quicksilver", + "baseDenom": "staISLM", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg", "theme": { - "primaryColorHex": "#fc944c", + "primaryColorHex": "#e40474", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qbld.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg", }, - "name": "Quicksilver Liquid Staked BLD", - "symbol": "qBLD", + "name": "Stride Staked ISLM", + "symbol": "stISLM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7", + "base_denom": "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -61997,53 +64760,58 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/5978236F621AA7A1E49A6EAB2673945DF5709906EB442E17A15418EA0383ED77", + "base": "ibc/BA5EB4DA2306A6D4E3A7AD3101977B78C311B2980643F4A60B8DF040DCE9F211", "denomUnits": [ { "aliases": [ - "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", + "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", ], - "denom": "ibc/5978236F621AA7A1E49A6EAB2673945DF5709906EB442E17A15418EA0383ED77", + "denom": "ibc/BA5EB4DA2306A6D4E3A7AD3101977B78C311B2980643F4A60B8DF040DCE9F211", "exponent": 0, }, { - "denom": "pepe", + "denom": "mand", "exponent": 18, }, ], - "description": "PEPE is a deflationary memecoin launched on Ethereum. ", - "display": "pepe", + "description": "The native token of Mande Network.", + "display": "mand", + "extendedDescription": "Mande network is an open on-chain reputation layer on Web3", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05", - "chainName": "composable", + "baseDenom": "amand", + "chainName": "mande", }, - "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/mande/images/mande.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg", "theme": { - "primaryColorHex": "#cc3233", + "primaryColorHex": "#274cbf", }, }, ], "keywords": [ - "osmosis_unlisted", + "credibility", + "identity", + "osmosis_unstable", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pepe.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg", }, - "name": "Pepe (Picasso)", - "symbol": "PEPE.pica", + "name": "Mande Network", + "socials": { + "twitter": "https://twitter.com/MandeNetwork", + "website": "https://mande.network/", + }, + "symbol": "MAND", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D", + "base_denom": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62053,52 +64821,48 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/C6DA086113B4C4DEFE9606574F39D580D80D7B23A5DA6181FC8E5EDECF10C6A8", + "base": "ibc/DA0A26CA4F91F224748627E2901C5EA86A695E1F043A2385EE3CFB38CEDBFCD4", "denomUnits": [ { "aliases": [ - "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", + "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", ], - "denom": "ibc/C6DA086113B4C4DEFE9606574F39D580D80D7B23A5DA6181FC8E5EDECF10C6A8", + "denom": "ibc/DA0A26CA4F91F224748627E2901C5EA86A695E1F043A2385EE3CFB38CEDBFCD4", "exponent": 0, }, { - "denom": "crv", - "exponent": 18, + "denom": "neutaro", + "exponent": 6, }, ], - "description": "CRV is the governance token for Curve Finance.", - "display": "crv", + "description": "The native token of Neutaro", + "display": "neutaro", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED", - "chainName": "composable", + "baseDenom": "uneutaro", + "chainName": "neutaro", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crv.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", "theme": { - "primaryColorHex": "#1fcbdb", + "primaryColorHex": "#cbfb06", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crv.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", }, - "name": "Curve DAO (Picasso)", - "symbol": "CRV.pica", + "name": "Neutaro", + "symbol": "NTMPI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF", + "base_denom": "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62108,52 +64872,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/0FBB9D0BFE91B58E39C5946C6808B1D2E5775EC7E7EEC73008E664F05DBB02EB", + "base": "ibc/2F60426D7B43A0DC7F961DC6AE324A0DBBC74EB5D26D92030A02ED8153C451C6", "denomUnits": [ { "aliases": [ - "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", + "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", ], - "denom": "ibc/0FBB9D0BFE91B58E39C5946C6808B1D2E5775EC7E7EEC73008E664F05DBB02EB", + "denom": "ibc/2F60426D7B43A0DC7F961DC6AE324A0DBBC74EB5D26D92030A02ED8153C451C6", "exponent": 0, }, - { - "denom": "ezeth", - "exponent": 18, + { + "aliases": [ + "pbj", + "PBJ", + ], + "denom": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", + "exponent": 6, }, ], - "description": "A Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer.", - "display": "ezeth", + "description": "Pepe Bruce Jenner", + "display": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041", - "chainName": "composable", + "baseDenom": "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU", + "chainName": "solana", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ezeth.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", "theme": { - "primaryColorHex": "#9bcf2c", + "backgroundColorHex": "#ee0000", + "primaryColorHex": "#488000", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ezeth.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", }, - "name": "Renzo Restaked ETH (Picasso)", - "symbol": "ezETH.pica", + "name": "Pepe Bruce Jenner", + "symbol": "PBJ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB", + "base_denom": "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62163,52 +64926,48 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/2D018641FBF6B12FD4B01211F499FEA8C22253082ADBF4EDC0D729CA074C3829", + "base": "ibc/0BC9F1AE893F3249A6EE4E7427E08B638D8E8D697A65453EB5ED71AE3A4B85C2", "denomUnits": [ { "aliases": [ - "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", + "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", ], - "denom": "ibc/2D018641FBF6B12FD4B01211F499FEA8C22253082ADBF4EDC0D729CA074C3829", + "denom": "ibc/0BC9F1AE893F3249A6EE4E7427E08B638D8E8D697A65453EB5ED71AE3A4B85C2", "exponent": 0, }, { - "denom": "usde", + "denom": "usdy", "exponent": 18, }, ], - "description": "Ethena USDe is a synthetic dollar protocol built on Ethereum.", - "display": "usde", + "description": "Ondo US Dollar Yield", + "display": "usdy", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983", - "chainName": "composable", + "baseDenom": "ausdy", + "chainName": "noble", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usde.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#142c5c", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usde.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", }, - "name": "Ethena USDe (Picasso)", - "symbol": "USDe.pica", + "name": "Ondo US Dollar Yield", + "symbol": "USDY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63", + "base_denom": "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62218,107 +64977,91 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/2FAE849F9ABDE93F4577B5A9825EB14E64363F2953C228E9421AA79BA43346E2", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/76F7893085E7ED4B1FBCEBAC618A333D1CB09260087E376A1E96282E874AFDA9", "denomUnits": [ { "aliases": [ - "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd", ], - "denom": "ibc/2FAE849F9ABDE93F4577B5A9825EB14E64363F2953C228E9421AA79BA43346E2", + "denom": "ibc/76F7893085E7ED4B1FBCEBAC618A333D1CB09260087E376A1E96282E874AFDA9", "exponent": 0, }, { - "denom": "ena", - "exponent": 18, + "denom": "TURD", + "exponent": 6, }, ], - "description": "The native governance token of Ethena.", - "display": "ena", + "description": "Jacob Haertnellez Turtle. Launched by Jake's Personally appointed TURD Cult Leader..."NotSeanO'Riley." TURD is going to lead the shitcoins of Cosmos! Or Rug You. It will be Jake's Fault. ", + "display": "TURD", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png", - }, - { - "imageSync": { - "baseDenom": "ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ena.png", - "theme": { - "primaryColorHex": "#1c1c1c", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ena.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png", }, - "name": "Ethena (Picasso)", - "symbol": "ENA.pica", + "name": "TURDLE", + "symbol": "TURD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/89C18730CF7A22F0120515F3E89C08687332B1ADB3C16005C1D63460CB662290", + "base": "ibc/CB41C2C648049C52CBEC5B57F6E1FBC91DDC8AE2CE22D38FE5A8421BA19C4232", "denomUnits": [ { "aliases": [ - "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", + "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", ], - "denom": "ibc/89C18730CF7A22F0120515F3E89C08687332B1ADB3C16005C1D63460CB662290", + "denom": "ibc/CB41C2C648049C52CBEC5B57F6E1FBC91DDC8AE2CE22D38FE5A8421BA19C4232", "exponent": 0, }, { - "denom": "eeth", - "exponent": 18, + "denom": "fct", + "exponent": 6, }, ], - "description": "eETH is a natively restaked liquid staking token on Ethereum.", - "display": "eeth", + "description": "FIRMACHAIN adds a signing and verifying e-contract function to the blockchain. Unlocking new limits of electronic contracts with blockchain technology, FIRMACHAIN seeks to resolve all the social and legal issues (contracts, notarial, etc.) with written contracts through the use of electronic contracts based on FIRMACHAIN’s data blockchain.", + "display": "fct", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B", - "chainName": "composable", + "baseDenom": "ufct", + "chainName": "firmachain", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eeth.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg", "theme": { - "primaryColorHex": "#5045b7", + "primaryColorHex": "#1c1c1c", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eeth.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg", }, - "name": "ether.fi Staked ETH (Picasso)", - "symbol": "eETH.pica", + "name": "FIRMACHAIN", + "symbol": "FCT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B", + "base_denom": "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62328,245 +65071,286 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/53D1AAE33F790B5ECA3AF792DC199BF63672D3F86C91021AF5A47807D744538B", + "address": "osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm", + "base": "ibc/F71EABDFDD7746D7E7FC87B3485147D021FE16D7B67676BBBDF945FC8B49F62D", "denomUnits": [ { "aliases": [ - "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", + "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", ], - "denom": "ibc/53D1AAE33F790B5ECA3AF792DC199BF63672D3F86C91021AF5A47807D744538B", + "denom": "ibc/F71EABDFDD7746D7E7FC87B3485147D021FE16D7B67676BBBDF945FC8B49F62D", "exponent": 0, }, { - "denom": "pxeth", + "denom": "allETH", "exponent": 18, }, ], - "description": "pxETH is built on top of the Pirex platform and forms the foundation of the Dinero protocol.", - "display": "pxeth", + "description": "An alloy of ETH asset variants on Osmosis.", + "display": "allETH", + "extendedDescription": "Multiple Ethereum variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of ETH.", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821", - "chainName": "composable", + "baseDenom": "wei", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pxeth.png", + "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", "theme": { - "primaryColorHex": "#c3cbd2", + "primaryColorHex": "#303030", }, }, - ], - "keywords": [ - "osmosis_unlisted", + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg", + }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/pxeth.pica.png", + "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", }, - "name": "Dinero Staked ETH (Picasso)", - "symbol": "pxETH.pica", + "name": "Ethereum", + "symbol": "ETH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7", + "base_denom": "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/66EEC99A5E53F57814845CE01906390A4BEE340DFF64DC8525E5FF8D19EEAFFE", + "address": "osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4", + "base": "ibc/0F62E7C52BD46513934B9ED57A40870EEDC1896E55C7E3EE2598CB3D2991F0C8", "denomUnits": [ { "aliases": [ - "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", + "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", ], - "denom": "ibc/66EEC99A5E53F57814845CE01906390A4BEE340DFF64DC8525E5FF8D19EEAFFE", + "denom": "ibc/0F62E7C52BD46513934B9ED57A40870EEDC1896E55C7E3EE2598CB3D2991F0C8", "exponent": 0, }, { - "denom": "crvusd", - "exponent": 18, + "denom": "allSOL", + "exponent": 9, }, ], - "description": "A collateralized-debt-position (CDP) stablecoin by Curve DAO.", - "display": "crvusd", + "description": "An alloy of SOL asset variants on Osmosis.", + "display": "allSOL", + "extendedDescription": "Multiple Solana variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of SOL.", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png", + "imageSync": { + "baseDenom": "Lamport", + "chainName": "solana", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "theme": { + "backgroundColorHex": "#000000", + "circle": true, + }, }, { - "imageSync": { - "baseDenom": "ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A", - "chainName": "composable", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/crvusd.png", + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.svg", "theme": { - "primaryColorHex": "#d6e3d9", + "backgroundColorHex": "#00000000", + "circle": false, + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, }, }, - ], - "keywords": [ - "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/crvUSD.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", }, - "name": "crvUSD (Picasso)", - "symbol": "crvUSD.pica", + "name": "Solana", + "symbol": "SOL", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6", + "base_denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/042B037916E4D59E7C1FEDD40EA32DFD5DEB3046B6F465C1313D6F999355BEDC", + "base": "ibc/22F9CD5E74C6E06EACDA8C4DFF90A75CA5BFDE17CFDFC8EDB4BFAAAAE6445A70", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", + "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", ], - "denom": "ibc/042B037916E4D59E7C1FEDD40EA32DFD5DEB3046B6F465C1313D6F999355BEDC", + "denom": "ibc/22F9CD5E74C6E06EACDA8C4DFF90A75CA5BFDE17CFDFC8EDB4BFAAAAE6445A70", "exponent": 0, }, { - "denom": "WIHA", + "denom": "lava", "exponent": 6, }, ], - "description": "Coin to support the real world in Wilhelmshall im Huy", - "display": "WIHA", + "description": "Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.", + "display": "lava", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png", + "imageSync": { + "baseDenom": "ulava", + "chainName": "lava", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", "theme": { - "primaryColorHex": "#f2f2ec", + "primaryColorHex": "#6f043e", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WIHA.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", }, - "name": "WiliHall", - "symbol": "WIHA", + "name": "Lava", + "symbol": "LAVA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", + "base_denom": "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/8B94B5DDD90F317D253175AEEE88E2E7E3E15E3867E225577D9C892ACF3660FB", + "base": "ibc/2D20DD64C981A43B063EC0CBE6FC4B9A1A0CBCB68DE1BA5DF2385B053E8C08F5", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", + "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", ], - "denom": "ibc/8B94B5DDD90F317D253175AEEE88E2E7E3E15E3867E225577D9C892ACF3660FB", + "denom": "ibc/2D20DD64C981A43B063EC0CBE6FC4B9A1A0CBCB68DE1BA5DF2385B053E8C08F5", "exponent": 0, }, { - "denom": "CRAZYHORSE", + "denom": "penumbra", "exponent": 6, }, ], - "description": "For th", - "display": "CRAZYHORSE", + "description": "The native token of Penumbra.", + "display": "penumbra", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png", + "imageSync": { + "baseDenom": "upenumbra", + "chainName": "penumbra", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.svg", "theme": { - "primaryColorHex": "#040404", + "circle": true, + "primaryColorHex": "#c7b07f", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CrazyHorse.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.svg", }, - "name": "HorseShoeBar", - "symbol": "CRAZYHORSE", + "name": "Penumbra", + "symbol": "UM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", + "base_denom": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/8711072492F51C3765688E2A58C88E0986A8EC3090F567B16B9462108F312BF2", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/2AAEA8E5EBB5BEF0A9F5B3A8F2F843DA5463991F954B9731E91D9CA7B5C27A0E", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", ], - "denom": "ibc/8711072492F51C3765688E2A58C88E0986A8EC3090F567B16B9462108F312BF2", + "denom": "ibc/2AAEA8E5EBB5BEF0A9F5B3A8F2F843DA5463991F954B9731E91D9CA7B5C27A0E", "exponent": 0, }, { - "denom": "COCA", + "denom": "trx", "exponent": 6, }, ], - "description": "Cosmus Cartol always get rich", - "display": "COCA", + "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", + "display": "trx", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png", + "imageSync": { + "baseDenom": "sun", + "chainName": "tron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", "theme": { - "primaryColorHex": "#1e2029", + "backgroundColorHex": "#FF060A", + "circle": true, + "primaryColorHex": "#FF060A", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COCA.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", }, - "name": "CosmusCartol", - "symbol": "COCA", + "name": "Tron (Router)", + "symbol": "TRX.rt", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62576,13 +65360,14 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/3F4E761B45BB2E9C82093CF78A406360596B4EB336CC2C6A1E71F52EF232D25A", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/AF33F39487375A1A02CB829B16E2E0AF2A2EA2F9FB01FA1156B46D480C35901D", "denomUnits": [ { "aliases": [ - "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", ], - "denom": "ibc/3F4E761B45BB2E9C82093CF78A406360596B4EB336CC2C6A1E71F52EF232D25A", + "denom": "ibc/AF33F39487375A1A02CB829B16E2E0AF2A2EA2F9FB01FA1156B46D480C35901D", "exponent": 0, }, { @@ -62590,20 +65375,22 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "exponent": 6, }, ], - "description": "Tether, issued natively on Solana.", + "description": "A synthetic version of USDT issued by Router, which can be unwrapped to USDT on several chains.", "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg", "theme": { - "primaryColorHex": "#089496", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, { "imageSync": { - "baseDenom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", - "chainName": "composable", + "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "chainName": "ethereum", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", @@ -62614,77 +65401,72 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg", }, - "name": "Tether USD (Solana) (Picasso)", - "symbol": "USDT.sol.pica", + "name": "Tether USD (Ethereum via Router)", + "symbol": "USDT.eth.rt", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F602E35A4EE6151C1A620608FDC5EE67B8A8688369FF2DBC0DA786C2452DB8F8", + "base": "ibc/8BB183BE236D65114781542BDB8B5816788D6259761614791D49416F3BFB5C7F", "denomUnits": [ { "aliases": [ - "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", + "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", ], - "denom": "ibc/F602E35A4EE6151C1A620608FDC5EE67B8A8688369FF2DBC0DA786C2452DB8F8", + "denom": "ibc/8BB183BE236D65114781542BDB8B5816788D6259761614791D49416F3BFB5C7F", "exponent": 0, }, { - "denom": "edgesol", - "exponent": 9, + "denom": "COSMO", + "exponent": 6, }, ], - "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the Edgevana protocol.", - "display": "edgesol", + "description": "Cosmo is the best currency in the universe.", + "display": "COSMO", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", - "chainName": "composable", + "baseDenom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", + "chainName": "injective", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/edgesol.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", "theme": { - "primaryColorHex": "#146cfc", + "primaryColorHex": "#343169", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/edgesol.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", }, - "name": "Edgevana Staked SOL (Picasso)", - "symbol": "edgeSOL.pica", + "name": "Cosmo", + "socials": { + "twitter": "https://x.com/CosmoClub84", + "website": "https://github.com/raphaellafar/Cosmo", + }, + "symbol": "COSMO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607", + "base_denom": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62694,52 +65476,47 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/F9859F28B9E1C28A03B9108EB91E6443409F4287C5B7F8FF9F971AFD40787825", + "base": "ibc/B7ADA802AB7C5388C9C1D6264B191D03EDF887654A49ADEFDC57869D69608483", "denomUnits": [ { "aliases": [ - "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", + "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", ], - "denom": "ibc/F9859F28B9E1C28A03B9108EB91E6443409F4287C5B7F8FF9F971AFD40787825", + "denom": "ibc/B7ADA802AB7C5388C9C1D6264B191D03EDF887654A49ADEFDC57869D69608483", "exponent": 0, }, { - "denom": "lst", - "exponent": 9, + "denom": "stBAND", + "exponent": 6, }, ], - "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using the MarginFi protocol.", - "display": "lst", + "display": "stBAND", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", - "chainName": "composable", + "baseDenom": "stuband", + "chainName": "stride", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/msol.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg", "theme": { - "primaryColorHex": "#cbebe3", + "primaryColorHex": "#e40474", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lst.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg", }, - "name": "Liquid Staking Token (Picasso)", - "symbol": "LST.pica", + "name": "Stride Staked BAND", + "symbol": "stBAND", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE", + "base_denom": "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -62749,334 +65526,326 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/0BC457875665DEED0CD963C818A3FA4FCFF6DDAB12C0FDA0CEBC8724423FA476", + "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", + "base": "ibc/2AAFAB845FA205F94FE0A720C37D196D02F43ED195C42EA51BBDD97488B6FD6E", "denomUnits": [ { "aliases": [ - "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", + "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", ], - "denom": "ibc/0BC457875665DEED0CD963C818A3FA4FCFF6DDAB12C0FDA0CEBC8724423FA476", + "denom": "ibc/2AAFAB845FA205F94FE0A720C37D196D02F43ED195C42EA51BBDD97488B6FD6E", "exponent": 0, }, { - "denom": "jitosol", - "exponent": 9, + "denom": "COOK", + "exponent": 6, }, ], - "description": "A representative token for staked SOL, derived through the process of liquid staking SOL using Jito.", - "display": "jitosol", + "description": "COOK is the governance token for Start.Cooking, the premier token factory on Cosmos.", + "display": "COOK", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png", - }, - { - "imageSync": { - "baseDenom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/jitosol.png", - "theme": { - "primaryColorHex": "#5bb384", - }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png", }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/jitosol.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png", }, - "name": "Jito Staked SOL (Picasso)", - "symbol": "jitoSOL.pica", + "name": "COOK", + "symbol": "COOK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982", + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/43640CF1F12EDC2F6508B667DFE2A71D6D46015579941D1D50276DA52BFA3897", + "address": "osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x", + "base": "ibc/EE723583977670AA49DB7B8D9980C32F665B12CA2D72C0734E5ED21359C4AB1D", "denomUnits": [ { "aliases": [ - "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", + "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", ], - "denom": "ibc/43640CF1F12EDC2F6508B667DFE2A71D6D46015579941D1D50276DA52BFA3897", + "denom": "ibc/EE723583977670AA49DB7B8D9980C32F665B12CA2D72C0734E5ED21359C4AB1D", "exponent": 0, }, { - "denom": "wsol", - "exponent": 9, + "denom": "trx", + "exponent": 6, }, ], - "description": "SOL is the native cryptocurrency of the Solana blockchain.", - "display": "wsol", + "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", + "display": "trx", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png", + "imageSync": { + "baseDenom": "sun", + "chainName": "tron", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "theme": { + "backgroundColorHex": "#FF060A", + "circle": true, + "primaryColorHex": "#FF060A", + }, }, { - "imageSync": { - "baseDenom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg", "theme": { - "backgroundColorHex": "#000000", + "backgroundColorHex": "#FF060A", "circle": true, + "primaryColorHex": "#FF060A", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wsol.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", }, - "name": "Solana (Picasso)", - "symbol": "SOL.pica", + "name": "Tron", + "symbol": "TRX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78", + "base_denom": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek", - "base": "ibc/90F1F2AF21140DB3FA7EA90360AAF0D43B6BFDB0758794734ECF1BF1C7134C07", + "base": "ibc/0B01C1DD202C24CD572DF972CE844A5D9596203462C3E2E44349C0462C62A2FC", "denomUnits": [ { "aliases": [ - "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", + "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", ], - "denom": "ibc/90F1F2AF21140DB3FA7EA90360AAF0D43B6BFDB0758794734ECF1BF1C7134C07", + "denom": "ibc/0B01C1DD202C24CD572DF972CE844A5D9596203462C3E2E44349C0462C62A2FC", "exponent": 0, }, { - "denom": "allUSDT", - "exponent": 6, + "denom": "ROUTE", + "exponent": 18, }, ], - "description": "An alloy of USDT asset variants on Osmosis.", - "display": "allUSDT", - "extendedDescription": "Multiple Tether USD variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of USDT.", + "description": "The native token of Router Chain", + "display": "ROUTE", "images": [ { "imageSync": { - "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "baseDenom": "route", + "chainName": "routerchain", }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", "theme": { - "backgroundColorHex": "#00000000", - "circle": false, - "primaryColorHex": "#50AF95", + "primaryColorHex": "#cb0766", }, }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allUSDT.svg", - }, - ], - "keywords": [ - "osmosis_unlisted", ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", }, - "name": "Tether USD", - "symbol": "USDT", + "name": "Router Protocol", + "symbol": "ROUTE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", + "base_denom": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/4FF52D55A4EEA69C6D0CD41EF599B3710A51FA2150915337F4BE4D6BC475A14E", + "address": "osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg", + "base": "ibc/3EF5559E7AA2EB0EAF23ACE2C5A5E1AE69D43D4C5E718CC869B7E4B7245E3E4B", "denomUnits": [ { "aliases": [ - "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", + "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", ], - "denom": "ibc/4FF52D55A4EEA69C6D0CD41EF599B3710A51FA2150915337F4BE4D6BC475A14E", + "denom": "ibc/3EF5559E7AA2EB0EAF23ACE2C5A5E1AE69D43D4C5E718CC869B7E4B7245E3E4B", "exponent": 0, }, { - "denom": "whine", - "exponent": 6, + "denom": "op", + "exponent": 12, }, ], - "description": "Whinecoin is an experimental memecoin by the Sommelier Finance team.", - "display": "whine", + "description": "An alloy of OP asset variants on Osmosis.", + "display": "op", "images": [ { "imageSync": { - "baseDenom": "ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump", - "chainName": "solana", + "baseDenom": "0x4200000000000000000000000000000000000042", + "chainName": "optimism", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", "theme": { - "backgroundColorHex": "#FFFFFF", - "circle": false, - "primaryColorHex": "#FFFFFF", + "primaryColorHex": "#fc0424", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg", + "theme": { + "primaryColorHex": "#fc0424", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", }, - "name": "WHINEcoin", - "symbol": "WHINE", + "name": "Optimism", + "symbol": "OP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", + "base_denom": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/B0309B89F0B0DC23BE92473957FD990C3C76C3CDA54FF64E027140A09FCFA605", + "base": "ibc/5E2F9B2E069805448F9EBE198DF27559BB42C9393DDB0B18F94FAC49FDF3C8FD", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag", + "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", ], - "denom": "ibc/B0309B89F0B0DC23BE92473957FD990C3C76C3CDA54FF64E027140A09FCFA605", + "denom": "ibc/5E2F9B2E069805448F9EBE198DF27559BB42C9393DDB0B18F94FAC49FDF3C8FD", "exponent": 0, }, { - "denom": "BAG", - "exponent": 6, + "denom": "op", + "exponent": 18, }, ], - "description": "A group of french boulanger who wanna bring fun and baguette on cosmos", - "display": "BAG", + "display": "op", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BAG.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", + }, + { + "imageSync": { + "baseDenom": "op-wei", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", "theme": { - "primaryColorHex": "#a07042", + "primaryColorHex": "#fc0424", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BAG.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", }, - "name": "Baguette", - "symbol": "BAG", + "name": "Optimism (Axelar)", + "symbol": "OP.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag", + "base_denom": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3", - "base": "ibc/955101AB8C0673FAAA6D155AFE8F592B0453A971E64138E944E04F74F60D69EE", + "address": "osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a", + "base": "ibc/95F730BBBF1332BD29EE6E618775C1E3C7BF67C456CF137CE3C99B1CBCCF0800", "denomUnits": [ { "aliases": [ - "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", + "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", ], - "denom": "ibc/955101AB8C0673FAAA6D155AFE8F592B0453A971E64138E944E04F74F60D69EE", + "denom": "ibc/95F730BBBF1332BD29EE6E618775C1E3C7BF67C456CF137CE3C99B1CBCCF0800", "exponent": 0, }, { - "denom": "allBTC", - "exponent": 8, + "denom": "shib", + "exponent": 12, }, ], - "description": "An alloy of BTC asset variants on Osmosis.", - "display": "allBTC", - "extendedDescription": "Multiple Bitcoin variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of BTC.", + "description": "An alloy of SHIB asset variants on Osmosis.", + "display": "shib", "images": [ { "imageSync": { - "baseDenom": "sat", - "chainName": "bitcoin", + "baseDenom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", "theme": { - "backgroundColorHex": "#f4941c", - "circle": true, - "primaryColorHex": "#f4941c", + "backgroundColorHex": "#00000000", + "primaryColorHex": "#FFA409", }, }, { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allBTC.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg", + "theme": { + "circle": true, + "primaryColorHex": "#FFA409", + }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", }, - "name": "Bitcoin", - "symbol": "BTC", + "name": "Shiba Inu", + "symbol": "SHIB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", + "base_denom": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63086,236 +65855,287 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/1E6973E4BD445AEE28B1DA35AAD6BE26336099EC6A8FE2978C353587E9AE3DDE", + "address": "osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk", + "base": "ibc/5680595ADE32CE79910194F9F6AD9B5C02D39394A0382C0E32DF5BA65442C1F9", "denomUnits": [ { "aliases": [ - "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", ], - "denom": "ibc/1E6973E4BD445AEE28B1DA35AAD6BE26336099EC6A8FE2978C353587E9AE3DDE", + "denom": "ibc/5680595ADE32CE79910194F9F6AD9B5C02D39394A0382C0E32DF5BA65442C1F9", "exponent": 0, }, { - "denom": "n43", - "exponent": 6, + "denom": "arb", + "exponent": 12, }, ], - "description": "N43 a BitSong Music FanToken", - "display": "n43", + "description": "An alloy of ARB asset variants on Osmosis.", + "display": "arb", "images": [ { "imageSync": { - "baseDenom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "chainName": "bitsong", + "baseDenom": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "chainName": "arbitrum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.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", "theme": { - "primaryColorHex": "#0a0a0a", + "primaryColorHex": "#253545", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg", + "theme": { + "primaryColorHex": "#9DCCED", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.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", }, - "name": "N43 Fantoken", - "symbol": "N43", + "name": "Arbitrum", + "symbol": "ARB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "base_denom": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/0F07F5F604A1F9B9864349D3706C0BEDD586E2E6BD5E418D4E20B9D3344B9699", + "address": "osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw", + "base": "ibc/B3E902F817F9A026141C562D2B19682C2FF42A23B287CAB7E489E36400968143", "denomUnits": [ { "aliases": [ - "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", + "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", ], - "denom": "ibc/0F07F5F604A1F9B9864349D3706C0BEDD586E2E6BD5E418D4E20B9D3344B9699", + "denom": "ibc/B3E902F817F9A026141C562D2B19682C2FF42A23B287CAB7E489E36400968143", "exponent": 0, }, { - "denom": "rakoff", - "exponent": 6, + "denom": "link", + "exponent": 12, }, ], - "description": "Rakoff Token is the Meme Token for Terra Classic", - "display": "rakoff", + "description": "An alloy of LINK asset variants on Osmosis.", + "display": "link", "images": [ { "imageSync": { - "baseDenom": "cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2", - "chainName": "terra", + "baseDenom": "0x514910771af9ca656af840dff83e8264ecf986ca", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#2c5cdc", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg", + "theme": { + "circle": true, + "primaryColorHex": "#2A5ADA", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/juris.png", + "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", }, - "name": "Rakoff Token", - "symbol": "RAKOFF", + "name": "Chainlink", + "symbol": "LINK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98", + "base_denom": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BD781A8FCCCD69919BFBEC5CF6C7EF92E8AF5F2708ACCBBDC86C98FB3117CFEE", + "address": "osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx", + "base": "ibc/8FEB4158DB02C0C9174614BA16E2196227D05B318CCAF8F0EDB475C6024D8528", "denomUnits": [ { "aliases": [ - "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", + "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", ], - "denom": "ibc/BD781A8FCCCD69919BFBEC5CF6C7EF92E8AF5F2708ACCBBDC86C98FB3117CFEE", + "denom": "ibc/8FEB4158DB02C0C9174614BA16E2196227D05B318CCAF8F0EDB475C6024D8528", "exponent": 0, }, { - "denom": "arbitrum-weth", - "exponent": 18, + "denom": "pepe", + "exponent": 12, }, ], - "display": "arbitrum-weth", + "description": "An alloy of PEPE asset variants on Osmosis.", + "display": "pepe", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.svg", + "imageSync": { + "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "chainName": "ethereum", + }, + "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", + "theme": { + "primaryColorHex": "#cc3233", + }, }, { - "imageSync": { - "baseDenom": "arbitrum-weth-wei", - "chainName": "axelar", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png", + "theme": { + "circle": true, + "primaryColorHex": "#549C44", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.arb.axl.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", }, - "name": "Wrapped Ether (Arbitrum via Axelar)", - "symbol": "ETH.arb.axl", + "name": "Pepe", + "symbol": "PEPE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB", + "base_denom": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/F0FE9835F457AAB2B05B41BFA506169A712D6CAA6C56572B7A340A9090391E71", + "address": "osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02", + "base": "ibc/D5834AFEDFDBF0635F32B5B6D1E980CB6F73F15DAD4B34FA3E83942876BEFF15", "denomUnits": [ { "aliases": [ - "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", + "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", ], - "denom": "ibc/F0FE9835F457AAB2B05B41BFA506169A712D6CAA6C56572B7A340A9090391E71", + "denom": "ibc/D5834AFEDFDBF0635F32B5B6D1E980CB6F73F15DAD4B34FA3E83942876BEFF15", "exponent": 0, }, { - "denom": "base-weth", - "exponent": 18, + "denom": "dot", + "exponent": 10, }, ], - "display": "base-weth", + "description": "An alloy of DOT asset variants on Osmosis.", + "display": "dot", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.svg", + "imageSync": { + "baseDenom": "Planck", + "chainName": "polkadot", + }, + "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", + "theme": { + "primaryColorHex": "#e4047c", + }, }, { - "imageSync": { - "baseDenom": "base-weth-wei", - "chainName": "axelar", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.svg", + "theme": { + "circle": true, + "primaryColorHex": "#E6007A", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.base.axl.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", }, - "name": "Wrapped Ether (Base via Axelar)", - "symbol": "ETH.base.axl", + "name": "Polkadot", + "symbol": "DOT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B", + "base_denom": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/587147FDA6A54C7F45DA057985A4861C2505FF19EC040C7986F084FFBD7F35DE", + "base": "ibc/C736221DD046CAC2890C21CE4AB25336F536765C0BC1AF7B3E335AA8C63875A1", "denomUnits": [ { "aliases": [ - "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", + "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", ], - "denom": "ibc/587147FDA6A54C7F45DA057985A4861C2505FF19EC040C7986F084FFBD7F35DE", + "denom": "ibc/C736221DD046CAC2890C21CE4AB25336F536765C0BC1AF7B3E335AA8C63875A1", "exponent": 0, }, { - "denom": "polygon-weth", - "exponent": 18, + "denom": "unicorn", + "exponent": 6, }, ], - "display": "polygon-weth", + "description": "Unicorn from Solana via Picasso IBC", + "display": "unicorn", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png", }, { "imageSync": { - "baseDenom": "polygon-weth-wei", - "chainName": "axelar", + "baseDenom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1", + "chainName": "composable", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", + "theme": { + "primaryColorHex": "#D44CE6", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/eth.matic.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png", }, - "name": "Wrapped Ether (Polygon via Axelar)", - "symbol": "ETH.matic.axl", + "name": "Unicorn (Picasso)", + "symbol": "UWU.pica", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E", + "base_denom": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63325,47 +66145,49 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/8B39DE503A6B6F4A627E5C66598877C6BC06F896D8C7C5A278E99BE6A87A6AB8", + "base": "ibc/D70055259A984EB0C21CA4F1C765F863C215A3EF9D837B85E5B172A9CCEB66EA", "denomUnits": [ { "aliases": [ - "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", + "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", ], - "denom": "ibc/8B39DE503A6B6F4A627E5C66598877C6BC06F896D8C7C5A278E99BE6A87A6AB8", + "denom": "ibc/D70055259A984EB0C21CA4F1C765F863C215A3EF9D837B85E5B172A9CCEB66EA", "exponent": 0, }, { - "denom": "stISLM", - "exponent": 18, + "denom": "DEEN", + "exponent": 6, }, ], - "display": "stISLM", + "description": "Deenar gold-backed stablecoin", + "display": "DEEN", "images": [ { "imageSync": { - "baseDenom": "staISLM", - "chainName": "stride", + "baseDenom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", + "chainName": "haqq", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg", "theme": { - "primaryColorHex": "#e40474", + "circle": true, + "primaryColorHex": "#ffbc05", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stislm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg", }, - "name": "Stride Staked ISLM", - "symbol": "stISLM", + "name": "Deenar", + "symbol": "DEEN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", + "base_denom": "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63375,163 +66197,150 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/BA5EB4DA2306A6D4E3A7AD3101977B78C311B2980643F4A60B8DF040DCE9F211", + "base": "ibc/F204F44BBC3A5DAD5EC297E949EACCAD463312D7E654AE82C1B26CD6A7B4F6DC", "denomUnits": [ { "aliases": [ - "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", + "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", ], - "denom": "ibc/BA5EB4DA2306A6D4E3A7AD3101977B78C311B2980643F4A60B8DF040DCE9F211", + "denom": "ibc/F204F44BBC3A5DAD5EC297E949EACCAD463312D7E654AE82C1B26CD6A7B4F6DC", "exponent": 0, }, { - "denom": "mand", - "exponent": 18, + "denom": "CosmoUSD", + "exponent": 6, }, ], - "description": "The native token of Mande Network.", - "display": "mand", - "extendedDescription": "Mande network is an open on-chain reputation layer on Web3", + "description": "CosmoUSD", + "display": "CosmoUSD", + "extendedDescription": "Community loyalty points.", "images": [ { - "imageSync": { - "baseDenom": "amand", - "chainName": "mande", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png", "theme": { - "primaryColorHex": "#274cbf", + "primaryColorHex": "#343169", }, }, ], - "keywords": [ - "credibility", - "identity", - "osmosis_unstable", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mande/images/mande.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png", }, - "name": "Mande Network", + "name": "CosmoUSD", "socials": { - "twitter": "https://twitter.com/MandeNetwork", - "website": "https://mande.network/", + "twitter": "https://x.com/CosmoClub84", + "website": "https://github.com/raphaellafar/Cosmo", }, - "symbol": "MAND", + "symbol": "COSMOUSD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", + "base_denom": "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/DA0A26CA4F91F224748627E2901C5EA86A695E1F043A2385EE3CFB38CEDBFCD4", + "address": "osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl", + "base": "ibc/0D43595F28C2EB0B4EF4FF0F35BF06873739D0BC9EF005B5868B6D95B813BF76", "denomUnits": [ { "aliases": [ - "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", + "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", ], - "denom": "ibc/DA0A26CA4F91F224748627E2901C5EA86A695E1F043A2385EE3CFB38CEDBFCD4", + "denom": "ibc/0D43595F28C2EB0B4EF4FF0F35BF06873739D0BC9EF005B5868B6D95B813BF76", "exponent": 0, }, { - "denom": "neutaro", + "denom": "XTRUMP", "exponent": 6, }, ], - "description": "The native token of Neutaro", - "display": "neutaro", + "description": "The Representative factory token for Trump Kemistry", + "display": "XTRUMP", "images": [ { - "imageSync": { - "baseDenom": "uneutaro", - "chainName": "neutaro", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", "theme": { - "primaryColorHex": "#cbfb06", + "primaryColorHex": "#b02b27", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutaro/images/neutaro.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", }, - "name": "Neutaro", - "symbol": "NTMPI", + "name": "XTRUMP", + "symbol": "XTRUMP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", + "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/2F60426D7B43A0DC7F961DC6AE324A0DBBC74EB5D26D92030A02ED8153C451C6", + "base": "ibc/5EECE0570FC66380322EDA21AF1CC453345B5A1656AFACC6789F50F4002E8A05", "denomUnits": [ { "aliases": [ - "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", + "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", ], - "denom": "ibc/2F60426D7B43A0DC7F961DC6AE324A0DBBC74EB5D26D92030A02ED8153C451C6", + "denom": "ibc/5EECE0570FC66380322EDA21AF1CC453345B5A1656AFACC6789F50F4002E8A05", "exponent": 0, }, { - "aliases": [ - "pbj", - "PBJ", - ], - "denom": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", + "denom": "usdt", "exponent": 6, }, ], - "description": "Pepe Bruce Jenner", - "display": "wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6", + "description": "Tether USDt from Ethereum via Peggy bridge.", + "display": "usdt", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", + }, { "imageSync": { - "baseDenom": "ANu4Wuq86WzRU8tykszQUJ66eQzFNfkwap2HcQ5UaFaU", - "chainName": "solana", + "baseDenom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "chainName": "injective", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "backgroundColorHex": "#ee0000", - "primaryColorHex": "#488000", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pbj.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", }, - "name": "Pepe Bruce Jenner", - "symbol": "PBJ", + "name": "Tether USD (Injective)", + "symbol": "USDT.inj", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2", + "base_denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63541,91 +66350,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/0BC9F1AE893F3249A6EE4E7427E08B638D8E8D697A65453EB5ED71AE3A4B85C2", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/93F5FF64320EA71BE21DA92248C4D20A48766F927DC78B67416CAE07569ADDFB", "denomUnits": [ { "aliases": [ - "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", ], - "denom": "ibc/0BC9F1AE893F3249A6EE4E7427E08B638D8E8D697A65453EB5ED71AE3A4B85C2", + "denom": "ibc/93F5FF64320EA71BE21DA92248C4D20A48766F927DC78B67416CAE07569ADDFB", "exponent": 0, }, { - "denom": "usdy", - "exponent": 18, + "denom": "fBAD", + "exponent": 9, }, ], - "description": "Ondo US Dollar Yield", - "display": "usdy", + "description": "Fractionalized Bad Kids", + "display": "fBAD", + "extendedDescription": "Fractionalized Bad Kids NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "ausdy", - "chainName": "noble", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png", "theme": { - "primaryColorHex": "#142c5c", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/usdy.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png", }, - "name": "Ondo US Dollar Yield", - "symbol": "USDY", + "name": "fBAD", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fBAD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/76F7893085E7ED4B1FBCEBAC618A333D1CB09260087E376A1E96282E874AFDA9", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/D7ED4503020575D1D7A74D1CD9737BE93350A84A3233184CB0959C264F124E7B", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", ], - "denom": "ibc/76F7893085E7ED4B1FBCEBAC618A333D1CB09260087E376A1E96282E874AFDA9", + "denom": "ibc/D7ED4503020575D1D7A74D1CD9737BE93350A84A3233184CB0959C264F124E7B", "exponent": 0, }, { - "denom": "TURD", - "exponent": 6, + "denom": "fMAD", + "exponent": 9, }, ], - "description": "Jacob Haertnellez Turtle. Launched by Jake's Personally appointed TURD Cult Leader..."NotSeanO'Riley." TURD is going to lead the shitcoins of Cosmos! Or Rug You. It will be Jake's Fault. ", - "display": "TURD", + "description": "Fractionalized Mad Scientists", + "display": "fMAD", + "extendedDescription": "Fractionalized Mad Scientists NFT Via Fractal.fun", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png", + "theme": { + "primaryColorHex": "#639BFF", + }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png", }, - "name": "TURDLE", - "symbol": "TURD", + "name": "fMAD", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fMAD", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63635,105 +66458,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/CB41C2C648049C52CBEC5B57F6E1FBC91DDC8AE2CE22D38FE5A8421BA19C4232", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/922DAD3BFC1B08FA7DD23F77DDAC53DAEA3762E2F3D76FC03691167003D2F37D", "denomUnits": [ { "aliases": [ - "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", ], - "denom": "ibc/CB41C2C648049C52CBEC5B57F6E1FBC91DDC8AE2CE22D38FE5A8421BA19C4232", + "denom": "ibc/922DAD3BFC1B08FA7DD23F77DDAC53DAEA3762E2F3D76FC03691167003D2F37D", "exponent": 0, }, { - "denom": "fct", - "exponent": 6, + "denom": "fSLOTH", + "exponent": 9, }, ], - "description": "FIRMACHAIN adds a signing and verifying e-contract function to the blockchain. Unlocking new limits of electronic contracts with blockchain technology, FIRMACHAIN seeks to resolve all the social and legal issues (contracts, notarial, etc.) with written contracts through the use of electronic contracts based on FIRMACHAIN’s data blockchain.", - "display": "fct", + "description": "Fractionalized Celestine Sloth Society", + "display": "fSLOTH", + "extendedDescription": "Fractionalized Celestine Sloth Society NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "ufct", - "chainName": "firmachain", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png", "theme": { - "primaryColorHex": "#1c1c1c", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png", }, - "name": "FIRMACHAIN", - "symbol": "FCT", + "name": "fSLOTH", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fSLOTH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm", - "base": "ibc/F71EABDFDD7746D7E7FC87B3485147D021FE16D7B67676BBBDF945FC8B49F62D", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/4B9C5A61F256AA832C4051672AFC76727E0B08A0DCFEDB8DF1E5AA1F3DEED217", "denomUnits": [ { "aliases": [ - "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", ], - "denom": "ibc/F71EABDFDD7746D7E7FC87B3485147D021FE16D7B67676BBBDF945FC8B49F62D", + "denom": "ibc/4B9C5A61F256AA832C4051672AFC76727E0B08A0DCFEDB8DF1E5AA1F3DEED217", "exponent": 0, }, { - "denom": "allETH", - "exponent": 18, + "denom": "fNUT", + "exponent": 9, }, ], - "description": "An alloy of ETH asset variants on Osmosis.", - "display": "allETH", - "extendedDescription": "Multiple Ethereum variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of ETH.", + "description": "Fractionalized DAONuts", + "display": "fNUT", + "extendedDescription": "Fractionalized DAONuts NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "wei", - "chainName": "ethereum", - }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png", "theme": { - "primaryColorHex": "#303030", + "primaryColorHex": "#639BFF", }, }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg", - }, + ], + "keywords": [ + "nft", ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png", }, - "name": "Ethereum", - "symbol": "ETH", + "name": "fNUT", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fNUT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63743,123 +66566,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4", - "base": "ibc/0F62E7C52BD46513934B9ED57A40870EEDC1896E55C7E3EE2598CB3D2991F0C8", + "base": "ibc/95A3EBF85755326B520448F0904E57EA7B7740F32B04D703C7DCBC7F64D15802", "denomUnits": [ { "aliases": [ - "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", ], - "denom": "ibc/0F62E7C52BD46513934B9ED57A40870EEDC1896E55C7E3EE2598CB3D2991F0C8", + "denom": "ibc/95A3EBF85755326B520448F0904E57EA7B7740F32B04D703C7DCBC7F64D15802", "exponent": 0, }, { - "denom": "allSOL", - "exponent": 9, + "denom": "MARS", + "exponent": 6, }, ], - "description": "An alloy of SOL asset variants on Osmosis.", - "display": "allSOL", - "extendedDescription": "Multiple Solana variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of SOL.", + "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis", + "display": "MARS", "images": [ { "imageSync": { - "baseDenom": "Lamport", - "chainName": "solana", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", - "theme": { - "backgroundColorHex": "#000000", - "circle": true, - }, - }, - { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", - "theme": { - "backgroundColorHex": "#00000000", - "circle": false, - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL_circle.svg", - "theme": { - "backgroundColorHex": "#00000000", - "circle": false, + "baseDenom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", + "chainName": "neutron", }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSOL.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", "theme": { - "backgroundColorHex": "#00000000", - "circle": false, + "primaryColorHex": "#ef4136", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", }, - "name": "Solana", - "symbol": "SOL", + "name": "Mars Protocol token", + "symbol": "MARS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "base_denom": "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/22F9CD5E74C6E06EACDA8C4DFF90A75CA5BFDE17CFDFC8EDB4BFAAAAE6445A70", + "base": "ibc/82668C804DBD7B3C86E7A7B97AC240937F98A8D69314BF5908AE0E8547E9C123", "denomUnits": [ { "aliases": [ - "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", + "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", ], - "denom": "ibc/22F9CD5E74C6E06EACDA8C4DFF90A75CA5BFDE17CFDFC8EDB4BFAAAAE6445A70", + "denom": "ibc/82668C804DBD7B3C86E7A7B97AC240937F98A8D69314BF5908AE0E8547E9C123", "exponent": 0, }, { - "denom": "lava", - "exponent": 6, + "denom": "ton", + "exponent": 9, }, ], - "description": "Lava Network is a modular data network designed to provide fast, reliable, and scalable access to blockchain data for developers and users.", - "display": "lava", + "description": "The native token of TON", + "display": "ton", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", + }, { "imageSync": { - "baseDenom": "ulava", - "chainName": "lava", + "baseDenom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", + "chainName": "oraichain", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", "theme": { - "primaryColorHex": "#6f043e", + "backgroundColorHex": "#0088CC", + "circle": true, + "primaryColorHex": "#0088CC", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", }, - "name": "Lava", - "symbol": "LAVA", + "name": "Toncoin (Oraichain Labs TON Bridge)", + "symbol": "TON.orai", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", + "base_denom": "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -63869,166 +66674,157 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/2D20DD64C981A43B063EC0CBE6FC4B9A1A0CBCB68DE1BA5DF2385B053E8C08F5", + "address": "osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4", + "base": "ibc/59B613078EF7798DDD5D9FB44164CE3597CE61043273F0E83212ACFDDD470E63", "denomUnits": [ { "aliases": [ - "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", + "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", ], - "denom": "ibc/2D20DD64C981A43B063EC0CBE6FC4B9A1A0CBCB68DE1BA5DF2385B053E8C08F5", + "denom": "ibc/59B613078EF7798DDD5D9FB44164CE3597CE61043273F0E83212ACFDDD470E63", "exponent": 0, }, { - "denom": "penumbra", - "exponent": 6, + "denom": "ton", + "exponent": 9, }, ], - "description": "The native token of Penumbra.", - "display": "penumbra", + "description": "An alloy of TON asset variants on Osmosis.", + "display": "ton", + "extendedDescription": "Multiple Toncoin variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of TON.", "images": [ { "imageSync": { - "baseDenom": "upenumbra", - "chainName": "penumbra", + "baseDenom": "nanoton", + "chainName": "ton", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", "theme": { + "backgroundColorHex": "#0088CC", "circle": true, - "primaryColorHex": "#c7b07f", + "primaryColorHex": "#0088CC", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.svg", + "theme": { + "primaryColorHex": "#0088CC", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/penumbra/images/um.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", }, - "name": "Penumbra", - "symbol": "UM", + "name": "Toncoin", + "symbol": "TON", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", + "base_denom": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/2AAEA8E5EBB5BEF0A9F5B3A8F2F843DA5463991F954B9731E91D9CA7B5C27A0E", + "base": "ibc/1E4C17D6DD988B7DDE356F1471F85369380BD9667A2EA6458B4C8272A10008F6", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", + "ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B", ], - "denom": "ibc/2AAEA8E5EBB5BEF0A9F5B3A8F2F843DA5463991F954B9731E91D9CA7B5C27A0E", + "denom": "ibc/1E4C17D6DD988B7DDE356F1471F85369380BD9667A2EA6458B4C8272A10008F6", "exponent": 0, }, { - "denom": "trx", - "exponent": 6, + "denom": "display_stBTC", + "exponent": 18, }, ], - "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", - "display": "trx", + "description": "stBTC is the liquid principal token of the Lorenzo protocol, designed to represent staked Bitcoin within the Babylon ecosystem. + +", + "display": "display_stBTC", "images": [ { "imageSync": { - "baseDenom": "sun", - "chainName": "tron", + "baseDenom": "stBTC", + "chainName": "lorenzo", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg", "theme": { - "backgroundColorHex": "#FF060A", - "circle": true, - "primaryColorHex": "#FF060A", + "primaryColorHex": "#133348", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lorenzo/images/stBTC.svg", }, - "name": "Tron (Router)", - "symbol": "TRX.rt", + "name": "Lorenzo stBTC", + "symbol": "stBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", + "base_denom": "ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/AF33F39487375A1A02CB829B16E2E0AF2A2EA2F9FB01FA1156B46D480C35901D", + "base": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", + "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", ], - "denom": "ibc/AF33F39487375A1A02CB829B16E2E0AF2A2EA2F9FB01FA1156B46D480C35901D", + "denom": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", "exponent": 0, }, { - "denom": "usdt", - "exponent": 6, + "denom": "BVT0", + "exponent": 18, }, ], - "description": "A synthetic version of USDT issued by Router, which can be unwrapped to USDT on several chains.", - "display": "usdt", + "description": "Banana Vault Token - Peelworks Factory II", + "display": "BVT0", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg", - "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", - }, - }, - { - "imageSync": { - "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "chainName": "ethereum", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "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/BVT0.png", "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "primaryColorHex": "#203135", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.rt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", }, - "name": "Tether USD (Ethereum via Router)", - "symbol": "USDT.eth.rt", + "name": "Peelworks Factory", + "symbol": "BVT0", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", + "base_denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64038,316 +66834,313 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/8BB183BE236D65114781542BDB8B5816788D6259761614791D49416F3BFB5C7F", + "base": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", "denomUnits": [ { "aliases": [ - "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", ], - "denom": "ibc/8BB183BE236D65114781542BDB8B5816788D6259761614791D49416F3BFB5C7F", + "denom": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", "exponent": 0, }, { - "denom": "COSMO", - "exponent": 6, + "denom": "BVT1", + "exponent": 18, }, ], - "description": "Cosmo is the best currency in the universe.", - "display": "COSMO", + "description": "Banana Vault Token - Banana Beach (🍹,🌴) II", + "display": "BVT1", "images": [ { - "imageSync": { - "baseDenom": "factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO", - "chainName": "injective", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", "theme": { - "primaryColorHex": "#343169", + "primaryColorHex": "#00bdc3", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/cosmo.png", - }, - "name": "Cosmo", - "socials": { - "twitter": "https://x.com/CosmoClub84", - "website": "https://github.com/raphaellafar/Cosmo", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", }, - "symbol": "COSMO", + "name": "Banana Beach", + "symbol": "BVT1", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "base_denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/B7ADA802AB7C5388C9C1D6264B191D03EDF887654A49ADEFDC57869D69608483", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", "denomUnits": [ { "aliases": [ - "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", ], - "denom": "ibc/B7ADA802AB7C5388C9C1D6264B191D03EDF887654A49ADEFDC57869D69608483", + "denom": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", "exponent": 0, }, { - "denom": "stBAND", - "exponent": 6, + "denom": "AVAIL", + "exponent": 18, }, ], - "display": "stBAND", + "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", + "display": "AVAIL", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", + "theme": { + "circle": false, + "primaryColorHex": "#2B80D7", + }, + }, { "imageSync": { - "baseDenom": "stuband", - "chainName": "stride", + "baseDenom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", "theme": { - "primaryColorHex": "#e40474", + "circle": false, + "primaryColorHex": "#2B80D7", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stband.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", }, - "name": "Stride Staked BAND", - "symbol": "stBAND", + "name": "Avail (Ethereum via Router)", + "symbol": "AVAIL.eth.rt", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8", - "base": "ibc/2AAFAB845FA205F94FE0A720C37D196D02F43ED195C42EA51BBDD97488B6FD6E", + "base": "ibc/18E9EE0D922CC1FF142D2292CA59A104EBBDC25458B3754A8B250F84CD904EC2", "denomUnits": [ { "aliases": [ - "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", + "ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F", ], - "denom": "ibc/2AAFAB845FA205F94FE0A720C37D196D02F43ED195C42EA51BBDD97488B6FD6E", + "denom": "ibc/18E9EE0D922CC1FF142D2292CA59A104EBBDC25458B3754A8B250F84CD904EC2", "exponent": 0, }, { - "denom": "COOK", + "denom": "eure", "exponent": 6, }, ], - "description": "COOK is the governance token for Start.Cooking, the premier token factory on Cosmos.", - "display": "COOK", + "description": "EURe is a Euro-backed stablecoin issued by Monerium.", + "display": "eure", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png", + "imageSync": { + "baseDenom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "chainName": "ethereum", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", + "theme": { + "backgroundColorHex": "#FFFFFF", + "circle": true, + "primaryColorHex": "#0095D7", + }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/COOK.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eure.svg", }, - "name": "COOK", - "symbol": "COOK", + "name": "Monerium EUR emoney", + "symbol": "EURe", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", + "base_denom": "ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x", - "base": "ibc/EE723583977670AA49DB7B8D9980C32F665B12CA2D72C0734E5ED21359C4AB1D", + "base": "ibc/A10762AC97E2AB6AD22AFDF998E39DE1DC6604103BCC40175E15F41A7E96A6AC", "denomUnits": [ { "aliases": [ - "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", + "ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E", ], - "denom": "ibc/EE723583977670AA49DB7B8D9980C32F665B12CA2D72C0734E5ED21359C4AB1D", + "denom": "ibc/A10762AC97E2AB6AD22AFDF998E39DE1DC6604103BCC40175E15F41A7E96A6AC", "exponent": 0, }, { - "denom": "trx", + "denom": "andr", "exponent": 6, }, ], - "description": "TRONIX is the mainnet native token of the TRON Protocol issued by TRON DAO, known as TRX.", - "display": "trx", + "description": "The native staking and governance token of Andromeda", + "display": "andr", "images": [ { "imageSync": { - "baseDenom": "sun", - "chainName": "tron", + "baseDenom": "uandr", + "chainName": "andromeda", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", - "theme": { - "backgroundColorHex": "#FF060A", - "circle": true, - "primaryColorHex": "#FF060A", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTRX.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", "theme": { - "backgroundColorHex": "#FF060A", - "circle": true, - "primaryColorHex": "#FF060A", + "primaryColorHex": "#040404", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/tron/images/trx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", }, - "name": "Tron", - "symbol": "TRX", + "name": "Andromeda", + "symbol": "ANDR", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", + "base_denom": "ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/0B01C1DD202C24CD572DF972CE844A5D9596203462C3E2E44349C0462C62A2FC", + "address": "osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm", + "base": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", "denomUnits": [ { "aliases": [ - "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", + "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", ], - "denom": "ibc/0B01C1DD202C24CD572DF972CE844A5D9596203462C3E2E44349C0462C62A2FC", + "denom": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", "exponent": 0, }, { - "denom": "ROUTE", - "exponent": 18, + "denom": "ckBTC", + "exponent": 8, }, ], - "description": "The native token of Router Chain", - "display": "ROUTE", + "description": "Chain-key Bitcoin bridged via Omnity Network.", + "display": "ckBTC", "images": [ { "imageSync": { - "baseDenom": "route", - "chainName": "routerchain", + "baseDenom": "uckBTC", + "chainName": "internetcomputer", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", "theme": { - "primaryColorHex": "#cb0766", + "backgroundColorHex": "#3B00B9", + "circle": true, + "primaryColorHex": "#3B00B9", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/routerchain/images/router.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", }, - "name": "Router Protocol", - "symbol": "ROUTE", + "name": "Chain-key Bitcoin", + "symbol": "ckBTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", + "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg", - "base": "ibc/3EF5559E7AA2EB0EAF23ACE2C5A5E1AE69D43D4C5E718CC869B7E4B7245E3E4B", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", "denomUnits": [ { "aliases": [ - "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", ], - "denom": "ibc/3EF5559E7AA2EB0EAF23ACE2C5A5E1AE69D43D4C5E718CC869B7E4B7245E3E4B", + "denom": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", "exponent": 0, }, { - "denom": "op", - "exponent": 12, + "denom": "fWIZ", + "exponent": 9, }, ], - "description": "An alloy of OP asset variants on Osmosis.", - "display": "op", + "description": "Fractionalized Pixel Wizards", + "display": "fWIZ", + "extendedDescription": "Fractionalized Pixel Wizards NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "0x4200000000000000000000000000000000000042", - "chainName": "optimism", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", - "theme": { - "primaryColorHex": "#fc0424", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allOP.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", "theme": { - "primaryColorHex": "#fc0424", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", }, - "name": "Optimism", - "symbol": "OP", + "name": "fWIZ", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fWIZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64357,110 +67150,105 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/5E2F9B2E069805448F9EBE198DF27559BB42C9393DDB0B18F94FAC49FDF3C8FD", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", "denomUnits": [ { "aliases": [ - "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", ], - "denom": "ibc/5E2F9B2E069805448F9EBE198DF27559BB42C9393DDB0B18F94FAC49FDF3C8FD", + "denom": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", "exponent": 0, }, { - "denom": "op", - "exponent": 18, + "denom": "fWITCH", + "exponent": 9, }, ], - "display": "op", + "description": "Fractionalized Pixel Witches", + "display": "fWITCH", + "extendedDescription": "Fractionalized Pixel Witches NFT Via Fractal.fun", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", - }, - { - "imageSync": { - "baseDenom": "op-wei", - "chainName": "axelar", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/optimism/images/op.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", "theme": { - "primaryColorHex": "#fc0424", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/op.axl.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", }, - "name": "Optimism (Axelar)", - "symbol": "OP.axl", + "name": "fWITCH", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fWITCH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a", - "base": "ibc/95F730BBBF1332BD29EE6E618775C1E3C7BF67C456CF137CE3C99B1CBCCF0800", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", "denomUnits": [ { "aliases": [ - "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", ], - "denom": "ibc/95F730BBBF1332BD29EE6E618775C1E3C7BF67C456CF137CE3C99B1CBCCF0800", + "denom": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", "exponent": 0, }, { - "denom": "shib", - "exponent": 12, + "denom": "fCRYPTONIUM", + "exponent": 9, }, ], - "description": "An alloy of SHIB asset variants on Osmosis.", - "display": "shib", + "description": "Fractionalized Cryptonium Maker", + "display": "fCRYPTONIUM", + "extendedDescription": "Fractionalized Cryptonium Maker NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "chainName": "ethereum", - }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "theme": { - "backgroundColorHex": "#00000000", - "primaryColorHex": "#FFA409", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allSHIB.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", "theme": { - "circle": true, - "primaryColorHex": "#FFA409", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", }, - "name": "Shiba Inu", - "symbol": "SHIB", + "name": "fCRYPTONIUM", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fCRYPTONIUM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64470,56 +67258,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk", - "base": "ibc/5680595ADE32CE79910194F9F6AD9B5C02D39394A0382C0E32DF5BA65442C1F9", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", "denomUnits": [ { "aliases": [ - "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", ], - "denom": "ibc/5680595ADE32CE79910194F9F6AD9B5C02D39394A0382C0E32DF5BA65442C1F9", + "denom": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", "exponent": 0, }, { - "denom": "arb", - "exponent": 12, + "denom": "fATLAS", + "exponent": 9, }, ], - "description": "An alloy of ARB asset variants on Osmosis.", - "display": "arb", + "description": "Fractionalized Atlas DAO", + "display": "fATLAS", + "extendedDescription": "Fractionalized Atlas DAO NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "0x912CE59144191C1204E64559FE8253a0e49E6548", - "chainName": "arbitrum", - }, - "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", - "theme": { - "primaryColorHex": "#253545", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allARB.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", "theme": { - "primaryColorHex": "#9DCCED", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "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/osmosis/images/fATLAS.png", }, - "name": "Arbitrum", - "symbol": "ARB", + "name": "fATLAS", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fATLAS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64529,57 +67312,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw", - "base": "ibc/B3E902F817F9A026141C562D2B19682C2FF42A23B287CAB7E489E36400968143", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", "denomUnits": [ { "aliases": [ - "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", ], - "denom": "ibc/B3E902F817F9A026141C562D2B19682C2FF42A23B287CAB7E489E36400968143", + "denom": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", "exponent": 0, }, { - "denom": "link", - "exponent": 12, + "denom": "fGECK", + "exponent": 9, }, ], - "description": "An alloy of LINK asset variants on Osmosis.", - "display": "link", + "description": "Fractionalized Geckies", + "display": "fGECK", + "extendedDescription": "Fractionalized Geckies NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "0x514910771af9ca656af840dff83e8264ecf986ca", - "chainName": "ethereum", - }, - "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", - "theme": { - "primaryColorHex": "#2c5cdc", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allLINK.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", "theme": { - "circle": true, - "primaryColorHex": "#2A5ADA", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "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/osmosis/images/fGECK.png", }, - "name": "Chainlink", - "symbol": "LINK", + "name": "fGECK", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fGECK", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64589,56 +67366,51 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx", - "base": "ibc/8FEB4158DB02C0C9174614BA16E2196227D05B318CCAF8F0EDB475C6024D8528", + "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", + "base": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", "denomUnits": [ { "aliases": [ - "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", + "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", ], - "denom": "ibc/8FEB4158DB02C0C9174614BA16E2196227D05B318CCAF8F0EDB475C6024D8528", + "denom": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", "exponent": 0, }, { - "denom": "pepe", - "exponent": 12, + "denom": "fBULLS", + "exponent": 9, }, ], - "description": "An alloy of PEPE asset variants on Osmosis.", - "display": "pepe", + "description": "Fractionalized Rekt Bulls", + "display": "fBULLS", + "extendedDescription": "Fractionalized Rekt Bulls NFT Via Fractal.fun", "images": [ { - "imageSync": { - "baseDenom": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", - "chainName": "ethereum", - }, - "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", - "theme": { - "primaryColorHex": "#cc3233", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allPEPE.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", "theme": { - "circle": true, - "primaryColorHex": "#549C44", + "primaryColorHex": "#639BFF", }, }, ], + "keywords": [ + "nft", + ], "logoURIs": { - "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/osmosis/images/fBULLS.png", }, - "name": "Pepe", - "symbol": "PEPE", + "name": "fBULLS", + "socials": { + "twitter": "https://twitter.com/fractaldotfun", + "website": "https://fractal.fun", + }, + "symbol": "fBULLS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64648,120 +67420,94 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02", - "base": "ibc/D5834AFEDFDBF0635F32B5B6D1E980CB6F73F15DAD4B34FA3E83942876BEFF15", + "base": "ibc/63B28B422B14E8A0DF752C5C1C613C4F8E9C132C6AD94EBE314440E47809EB62", "denomUnits": [ { "aliases": [ - "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", + "ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23", ], - "denom": "ibc/D5834AFEDFDBF0635F32B5B6D1E980CB6F73F15DAD4B34FA3E83942876BEFF15", + "denom": "ibc/63B28B422B14E8A0DF752C5C1C613C4F8E9C132C6AD94EBE314440E47809EB62", "exponent": 0, }, { - "denom": "dot", - "exponent": 10, + "denom": "SIN", + "exponent": 6, }, ], - "description": "An alloy of DOT asset variants on Osmosis.", - "display": "dot", + "description": "SinGarden token", + "display": "SIN", "images": [ { "imageSync": { - "baseDenom": "Planck", - "chainName": "polkadot", - }, - "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", - "theme": { - "primaryColorHex": "#e4047c", - }, - }, - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allDOT.svg", - "theme": { - "circle": true, - "primaryColorHex": "#E6007A", - }, - }, - { - "imageSync": { - "baseDenom": "Planck", - "chainName": "polkadot", + "baseDenom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin", + "chainName": "neutron", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", "theme": { - "primaryColorHex": "#e4047c", + "primaryColorHex": "#ebf0f4", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/sin.png", }, - "name": "Polkadot", - "symbol": "DOT", + "name": "SIN", + "symbol": "SIN", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", + "base_denom": "ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/871377FCB41D5376CE03E1E5A62EE70A477CDDB4C215828D38E7F3B1618DDD20", + "base": "ibc/AFD60AE4F9038EABC06DD784A5954A141406CCFD0E3AC784D581621207978EF1", "denomUnits": [ { "aliases": [ - "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", + "ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71", ], - "denom": "ibc/871377FCB41D5376CE03E1E5A62EE70A477CDDB4C215828D38E7F3B1618DDD20", + "denom": "ibc/AFD60AE4F9038EABC06DD784A5954A141406CCFD0E3AC784D581621207978EF1", "exponent": 0, }, { - "denom": "unicorn", + "denom": "KIMA", "exponent": 6, }, ], - "description": "Unicorn from Solana via Picasso IBC", - "display": "unicorn", + "description": "Kima is an asset-agnostic interoperability infrastructure that connects blockchain networks and legacy financial systems, enabling secure, scalable cross-chain transactions and seamless communication across ecosystems.", + "display": "KIMA", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png", - }, { "imageSync": { - "baseDenom": "ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1", - "chainName": "composable", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/unicorn/images/uwu.png", - "theme": { - "primaryColorHex": "#D44CE6", + "baseDenom": "uKIMA", + "chainName": "kimanetwork", }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/UWU.pica.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kimanetwork/images/kima.svg", }, - "name": "Unicorn (Picasso)", - "symbol": "UWU.pica", + "name": "Kima Network", + "symbol": "KIMA", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", + "base_denom": "ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64771,49 +67517,52 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/D70055259A984EB0C21CA4F1C765F863C215A3EF9D837B85E5B172A9CCEB66EA", + "base": "ibc/F80603C85D5DD5BAEBE7CC832D54C7825DEA8B38A79FE2C35EE4CDECB76F4199", "denomUnits": [ { "aliases": [ - "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", + "ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C", ], - "denom": "ibc/D70055259A984EB0C21CA4F1C765F863C215A3EF9D837B85E5B172A9CCEB66EA", + "denom": "ibc/F80603C85D5DD5BAEBE7CC832D54C7825DEA8B38A79FE2C35EE4CDECB76F4199", "exponent": 0, }, { - "denom": "DEEN", - "exponent": 6, + "denom": "gwei", + "exponent": 9, + }, + { + "denom": "stos", + "exponent": 18, }, ], - "description": "Deenar gold-backed stablecoin", - "display": "DEEN", + "description": "STOS coin is the native token for the Stratos Blockchain. Stratos is a pioneering decentralized infrastructure service provider, revolutionizing AI and DePIN with advanced decentralized solutions in storage, computing, databases, and blockchain services. We empower Web 3.0 developpers and dApps through our scalable, reliable, and high-performance networks.", + "display": "stos", "images": [ { "imageSync": { - "baseDenom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", - "chainName": "haqq", + "baseDenom": "wei", + "chainName": "stratos", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", "theme": { - "circle": true, - "primaryColorHex": "#ffbc05", + "primaryColorHex": "#04847c", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/deen.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stratos/images/stratos.svg", }, - "name": "Deenar", - "symbol": "DEEN", + "name": "Stratos", + "symbol": "STOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", + "base_denom": "ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64823,93 +67572,98 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/F204F44BBC3A5DAD5EC297E949EACCAD463312D7E654AE82C1B26CD6A7B4F6DC", + "base": "ibc/0A0ED953B6D389834CB47B640DD669F45269C3393264D4EEEDA92BB5CA8102B7", "denomUnits": [ { "aliases": [ - "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", + "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", ], - "denom": "ibc/F204F44BBC3A5DAD5EC297E949EACCAD463312D7E654AE82C1B26CD6A7B4F6DC", + "denom": "ibc/0A0ED953B6D389834CB47B640DD669F45269C3393264D4EEEDA92BB5CA8102B7", "exponent": 0, }, { - "denom": "CosmoUSD", - "exponent": 6, + "denom": "uni", + "exponent": 18, }, ], - "description": "CosmoUSD", - "display": "CosmoUSD", - "extendedDescription": "Community loyalty points.", + "description": "Uniswap UNI on Osmosis via Axelar", + "display": "uni", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.svg", "theme": { - "primaryColorHex": "#343169", + "primaryColorHex": "#FF007A", + }, + }, + { + "imageSync": { + "baseDenom": "uni-wei", + "chainName": "axelar", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CosmoUSD.png", - }, - "name": "CosmoUSD", - "socials": { - "twitter": "https://x.com/CosmoClub84", - "website": "https://github.com/raphaellafar/Cosmo", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.svg", }, - "symbol": "COSMOUSD", + "name": "Uniswap (Axelar)", + "symbol": "UNI.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd", + "base_denom": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl", - "base": "ibc/0D43595F28C2EB0B4EF4FF0F35BF06873739D0BC9EF005B5868B6D95B813BF76", + "address": "osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8", + "base": "ibc/946EA961850E919BEF67C9B8A7034C734CABC3E6427B586CD56D5A0EC6C81C5E", "denomUnits": [ { "aliases": [ - "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI", ], - "denom": "ibc/0D43595F28C2EB0B4EF4FF0F35BF06873739D0BC9EF005B5868B6D95B813BF76", + "denom": "ibc/946EA961850E919BEF67C9B8A7034C734CABC3E6427B586CD56D5A0EC6C81C5E", "exponent": 0, }, { - "denom": "XTRUMP", - "exponent": 6, + "denom": "allUNI", + "exponent": 12, }, ], - "description": "The Representative factory token for Trump Kemistry", - "display": "XTRUMP", + "description": "An alloy of UNI asset variants on Osmosis.", + "display": "allUNI", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", - "theme": { - "primaryColorHex": "#b02b27", + "imageSync": { + "baseDenom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", + "chainName": "ethereum", }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/XTRUMP.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", }, - "name": "XTRUMP", - "symbol": "XTRUMP", + "name": "Uniswap", + "symbol": "UNI", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP", + "base_denom": "factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64919,54 +67673,45 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/5EECE0570FC66380322EDA21AF1CC453345B5A1656AFACC6789F50F4002E8A05", + "base": "ibc/BF2FD0F016CB9B8421A98230822ADFC5156870AFEAE31CBC529FC236869990CB", "denomUnits": [ { "aliases": [ - "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453", ], - "denom": "ibc/5EECE0570FC66380322EDA21AF1CC453345B5A1656AFACC6789F50F4002E8A05", + "denom": "ibc/BF2FD0F016CB9B8421A98230822ADFC5156870AFEAE31CBC529FC236869990CB", "exponent": 0, }, { - "denom": "usdt", + "denom": "lp:8:osmo", "exponent": 6, }, ], - "description": "Tether USDt from Ethereum via Peggy bridge.", - "display": "usdt", + "description": "Pryzm's LP token for OSMO Yield pool", + "display": "lp:8:osmo", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", - }, { "imageSync": { - "baseDenom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chainName": "injective", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "theme": { - "backgroundColorHex": "#009393", - "circle": true, - "primaryColorHex": "#009393", + "baseDenom": "lp:8:uosmo", + "chainName": "pryzm", }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg", }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.inj.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/lp.svg", }, - "name": "Tether USD (Ethereum) (Injective)", - "symbol": "USDT.eth.inj", + "name": "OSMO Yield LP", + "symbol": "OSMO-YIELD-LP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "base_denom": "ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -64976,264 +67721,262 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/93F5FF64320EA71BE21DA92248C4D20A48766F927DC78B67416CAE07569ADDFB", + "base": "ibc/16551CFB14F1608C8EB0B111F56A884D873832F8E35C32DE747575687E9E4B53", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", + "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", ], - "denom": "ibc/93F5FF64320EA71BE21DA92248C4D20A48766F927DC78B67416CAE07569ADDFB", + "denom": "ibc/16551CFB14F1608C8EB0B111F56A884D873832F8E35C32DE747575687E9E4B53", "exponent": 0, }, { - "denom": "fBAD", - "exponent": 9, + "denom": "int3", + "exponent": 6, }, ], - "description": "Fractionalized Bad Kids", - "display": "fBAD", - "extendedDescription": "Fractionalized Bad Kids NFT Via Fractal.fun", + "description": "Int3face blockchain native token", + "display": "int3", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png", + "imageSync": { + "baseDenom": "uint3", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBAD.png", - }, - "name": "fBAD", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3.png", }, - "symbol": "fBAD", + "name": "Int3face", + "symbol": "INT3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", + "base_denom": "ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/D7ED4503020575D1D7A74D1CD9737BE93350A84A3233184CB0959C264F124E7B", + "base": "ibc/7D5EE1C16693019176D51D19A4C371D001CA57B42A774A7051A48B8CBB419DF0", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", + "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", ], - "denom": "ibc/D7ED4503020575D1D7A74D1CD9737BE93350A84A3233184CB0959C264F124E7B", + "denom": "ibc/7D5EE1C16693019176D51D19A4C371D001CA57B42A774A7051A48B8CBB419DF0", "exponent": 0, }, { - "denom": "fMAD", - "exponent": 9, + "denom": "doge", + "exponent": 8, }, ], - "description": "Fractionalized Mad Scientists", - "display": "fMAD", - "extendedDescription": "Fractionalized Mad Scientists NFT Via Fractal.fun", + "description": "Dogecoin on Int3face", + "display": "doge", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg", + }, + { + "imageSync": { + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3doge.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fMAD.png", - }, - "name": "fMAD", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.svg", }, - "symbol": "fMAD", + "name": "Dogecoin (Int3)", + "symbol": "DOGE.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", + "base_denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/922DAD3BFC1B08FA7DD23F77DDAC53DAEA3762E2F3D76FC03691167003D2F37D", + "base": "ibc/B0EFF2C744022C1822959931496E30522529DF755C608B8BC3AAA5FDBC9B8E97", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", + "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", ], - "denom": "ibc/922DAD3BFC1B08FA7DD23F77DDAC53DAEA3762E2F3D76FC03691167003D2F37D", + "denom": "ibc/B0EFF2C744022C1822959931496E30522529DF755C608B8BC3AAA5FDBC9B8E97", "exponent": 0, }, { - "denom": "fSLOTH", - "exponent": 9, + "denom": "btc", + "exponent": 8, }, ], - "description": "Fractionalized Celestine Sloth Society", - "display": "fSLOTH", - "extendedDescription": "Fractionalized Celestine Sloth Society NFT Via Fractal.fun", + "description": "Bitcoin on Int3face", + "display": "btc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg", + }, + { + "imageSync": { + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3btc.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fSLOTH.png", - }, - "name": "fSLOTH", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.svg", }, - "symbol": "fSLOTH", + "name": "Bitcoin (Int3)", + "symbol": "BTC.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", + "base_denom": "ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/4B9C5A61F256AA832C4051672AFC76727E0B08A0DCFEDB8DF1E5AA1F3DEED217", + "base": "ibc/8E9CF1F990B3BC14005B258EC6D7F0948D4CA16B53D4BDF7C79D9831A05AB393", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", + "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", ], - "denom": "ibc/4B9C5A61F256AA832C4051672AFC76727E0B08A0DCFEDB8DF1E5AA1F3DEED217", + "denom": "ibc/8E9CF1F990B3BC14005B258EC6D7F0948D4CA16B53D4BDF7C79D9831A05AB393", "exponent": 0, }, { - "denom": "fNUT", - "exponent": 9, + "denom": "bch", + "exponent": 8, }, ], - "description": "Fractionalized DAONuts", - "display": "fNUT", - "extendedDescription": "Fractionalized DAONuts NFT Via Fractal.fun", + "description": "Bitcoin-Cash on Int3face", + "display": "bch", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg", + }, + { + "imageSync": { + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch", + "chainName": "int3face", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3bch.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#3d3d3d", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fNUT.png", - }, - "name": "fNUT", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.svg", }, - "symbol": "fNUT", + "name": "Bitcoin Cash (Int3)", + "symbol": "BCH.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", + "base_denom": "ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/95A3EBF85755326B520448F0904E57EA7B7740F32B04D703C7DCBC7F64D15802", + "base": "ibc/77FDA29C85E570E9EFA6EDC37C94C40C66830A8983386C305F4F4F6EDCF3FF03", "denomUnits": [ { "aliases": [ - "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", + "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", ], - "denom": "ibc/95A3EBF85755326B520448F0904E57EA7B7740F32B04D703C7DCBC7F64D15802", + "denom": "ibc/77FDA29C85E570E9EFA6EDC37C94C40C66830A8983386C305F4F4F6EDCF3FF03", "exponent": 0, }, { - "denom": "MARS", - "exponent": 6, + "denom": "ltc", + "exponent": 8, }, ], - "description": "Mars Protocol is a cross-collateralized Money Market Protocol on Neutron and Osmosis", - "display": "MARS", + "description": "Litecoin on Int3face", + "display": "ltc", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg", + }, { "imageSync": { - "baseDenom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", - "chainName": "neutron", + "baseDenom": "factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc", + "chainName": "int3face", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/int3ltc.png", "theme": { - "primaryColorHex": "#ef4136", + "primaryColorHex": "#3d3d3d", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/mars-token.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.svg", }, - "name": "Mars Protocol token", - "symbol": "MARS", + "name": "Litecoin (Int3)", + "symbol": "LTC.int3", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", + "base_denom": "ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65243,54 +67986,50 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/82668C804DBD7B3C86E7A7B97AC240937F98A8D69314BF5908AE0E8547E9C123", + "base": "ibc/059A3E9B117CE7E2F136CB4CAB4890471CAD2575C7CDC270296163B2B37F3271", "denomUnits": [ { "aliases": [ - "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", + "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", ], - "denom": "ibc/82668C804DBD7B3C86E7A7B97AC240937F98A8D69314BF5908AE0E8547E9C123", + "denom": "ibc/059A3E9B117CE7E2F136CB4CAB4890471CAD2575C7CDC270296163B2B37F3271", "exponent": 0, }, { - "denom": "ton", - "exponent": 9, + "denom": "usdt", + "exponent": 6, }, ], - "description": "The native token of TON", - "display": "ton", + "description": "Tether's USD stablecoin from Arbitrum on Axelar", + "display": "usdt", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.arb.axl.svg", }, { "imageSync": { - "baseDenom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", - "chainName": "oraichain", + "baseDenom": "arbitrum-uusdt", + "chainName": "axelar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.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", "theme": { - "backgroundColorHex": "#0088CC", - "circle": true, - "primaryColorHex": "#0088CC", + "primaryColorHex": "#54ac94", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ton.orai.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.arb.axl.svg", }, - "name": "TON (The Open Network) (Oraichain)", - "symbol": "TON.orai", + "name": "Tether USD (Ethereum) (Arbitrum via Axelar)", + "symbol": "USDT.e.arb.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", + "base_denom": "ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65300,114 +68039,103 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "address": "osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4", - "base": "ibc/59B613078EF7798DDD5D9FB44164CE3597CE61043273F0E83212ACFDDD470E63", + "base": "ibc/F0975FF3AFBAA1C719385D5DA632960420E03E0067C3560FBD8F98ECA7644E49", "denomUnits": [ { "aliases": [ - "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", + "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", ], - "denom": "ibc/59B613078EF7798DDD5D9FB44164CE3597CE61043273F0E83212ACFDDD470E63", + "denom": "ibc/F0975FF3AFBAA1C719385D5DA632960420E03E0067C3560FBD8F98ECA7644E49", "exponent": 0, }, { - "denom": "ton", - "exponent": 9, + "denom": "usdt", + "exponent": 6, }, ], - "description": "An alloy of TON asset variants on Osmosis.", - "display": "ton", - "extendedDescription": "Multiple Toncoin variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of TON.", + "description": "Tether's USD stablecoin from Optimism on Axelar", + "display": "usdt", "images": [ { - "imageSync": { - "baseDenom": "nanoton", - "chainName": "ton", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", - "theme": { - "backgroundColorHex": "#0088CC", - "circle": true, - "primaryColorHex": "#0088CC", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.op.axl.svg", }, { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allTON.svg", + "imageSync": { + "baseDenom": "optimism-uusdt", + "chainName": "axelar", + }, + "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", "theme": { - "primaryColorHex": "#0088CC", + "primaryColorHex": "#54ac94", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/ton.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.op.axl.svg", }, - "name": "TON (The Open Network)", - "symbol": "TON", + "name": "Tether USD (Ethereum) (optimism via Axelar)", + "symbol": "USDT.e.op.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", + "base_denom": "ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "base": "ibc/C8E12342B937F5A7FCCA9D1005D8AB543A232A782BB1C32024EC1445E1688A8B", "denomUnits": [ { "aliases": [ - "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", ], - "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", + "denom": "ibc/C8E12342B937F5A7FCCA9D1005D8AB543A232A782BB1C32024EC1445E1688A8B", "exponent": 0, }, { - "denom": "fury", + "denom": "usdt", "exponent": 6, }, ], - "description": "The native token of Furya", - "display": "fury", + "description": "Tether's USD stablecoin from Polygon on Axelar", + "display": "usdt", "images": [ + { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pol.axl.svg", + }, { "imageSync": { - "baseDenom": "ufury", - "chainName": "furya", + "baseDenom": "polygon-uusdt", + "chainName": "axelar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.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", "theme": { - "primaryColorHex": "#040404", + "primaryColorHex": "#54ac94", }, }, ], - "keywords": [ - "gaming", - "staking", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pol.axl.svg", }, - "name": "furya", - "symbol": "FURY", + "name": "Tether USD (Ethereum) (Polygon via Axelar)", + "symbol": "USDT.e.matic.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", + "base_denom": "ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65417,45 +68145,53 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "base": "ibc/48F6CA0E513163AF1B1C22C816B3A97DA97E7F8314B18FCB24035072E75D3650", "denomUnits": [ { "aliases": [ - "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", ], - "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", + "denom": "ibc/48F6CA0E513163AF1B1C22C816B3A97DA97E7F8314B18FCB24035072E75D3650", "exponent": 0, }, { - "denom": "PUNDIX", - "exponent": 18, + "denom": "cbbtc", + "exponent": 8, }, ], - "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", - "display": "PUNDIX", + "description": "Coinbase Wrapped Bitcoin on Axelar", + "display": "cbbtc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.svg", + }, + { + "imageSync": { + "baseDenom": "cbbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/base/images/cbbtc.svg", "theme": { - "primaryColorHex": "#f1d20c", + "circle": true, + "primaryColorHex": "#0052FF", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/cbbtc.axl.svg", }, - "name": "Pundi X Token", - "symbol": "PUNDIX", + "name": "Coinbase Wrapped BTC (Axelar)", + "symbol": "cbBTC.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", + "base_denom": "ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65465,51 +68201,54 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "base": "ibc/D111F2A2ED2A12D5080A21466180E9EBD44B70281C249AAEEA36A186B41F757F", "denomUnits": [ { "aliases": [ - "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", ], - "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", + "denom": "ibc/D111F2A2ED2A12D5080A21466180E9EBD44B70281C249AAEEA36A186B41F757F", "exponent": 0, }, { - "denom": "dhp", - "exponent": 6, + "denom": "fbtc", + "exponent": 8, }, ], - "description": "The native token of dHealth", - "display": "dhp", + "description": "Fire Bitcoin on Axelar", + "display": "fbtc", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.svg", + }, { "imageSync": { - "baseDenom": "udhp", - "chainName": "dhealth", + "baseDenom": "fbtc-satoshi", + "chainName": "axelar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/mantle/images/fbtc.svg", "theme": { - "primaryColorHex": "#140c7c", + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#8F00FF", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fbtc.axl.svg", }, - "name": "dHealth", - "symbol": "DHP", + "name": "Fire Bitcoin (Axelar)", + "symbol": "FBTC.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", + "base_denom": "ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65519,51 +68258,53 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "base": "ibc/CF08E32389D349DFA2DBBD511DB8E29A35A8E6525C455FD2BA7682734EA5AC03", "denomUnits": [ { "aliases": [ - "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", ], - "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", + "denom": "ibc/CF08E32389D349DFA2DBBD511DB8E29A35A8E6525C455FD2BA7682734EA5AC03", "exponent": 0, }, { - "denom": "SHIDO", - "exponent": 18, + "denom": "lbtc", + "exponent": 8, }, ], - "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", - "display": "SHIDO", + "description": "Lombard Staked Bitcoin on Axelar", + "display": "lbtc", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.svg", + }, { "imageSync": { - "baseDenom": "shido", - "chainName": "shido", + "baseDenom": "lbtc-satoshi", + "chainName": "axelar", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/lbtc.svg", "theme": { - "primaryColorHex": "#046ffc", + "circle": true, + "primaryColorHex": "#162E2F", }, }, ], - "keywords": [ - "osmosis_unlisted", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/lbtc.axl.svg", }, - "name": "Shido", - "symbol": "SHIDO", + "name": "Lombard Staked Bitcoin (Axelar)", + "symbol": "LBTC.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "base_denom": "ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65573,186 +68314,211 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", + "base": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", "denomUnits": [ { "aliases": [ - "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", ], - "denom": "ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952", + "denom": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", "exponent": 0, }, { - "denom": "nstk", - "exponent": 6, + "denom": "rbtc", + "exponent": 18, }, ], - "description": "The Revenue & Governance token of Unstake.fi", - "display": "nstk", + "description": "Roostock BTC bridged via Router.", + "display": "rbtc", "images": [ + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.svg", + }, { "imageSync": { - "baseDenom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "chainName": "kujira", + "baseDenom": "sat", + "chainName": "rootstock", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "theme": { + "backgroundColorHex": "#00000000", + "circle": false, + "primaryColorHex": "#FF9931", }, - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/rbtc.rt.svg", }, - "name": "Unstake Fi", - "symbol": "NSTK", + "name": "Rootstock (Router)", + "symbol": "RBTC.rt", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", + "address": "osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40", + "base": "ibc/A053EE6F53F29209DFA7C0B0A5DF53A0155A0B0CB08747DA60C87C8AEB1186E6", "denomUnits": [ { "aliases": [ - "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE", ], - "denom": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", + "denom": "ibc/A053EE6F53F29209DFA7C0B0A5DF53A0155A0B0CB08747DA60C87C8AEB1186E6", "exponent": 0, }, { - "denom": "avalanche-usdc", - "exponent": 6, + "denom": "allDOGE", + "exponent": 8, }, ], - "display": "avalanche-usdc", + "description": "An alloy of DOGE asset variants on Osmosis.", + "display": "allDOGE", "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", + "imageSync": { + "baseDenom": "shibe", + "chainName": "dogecoin", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png", "theme": { - "primaryColorHex": "#2474cb", + "primaryColorHex": "#bda148", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/dogecoin/images/doge.png", }, - "name": "Wormhole USDC(Avalanche)", - "symbol": "avalanche.USDC.wh", + "name": "Dogecoin", + "symbol": "DOGE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", + "base_denom": "factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "base": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", + "address": "osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v", + "base": "ibc/91DA8B3EBC6DF0A5FB69CC8770EFBFF97C81A09EDB0DC50F8F44BCB39CBFB31E", "denomUnits": [ { "aliases": [ - "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC", ], - "denom": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", + "denom": "ibc/91DA8B3EBC6DF0A5FB69CC8770EFBFF97C81A09EDB0DC50F8F44BCB39CBFB31E", "exponent": 0, }, { - "denom": "nom", - "exponent": 6, + "denom": "allLTC", + "exponent": 8, }, ], - "description": "Nomic's native token.", - "display": "nom", + "description": "An alloy of LTC asset variants on Osmosis.", + "display": "allLTC", "images": [ { "imageSync": { - "baseDenom": "unom", - "chainName": "nomic", + "baseDenom": "litoshi", + "chainName": "litecoin", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.svg", "theme": { - "primaryColorHex": "#6404fc", + "circle": true, + "primaryColorHex": "#345D9D", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/litecoin/images/ltc.svg", }, - "name": "Nomic", - "symbol": "nomic.NOM", + "name": "Litecoin", + "symbol": "LTC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", + "base_denom": "factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "ics20", + "typeAsset": "sdk.coin", }, { - "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", - "base": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", + "address": "osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz", + "base": "ibc/029EBB9C431CCE18275AAECD49D7A9C0E7AA1485AF7F56EF9C6BCD68E545EAF5", "denomUnits": [ { "aliases": [ - "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH", ], - "denom": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", + "denom": "ibc/029EBB9C431CCE18275AAECD49D7A9C0E7AA1485AF7F56EF9C6BCD68E545EAF5", "exponent": 0, }, { - "denom": "ymos", - "exponent": 6, + "denom": "allBCH", + "exponent": 8, }, ], - "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", - "display": "ymos", + "description": "An alloy of BCH asset variants on Osmosis.", + "display": "allBCH", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "imageSync": { + "baseDenom": "sat", + "chainName": "bitcoincash", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.svg", "theme": { - "primaryColorHex": "#2c3554", + "circle": true, + "primaryColorHex": "#0AC18E", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoincash/images/bch.svg", }, - "name": "Yieldmos Coin", - "symbol": "YMOS", + "name": "Bitcoin Cash", + "symbol": "BCH", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "base_denom": "factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65762,131 +68528,170 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "base": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", + "base": "ibc/0C50CA8D0B204D52BB4957FE6D1C8B13D3FC35AAEEACCEF48C95E475CE020E03", "denomUnits": [ { "aliases": [ - "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", ], - "denom": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", + "denom": "ibc/0C50CA8D0B204D52BB4957FE6D1C8B13D3FC35AAEEACCEF48C95E475CE020E03", "exponent": 0, }, + { + "denom": "om", + "exponent": 6, + }, ], - "description": "Memecoin for The International Brane Wave", - "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "description": "The native token of MANTRA", + "display": "om", "images": [ { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", + "imageSync": { + "baseDenom": "uom", + "chainName": "mantrachain", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", + "theme": { + "circle": true, + "primaryColorHex": "#fba0c1", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Darkmatt.svg", + "theme": { + "circle": true, + "darkMode": true, + "primaryColorHex": "#342c2c", + }, + }, + { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-WHT.svg", + "theme": { + "circle": true, + "darkMode": false, + "primaryColorHex": "#342c2c", + }, }, ], "logoURIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg", }, - "name": "Branez", - "symbol": "BRNZ", + "name": "MANTRA", + "symbol": "OM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "base_denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", - "base": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", + "base": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "denomUnits": [ { "aliases": [ - "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", ], - "denom": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", + "denom": "ibc/249C5D3CD121E9618CF7A886DD945CB40BAB6D50D3850FF3463516DEEC98BCF9", "exponent": 0, }, { - "denom": "ashLAB", + "denom": "fury", "exponent": 6, }, ], - "description": "ashLAB - Burned LAB", - "display": "ashLAB", - "extendedDescription": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", + "description": "The native token of Furya", + "display": "fury", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", + "imageSync": { + "baseDenom": "ufury", + "chainName": "furya", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", "theme": { - "primaryColorHex": "#ebb093", + "primaryColorHex": "#040404", }, }, ], + "keywords": [ + "gaming", + "staking", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg", }, - "name": "Burned LAB", - "symbol": "ashLAB", + "name": "furya", + "symbol": "FURY", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", + "base_denom": "ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", + "base": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "denomUnits": [ { "aliases": [ - "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", ], - "denom": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", + "denom": "ibc/A72902875BDC1E50364706018E149B95804F64A5DCDD36A66B9769231181F67E", "exponent": 0, }, { - "denom": "grac", - "exponent": 6, + "denom": "PUNDIX", + "exponent": 18, }, ], - "description": "GRAC is the official token of Racoon.Bet's gaming platform.", - "display": "grac", + "description": "PUNDIX token is the native token that functions within the Pundi X ecosystem, including PundiX Chain and XPOS.", + "display": "PUNDIX", "images": [ { - "imageSync": { - "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", - "chainName": "migaloo", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", "theme": { - "primaryColorHex": "#f5bf09", + "primaryColorHex": "#f1d20c", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pundix.png", }, - "name": "Gaming RAC Token", - "symbol": "GRAC", + "name": "Pundi X Token", + "symbol": "PUNDIX", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", + "base_denom": "ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -65896,232 +68701,248 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "ics20", }, { - "base": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", + "base": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "denomUnits": [ { "aliases": [ - "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", ], - "denom": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", + "denom": "ibc/E4199C648681AF8233F3B8E4AB9DCC4403C0FDB1902FFCBA2B76AA4D6A72E698", "exponent": 0, }, { - "denom": "loopedUSDCmars", + "denom": "dhp", "exponent": 6, }, ], - "description": "USDC supplied on Mars looped using Membrane by a vault", - "display": "loopedUSDCmars", - "name": "Mars Looped USDC", - "symbol": "loopedUSDCmars", + "description": "The native token of dHealth", + "display": "dhp", + "images": [ + { + "imageSync": { + "baseDenom": "udhp", + "chainName": "dhealth", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + "theme": { + "primaryColorHex": "#140c7c", + }, + }, + ], + "keywords": [ + "osmosis_unlisted", + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dhealth/images/dhp.svg", + }, + "name": "dHealth", + "symbol": "DHP", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", + "base_denom": "ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", + "base": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "denomUnits": [ { "aliases": [ - "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", ], - "denom": "ibc/C09C83AA656397CA5DE9F46648222AE5DC2B666BFD9384E2AD5612FE6F9DCF90", + "denom": "ibc/4A91E2AF676E1A5CD8EB48476EFD5BFDB72154BD6C720AD0B5CB0C9A7CA60836", "exponent": 0, }, { - "denom": "BVT0", + "denom": "SHIDO", "exponent": 18, }, ], - "description": "Banana Vault Token - Peelworks Factory II", - "display": "BVT0", + "description": "The native EVM and Wasm, governance and staking token of the Shido Chain", + "display": "SHIDO", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", + "imageSync": { + "baseDenom": "shido", + "chainName": "shido", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", "theme": { - "primaryColorHex": "#203135", + "primaryColorHex": "#046ffc", }, }, ], + "keywords": [ + "osmosis_unlisted", + ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT0.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shido/images/shido.svg", }, - "name": "Peelworks Factory", - "symbol": "BVT0", + "name": "Shido", + "symbol": "SHIDO", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", + "base_denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "base": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", + "base": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", "denomUnits": [ { "aliases": [ - "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", ], - "denom": "ibc/CB935558BC12E403065245C4C274F3FE144BA199557735E5BC4DEBBCBE6E603B", + "denom": "ibc/BE1753945019C7A20FEDFE83904D350E9D580F8026B028B9373EFB6ADDBE5437", "exponent": 0, }, { - "denom": "BVT1", - "exponent": 18, + "denom": "avalanche-usdc", + "exponent": 6, }, ], - "description": "Banana Vault Token - Banana Beach (🍹,🌴) II", - "display": "BVT1", + "display": "avalanche-usdc", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", + "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", "theme": { - "primaryColorHex": "#00bdc3", + "primaryColorHex": "#2474cb", }, }, ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BVT1.png", + "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", }, - "name": "Banana Beach", - "symbol": "BVT1", + "name": "Wormhole USDC(Avalanche)", + "symbol": "avalanche.USDC.wh", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", + "base_denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", + "base": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", ], - "denom": "ibc/D32AF0F080451541643693FB248A7D2D63D39476C5C5FE4B74390FEC09A6773C", + "denom": "ibc/3C82DFEED96509056AF414E36FA2EE151778B07D1DBBE4C851887FF5705C3CB6", "exponent": 0, }, { - "denom": "AVAIL", - "exponent": 18, + "denom": "nom", + "exponent": 6, }, ], - "description": "Avail is a web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.", - "display": "AVAIL", + "description": "Nomic's native token.", + "display": "nom", "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avail.eth.rt.svg", - "theme": { - "circle": false, - "primaryColorHex": "#2B80D7", - }, - }, { "imageSync": { - "baseDenom": "0xEeB4d8400AEefafC1B2953e0094134A887C76Bd8", - "chainName": "ethereum", + "baseDenom": "unom", + "chainName": "nomic", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avail/images/avail.svg", + "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", "theme": { - "circle": false, - "primaryColorHex": "#2B80D7", + "primaryColorHex": "#6404fc", }, }, ], - "name": "Avail", - "symbol": "AVAIL", + "logoURIs": { + "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", + }, + "name": "Nomic", + "symbol": "nomic.NOM", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", + "base_denom": "ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", + "address": "osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy", + "base": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", ], - "denom": "ibc/FE60541A436EBAC0D0DD7C22313F2623CE21607B6291C8F8AA848F72B718B8E7", + "denom": "ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124", "exponent": 0, }, { - "denom": "fWIZ", - "exponent": 9, + "denom": "ymos", + "exponent": 6, }, ], - "description": "Fractionalized Pixel Wizards", - "display": "fWIZ", - "extendedDescription": "Fractionalized Pixel Wizards NFT Via Fractal.fun", + "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", + "display": "ymos", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#2c3554", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWIZ.png", - }, - "name": "fWIZ", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", }, - "symbol": "fWIZ", + "name": "Yieldmos Coin", + "symbol": "YMOS", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", + "base_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66131,51 +68952,35 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", + "base": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", ], - "denom": "ibc/7970560755FCFD60864D0D0CBB5B6ADD46786964CEEE998BCFD160FA1BE79BE7", + "denom": "ibc/3D11F0870362DAF215A6F4D64C8B05DF01817C508EB72FB404C02F06181D99DF", "exponent": 0, }, - { - "denom": "fWITCH", - "exponent": 9, - }, ], - "description": "Fractionalized Pixel Witches", - "display": "fWITCH", - "extendedDescription": "Fractionalized Pixel Witches NFT Via Fractal.fun", + "description": "Memecoin for The International Brane Wave", + "display": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", - "theme": { - "primaryColorHex": "#639BFF", - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fWITCH.png", - }, - "name": "fWITCH", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", }, - "symbol": "fWITCH", + "name": "Branez", + "symbol": "BRNZ", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", + "base_denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66185,51 +68990,44 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", + "address": "osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07", + "base": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", ], - "denom": "ibc/11B6818667849A5A8CCB34EAE124E5C0E6BDE805259C7438A8847BF30673FFC2", + "denom": "ibc/93827E8F3D1FBDE94CF433D641A83113D688C331971FBFC60B73AC04AB052233", "exponent": 0, }, { - "denom": "fCRYPTONIUM", - "exponent": 9, + "denom": "ashLAB", + "exponent": 6, }, ], - "description": "Fractionalized Cryptonium Maker", - "display": "fCRYPTONIUM", - "extendedDescription": "Fractionalized Cryptonium Maker NFT Via Fractal.fun", + "description": "ashLAB - Burned LAB", + "display": "ashLAB", + "extendedDescription": "ashLAB - receipt token recieved when burning LAB via ASH DAOs Furnace", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#ebb093", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fCRYPTONIUM.png", - }, - "name": "fCRYPTONIUM", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ashLAB.png", }, - "symbol": "fCRYPTONIUM", + "name": "Burned LAB", + "symbol": "ashLAB", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", + "base_denom": "factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66239,105 +69037,80 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", + "base": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", ], - "denom": "ibc/1C4DC3C1609F75A4E8140017EB1FB126FAF09FEDC6E0A66AD58A4B3C08F12997", + "denom": "ibc/84E07EC33ED21681CD5DC51AD95C0578D4322BD32252DAFB0205DB9347178C0E", "exponent": 0, }, { - "denom": "fGECK", - "exponent": 9, + "denom": "grac", + "exponent": 6, }, ], - "description": "Fractionalized Geckies", - "display": "fGECK", - "extendedDescription": "Fractionalized Geckies NFT Via Fractal.fun", + "description": "GRAC is the official token of Racoon.Bet's gaming platform.", + "display": "grac", "images": [ { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", + "imageSync": { + "baseDenom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac", + "chainName": "migaloo", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", "theme": { - "primaryColorHex": "#639BFF", + "primaryColorHex": "#f5bf09", }, }, ], - "keywords": [ - "nft", - ], "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fGECK.png", - }, - "name": "fGECK", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/grac.png", }, - "symbol": "fGECK", + "name": "Gaming RAC Token", + "symbol": "GRAC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", + "base_denom": "ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", + "base": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", ], - "denom": "ibc/A68E7B3679B0D96F89C82B1B18A1D0A35546418A354726F62612CAE94250E7CA", + "denom": "ibc/316ED9FFC7D22242ED6AEE25D9076370F1D13CF79E1DEA831CF4E23DE32494D1", "exponent": 0, }, { - "denom": "fATLAS", - "exponent": 9, - }, - ], - "description": "Fractionalized Atlas DAO", - "display": "fATLAS", - "extendedDescription": "Fractionalized Atlas DAO NFT Via Fractal.fun", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", - "theme": { - "primaryColorHex": "#639BFF", - }, + "denom": "earnUSDC", + "exponent": 6, }, ], - "keywords": [ - "nft", - ], - "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fATLAS.png", - }, - "name": "fATLAS", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", - }, - "symbol": "fATLAS", + "description": "USDC supplied on Mars looped using Membrane by a vault that also has an entry fee", + "display": "earnUSDC", + "name": "Mars Looped USDC Vault", + "symbol": "earnUSDC", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", + "base_denom": "factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66347,51 +69120,31 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv", - "base": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", + "base": "ibc/4849D1BCC226A8DC592C3C36DBCA3716428B366CE0F761710C79A6CB4DE5C430", "denomUnits": [ { "aliases": [ - "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt", ], - "denom": "ibc/B456689D4DFC6167E036F14E1840612D469E7F8563EB1430C0CE7E830E87FCC3", + "denom": "ibc/4849D1BCC226A8DC592C3C36DBCA3716428B366CE0F761710C79A6CB4DE5C430", "exponent": 0, }, { - "denom": "fBULLS", - "exponent": 9, - }, - ], - "description": "Fractionalized Rekt Bulls", - "display": "fBULLS", - "extendedDescription": "Fractionalized Rekt Bulls NFT Via Fractal.fun", - "images": [ - { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", - "theme": { - "primaryColorHex": "#639BFF", - }, + "denom": "earnCDT", + "exponent": 6, }, ], - "keywords": [ - "nft", - ], - "logoURIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/fBULLS.png", - }, - "name": "fBULLS", - "socials": { - "twitter": "https://twitter.com/fractaldotfun", - "website": "https://fractal.fun", - }, - "symbol": "fBULLS", + "description": "Auto-compounding vault for Membrane's Stability Pool used to ease the UX of compounding CDT", + "display": "earnCDT", + "name": "Earn CDT Vault", + "symbol": "earnCDT", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", + "base_denom": "factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66401,47 +69154,48 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9", - "base": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", + "base": "ibc/3FEB50E7D1D46CCBC970A64601E265AC9B1E4B4C026AE832F5566DDA4BBC0CDA", "denomUnits": [ { "aliases": [ - "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice", ], - "denom": "ibc/EC5496B6A075DEE6D097EEFB6F018DC2F3A6EDAD7202050B33615ED65E7C1EC5", + "denom": "ibc/3FEB50E7D1D46CCBC970A64601E265AC9B1E4B4C026AE832F5566DDA4BBC0CDA", "exponent": 0, }, { - "denom": "rbtc", - "exponent": 18, + "denom": "Spice", + "exponent": 6, }, ], - "description": "Roostock BTC bridged via Router.", - "display": "rbtc", + "description": "The Spice memecoin", + "display": "Spice", "images": [ { - "imageSync": { - "baseDenom": "sat", - "chainName": "rootstock", - }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/rootstock/images/rbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png", "theme": { - "backgroundColorHex": "#00000000", - "circle": false, - "primaryColorHex": "#FF9931", + "primaryColorHex": "#e5ba44", }, }, ], - "name": "Rootstock Smart Bitcoin", - "symbol": "RBTC", + "keywords": [ + "meme", + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/spice.png", + }, + "name": "Spice", + "socials": { + "twitter": "https://x.com/spice_coin_", + }, + "symbol": "SPICE", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", + "base_denom": "factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice", "chain_name": "osmosis", "channel_id": "channel-4", }, @@ -66451,54 +69205,56 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "typeAsset": "sdk.coin", }, { - "address": "osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm", - "base": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", + "base": "ibc/CAF3BB70AB5538288352EE311958EB84CB50F48FC674B7AD6C3E7D447A1668F8", "denomUnits": [ { "aliases": [ - "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE", ], - "denom": "ibc/63C23A3DE5DED2CA27C1827E2D5903280FB9D0F58A10F6F589C3D2F8A99E7726", + "denom": "ibc/CAF3BB70AB5538288352EE311958EB84CB50F48FC674B7AD6C3E7D447A1668F8", "exponent": 0, }, { - "denom": "ckBTC", - "exponent": 8, + "denom": "yum", + "exponent": 18, }, ], - "description": "Chain-key Bitcoin bridged via Omnity Network.", - "display": "ckBTC", + "display": "yum", "images": [ { "imageSync": { - "baseDenom": "uckBTC", - "chainName": "internetcomputer", + "baseDenom": "0xcE682c89C63d2850Cb2ca898E44D6c7c30d897a6", + "chainName": "ethereum", }, - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/ckbtc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", "theme": { - "backgroundColorHex": "#3B00B9", - "circle": true, - "primaryColorHex": "#3B00B9", + "primaryColorHex": "#33a6e7", }, }, ], - "name": "Chain-key Bitcoin", - "symbol": "ckBTC", + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yum.png", + }, + "name": "Axelar Wrapped YUM", + "socials": { + "twitter": "https://x.com/CacaoSwap", + "website": "https://cacaoswap.app", + }, + "symbol": "YUM.axl", "traces": [ { "chain": { "channel_id": "channel-6", }, "counterparty": { - "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "base_denom": "ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE", "chain_name": "osmosis", "channel_id": "channel-4", }, "type": "ibc", }, ], - "typeAsset": "sdk.coin", + "typeAsset": "ics20", }, { "base": "ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61", @@ -68155,6 +70911,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C3313EC424DCE0755B75452E82863630C414EFC10D7FFE1A44D7748205C8F51F", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/C3313EC424DCE0755B75452E82863630C414EFC10D7FFE1A44D7748205C8F51F", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-197", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-287", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/43F1FDAC4E552DD8194B3FFD35EE16957BC39AFF5CA57545DB71161FA66E7DC0", "coingeckoId": "starname", @@ -68450,7 +71257,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -68543,7 +71349,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ @@ -70763,6 +73568,57 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/C3313EC424DCE0755B75452E82863630C414EFC10D7FFE1A44D7748205C8F51F", + "denomUnits": [ + { + "aliases": [ + "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + ], + "denom": "ibc/C3313EC424DCE0755B75452E82863630C414EFC10D7FFE1A44D7748205C8F51F", + "exponent": 0, + }, + { + "denom": "SHITMOS", + "exponent": 6, + }, + ], + "description": "The Cosmos Network's premier self-hatred memecoin.", + "display": "SHITMOS", + "extendedDescription": "Shitmos is a fair launched token deployed via the start.cooking liquidity bootstrapping protocol (LBP) on the Osmosis blockchain. It is powered by the Shitmos Economic Zone (SEZ), and it has been designed with the goal of uniting the Cosmos Network and interchain-at-large ecosystems by making crypto fun. The SEZ is a federation of nft collections on Stargaze that supports Shitmos by providing at least 2% of royalties towards open market purchases of Shitmos.", + "images": [ + { + "imageSync": { + "baseDenom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "chainName": "osmosis", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "theme": { + "backgroundColorHex": "#639bff", + "primaryColorHex": "#7b4f2f", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + }, + "name": "Shitmos", + "symbol": "SHITMOS", + "traces": [ + { + "chain": { + "channel_id": "channel-197", + }, + "counterparty": { + "base_denom": "ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F", + "chain_name": "stargaze", + "channel_id": "channel-287", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/43F1FDAC4E552DD8194B3FFD35EE16957BC39AFF5CA57545DB71161FA66E7DC0", "coingeckoId": "starname", @@ -71058,7 +73914,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189", - "coingeckoId": "stride-staked-luna", "denomUnits": [ { "aliases": [ @@ -71151,7 +74006,6 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA }, { "base": "ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F", - "coingeckoId": "stride-staked-evmos", "denomUnits": [ { "aliases": [ From 4f008a922dfb174759dca77793a6dfa93fcbb80d Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 13:26:57 +0800 Subject: [PATCH 3/8] update repos/chain-registry-fixtures --- repos/chain-registry-fixtures | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/chain-registry-fixtures b/repos/chain-registry-fixtures index d655e912c..591876dcb 160000 --- a/repos/chain-registry-fixtures +++ b/repos/chain-registry-fixtures @@ -1 +1 @@ -Subproject commit d655e912cc9fd49cc5383a4e7d35aae20b7590f3 +Subproject commit 591876dcb1d7e0a72f21e97f43567ab078ee3894 From 73cc3176736501f9df7d0d9ac2129267fd291d82 Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 13:32:51 +0800 Subject: [PATCH 4/8] update snapshots --- .../__snapshots__/get-asset-list.test.ts.snap | 332 +++++++++++++++--- .../__snapshots__/ibc-assets.test.ts.snap | 332 +++++++++++++++--- .../__snapshots__/special.assets.test.ts.snap | 284 +++++++++++++-- 3 files changed, 820 insertions(+), 128 deletions(-) diff --git a/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap index 7af476850..569cf452a 100644 --- a/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/get-asset-list.test.ts.snap @@ -1226,16 +1226,18 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", "chainName": "ethereum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, "name": "Tether USD", "symbol": "USDT", @@ -2941,10 +2943,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", "chainName": "arbitrum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -2988,10 +2992,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", "chainName": "optimism", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -3035,10 +3041,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", "chainName": "polygon", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -22783,6 +22791,55 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-874", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-10", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "coingeckoId": "nibiru", @@ -22915,18 +22972,17 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "baseDenom": "uusdc", "chainName": "noble", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "backgroundColorHex": "#ffffff", "circle": true, - "primaryColorHex": "#a8bbfb", + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, "name": "Noble USDC", "symbol": "USDC", @@ -24417,6 +24473,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, "primaryColorHex": "#f4941c", }, }, @@ -24469,7 +24527,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#000000", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], @@ -25965,9 +26024,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", "theme": { - "backgroundColorHex": "#f4941c", + "backgroundColorHex": "#0088CC", "circle": true, - "primaryColorHex": "#f4941c", + "primaryColorHex": "#0088CC", }, }, ], @@ -27214,16 +27273,18 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", "chainName": "ethereum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, "name": "Tether USD", "symbol": "USDT", @@ -28929,10 +28990,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", "chainName": "arbitrum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -28976,10 +29039,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", "chainName": "optimism", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -29023,10 +29088,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", "chainName": "polygon", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -48771,6 +48838,55 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-874", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-10", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "coingeckoId": "nibiru", @@ -48903,18 +49019,17 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "baseDenom": "uusdc", "chainName": "noble", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "backgroundColorHex": "#ffffff", "circle": true, - "primaryColorHex": "#a8bbfb", + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, "name": "Noble USDC", "symbol": "USDC", @@ -50405,6 +50520,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, "primaryColorHex": "#f4941c", }, }, @@ -50457,7 +50574,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#000000", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], @@ -51953,9 +52071,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", "theme": { - "backgroundColorHex": "#f4941c", + "backgroundColorHex": "#0088CC", "circle": true, - "primaryColorHex": "#f4941c", + "primaryColorHex": "#0088CC", }, }, ], @@ -61064,14 +61182,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -61090,6 +61210,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -73761,14 +73936,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -73787,6 +73964,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", diff --git a/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap index 530f17539..c04b08fe2 100644 --- a/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/ibc-assets.test.ts.snap @@ -1226,16 +1226,18 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", "chainName": "ethereum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, "name": "Tether USD", "symbol": "USDT", @@ -2941,10 +2943,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", "chainName": "arbitrum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -2988,10 +2992,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", "chainName": "optimism", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -3035,10 +3041,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", "chainName": "polygon", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -22783,6 +22791,55 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-874", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-10", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "coingeckoId": "nibiru", @@ -22915,18 +22972,17 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "baseDenom": "uusdc", "chainName": "noble", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "backgroundColorHex": "#ffffff", "circle": true, - "primaryColorHex": "#a8bbfb", + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, "name": "Noble USDC", "symbol": "USDC", @@ -24417,6 +24473,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, "primaryColorHex": "#f4941c", }, }, @@ -24469,7 +24527,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#000000", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], @@ -25965,9 +26024,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", "theme": { - "backgroundColorHex": "#f4941c", + "backgroundColorHex": "#0088CC", "circle": true, - "primaryColorHex": "#f4941c", + "primaryColorHex": "#0088CC", }, }, ], @@ -27214,16 +27273,18 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xdac17f958d2ee523a2206206994597c13d831ec7", "chainName": "ethereum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", }, "name": "Tether USD", "symbol": "USDT", @@ -28929,10 +28990,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", "chainName": "arbitrum", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -28976,10 +29039,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", "chainName": "optimism", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -29023,10 +29088,12 @@ The Axelar Network's native token, AXL, is used for transaction fees, incentiviz "baseDenom": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", "chainName": "polygon", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -48771,6 +48838,55 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/71B2EB6A5C8D9A564F2476AAFE9C5367949CA738FA61B244770DC43C219D2441", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-874", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-10", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "coingeckoId": "nibiru", @@ -48903,18 +49019,17 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "baseDenom": "uusdc", "chainName": "noble", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "theme": { - "backgroundColorHex": "#ffffff", "circle": true, - "primaryColorHex": "#a8bbfb", + "primaryColorHex": "#2775CA", }, }, ], "logoURIs": { - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", }, "name": "Noble USDC", "symbol": "USDC", @@ -50405,6 +50520,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/bitcoin/images/btc.svg", "theme": { + "backgroundColorHex": "#f4941c", + "circle": true, "primaryColorHex": "#f4941c", }, }, @@ -50457,7 +50574,8 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol_circle.svg", "theme": { - "primaryColorHex": "#000000", + "backgroundColorHex": "#000000", + "circle": true, }, }, ], @@ -51953,9 +52071,9 @@ stBTC's role in the Lorenzo protocol illustrates its importance in creating a hi "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.png", "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ton/images/hmstr.svg", "theme": { - "backgroundColorHex": "#f4941c", + "backgroundColorHex": "#0088CC", "circle": true, - "primaryColorHex": "#f4941c", + "primaryColorHex": "#0088CC", }, }, ], @@ -61064,14 +61182,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -61090,6 +61210,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", @@ -73761,14 +73936,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -73787,6 +73964,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/69F8B74F46554004D7EA05570A60A8DBB6980E9AACC98C4A515AB2FF9B3085A5", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-75", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-0", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", "coingeckoId": "starname", diff --git a/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap b/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap index cdc03e5b0..8098608ec 100644 --- a/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap +++ b/v2/packages/utils/__tests__/__snapshots__/special.assets.test.ts.snap @@ -10157,6 +10157,55 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/39CC7345301730045AB5F65443D7C071D0F9D945C8D0325CF73855F2DB356C06", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/39CC7345301730045AB5F65443D7C071D0F9D945C8D0325CF73855F2DB356C06", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", "denomUnits": [ @@ -10786,10 +10835,12 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "baseDenom": "uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -33385,10 +33436,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "arbitrum-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -33438,10 +33491,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "optimism-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -33491,10 +33546,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "polygon-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -44783,6 +44840,55 @@ The Injective ecosystem is powered by its native token, INJ, used for governance ], "typeAsset": "sdk.coin", }, + { + "base": "ibc/39CC7345301730045AB5F65443D7C071D0F9D945C8D0325CF73855F2DB356C06", + "denomUnits": [ + { + "aliases": [ + "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + ], + "denom": "ibc/39CC7345301730045AB5F65443D7C071D0F9D945C8D0325CF73855F2DB356C06", + "exponent": 0, + }, + { + "denom": "axlwbtc", + "exponent": 8, + }, + ], + "description": "IBC Axelar wbtc-satoshi through axelar-dojo-1 transfer/channel-2", + "display": "axlwbtc", + "images": [ + { + "imageSync": { + "baseDenom": "wbtc-satoshi", + "chainName": "axelar", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "theme": { + "primaryColorHex": "#41394d", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + }, + "name": "Wrapped Bitcoin (Axelar)", + "symbol": "axlWBTC", + "traces": [ + { + "chain": { + "channel_id": "channel-136", + }, + "counterparty": { + "base_denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "chain_name": "neutron", + "channel_id": "channel-49", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1", "denomUnits": [ @@ -45412,10 +45518,12 @@ ETH, as a digital currency, is used for a variety of purposes within the Ethereu "baseDenom": "uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -68011,10 +68119,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "arbitrum-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -68064,10 +68174,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "optimism-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -68117,10 +68229,12 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "baseDenom": "polygon-uusdt", "chainName": "axelar", }, - "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", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "theme": { - "primaryColorHex": "#54ac94", + "backgroundColorHex": "#009393", + "circle": true, + "primaryColorHex": "#009393", }, }, ], @@ -70936,14 +71050,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -70962,6 +71078,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/A84B8EDE3894BC336B154E8C13D5256F643EB87ED140B43010AF786A25E968D1", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/A84B8EDE3894BC336B154E8C13D5256F643EB87ED140B43010AF786A25E968D1", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-197", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-287", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/43F1FDAC4E552DD8194B3FFD35EE16957BC39AFF5CA57545DB71161FA66E7DC0", "coingeckoId": "starname", @@ -73593,14 +73764,16 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA "chainName": "osmosis", }, "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", "theme": { - "backgroundColorHex": "#639bff", - "primaryColorHex": "#7b4f2f", + "circle": true, + "primaryColorHex": "#639BFF", }, }, ], "logoURIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/shitmos.svg", }, "name": "Shitmos", "symbol": "SHITMOS", @@ -73619,6 +73792,61 @@ The Swap Process: After the initial deposit period, $OSMO was converted into $LA ], "typeAsset": "ics20", }, + { + "base": "ibc/A84B8EDE3894BC336B154E8C13D5256F643EB87ED140B43010AF786A25E968D1", + "denomUnits": [ + { + "aliases": [ + "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + ], + "denom": "ibc/A84B8EDE3894BC336B154E8C13D5256F643EB87ED140B43010AF786A25E968D1", + "exponent": 0, + }, + { + "denom": "ygata", + "exponent": 6, + }, + ], + "description": "GATA Yield DAO Governance Token", + "display": "ygata", + "images": [ + { + "imageSync": { + "baseDenom": "factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata", + "chainName": "omniflixhub", + }, + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + "theme": { + "primaryColorHex": "#7b5aff", + }, + }, + ], + "logoURIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/ygata.svg", + }, + "name": "Yield GATA", + "socials": { + "twitter": "https://x.com/GataHubZone", + "website": "https://gatahub.zone", + }, + "symbol": "YGATA", + "traces": [ + { + "chain": { + "channel_id": "channel-197", + }, + "counterparty": { + "base_denom": "ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA", + "chain_name": "stargaze", + "channel_id": "channel-287", + }, + "type": "ibc", + }, + ], + "typeAsset": "ics20", + }, { "base": "ibc/43F1FDAC4E552DD8194B3FFD35EE16957BC39AFF5CA57545DB71161FA66E7DC0", "coingeckoId": "starname", From dc491851252e8578898a97201c249d970c72f9b2 Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 13:40:56 +0800 Subject: [PATCH 5/8] update snapshots --- .../workflows/__tests__/__snapshots__/registry.test.ts.snap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v2/workflows/workflows/__tests__/__snapshots__/registry.test.ts.snap b/v2/workflows/workflows/__tests__/__snapshots__/registry.test.ts.snap index 9f019c9f4..42ae9708a 100644 --- a/v2/workflows/workflows/__tests__/__snapshots__/registry.test.ts.snap +++ b/v2/workflows/workflows/__tests__/__snapshots__/registry.test.ts.snap @@ -2,9 +2,9 @@ exports[`registry 1`] = ` { - "assetLists": 367, - "chains": 321, - "ibcData": 687, + "assetLists": 376, + "chains": 330, + "ibcData": 711, "memoKeys": 1, "versions": 4, } From 48d7b11e89d68907ac12b3a61b6072bf954eae8a Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 13:47:44 +0800 Subject: [PATCH 6/8] update snapshots --- .../cli/__tests__/__snapshots__/chain.test.ts.snap | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/v2/workflows/cli/__tests__/__snapshots__/chain.test.ts.snap b/v2/workflows/cli/__tests__/__snapshots__/chain.test.ts.snap index 34b22b04b..c8ea98a59 100644 --- a/v2/workflows/cli/__tests__/__snapshots__/chain.test.ts.snap +++ b/v2/workflows/cli/__tests__/__snapshots__/chain.test.ts.snap @@ -319,15 +319,12 @@ exports[`Inquirerer prompts user and correctly processes delayed input 1`] = ` "type": "cometbft", "version": "v0.37.4", }, - "cosmos_sdk_version": "osmosis-labs/cosmos-sdk v0.47.5-v25-osmo-1", "cosmwasm": { "enabled": true, "repo": "https://github.com/osmosis-labs/wasmd", "tag": "v0.45.0-osmo", "version": "v0.45.0", }, - "cosmwasm_enabled": true, - "cosmwasm_version": "osmosis-labs/wasmd v0.45.0-osmo", "genesis": { "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json", "name": "v3", @@ -394,6 +391,12 @@ Osmosis is bringing the full centralized exchange experience to the decentralize "tx_page": "https://explorer.tcnetwork.io/osmosis/transaction/\${txHash}", "url": "https://explorer.tcnetwork.io/osmosis", }, + { + "account_page": "https://staking-explorer.com/account.php?chain=osmosis&addr=\${accountAddress}", + "kind": "staking-explorer.com", + "tx_page": "https://staking-explorer.com/transaction.php?chain=osmosis&tx=\${txHash}", + "url": "https://staking-explorer.com/explorer/osmosis", + }, { "account_page": "https://stakeflow.io/osmosis/accounts/\${accountAddress}", "kind": "Stakeflow", From 9afac7d2e102947f281ca8ae8cb858392cf530f2 Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 14:32:45 +0800 Subject: [PATCH 7/8] validateUnique supports multi duplicates check --- v2/workflows/workflows/src/registry.ts | 30 ++++++++++++++------------ 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/v2/workflows/workflows/src/registry.ts b/v2/workflows/workflows/src/registry.ts index 13bf74bd2..366b651d7 100644 --- a/v2/workflows/workflows/src/registry.ts +++ b/v2/workflows/workflows/src/registry.ts @@ -215,22 +215,24 @@ export class Registry { } public validateUnique() { - let duplicatedChain = null as Chain - const hasDuplicates = this.chains.some((chain, index, array) => { - let existingIndex = array.findIndex(c => c.chain_name === chain.chain_name) - if (existingIndex !== index) { - duplicatedChain = chain - return true + let chainNameCount: Record = {}; // object to store the count of each chain_name + const duplicates: string[] = [] + + this.chains.forEach(chain => { + let chainName = chain.chain_name + // If the chainName already exists in chainNameCount, it's a duplicate + if (chainNameCount[chainName]) { + chainNameCount[chainName]++ + if (chainNameCount[chainName] === 2) { // Only add to duplicates on first repeat + duplicates.push(chainName) + } + } else { + chainNameCount[chainName] = 1; } - return false - }); - - if (duplicatedChain) { - console.log(hasDuplicates ? "Duplicates found" : "No duplicates found"); - throw new Error(`Duplicate chain found: ${duplicatedChain.chain_name}`) + }) + if (duplicates.length > 0) { + throw new Error(`duplicates found: ${duplicates.join(', ')}`) } - - return duplicatedChain } public get count() { From d43d80f502799c573b0275ee1adaf45ab64f81f6 Mon Sep 17 00:00:00 2001 From: HU KE <403392669@qq.com> Date: Wed, 13 Nov 2024 15:24:33 +0800 Subject: [PATCH 8/8] optimize validateUnique --- v2/workflows/workflows/src/registry.ts | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/v2/workflows/workflows/src/registry.ts b/v2/workflows/workflows/src/registry.ts index 366b651d7..409905860 100644 --- a/v2/workflows/workflows/src/registry.ts +++ b/v2/workflows/workflows/src/registry.ts @@ -215,23 +215,20 @@ export class Registry { } public validateUnique() { - let chainNameCount: Record = {}; // object to store the count of each chain_name - const duplicates: string[] = [] + const seen = new Set(); // set to store unique chain_names + const duplicates = new Set(); // set to store duplicate chain_names this.chains.forEach(chain => { let chainName = chain.chain_name - // If the chainName already exists in chainNameCount, it's a duplicate - if (chainNameCount[chainName]) { - chainNameCount[chainName]++ - if (chainNameCount[chainName] === 2) { // Only add to duplicates on first repeat - duplicates.push(chainName) - } + if (seen.has(chainName)) { + duplicates.add(chainName) } else { - chainNameCount[chainName] = 1; + seen.add(chainName) } }) - if (duplicates.length > 0) { - throw new Error(`duplicates found: ${duplicates.join(', ')}`) + const duplicatesArr = Array.from(duplicates) + if (duplicatesArr.length > 0) { + throw new Error(`duplicates found: ${duplicatesArr.join(', ')}`) } }