From 6c54f12c40bb1d5e6fe8d7f169f4189e2e0693ef Mon Sep 17 00:00:00 2001 From: "xuwenyang2005@126.com" Date: Thu, 6 Jul 2023 17:29:31 +0800 Subject: [PATCH 1/5] new class ChainRegistryClient --- packages/client/src/registry.ts | 67 +++++++++ packages/client/types/registry.d.ts | 91 +++++++----- packages/utils/package.json | 3 +- packages/utils/src/chain-registry-util.ts | 133 ++++++++++++++++++ packages/utils/src/index.ts | 1 + packages/utils/types/chain-registry-util.d.ts | 51 +++++++ packages/utils/types/index.d.ts | 1 + yarn.lock | 5 + 8 files changed, 314 insertions(+), 38 deletions(-) create mode 100644 packages/utils/src/chain-registry-util.ts create mode 100644 packages/utils/types/chain-registry-util.d.ts diff --git a/packages/client/src/registry.ts b/packages/client/src/registry.ts index f72e4cee0..da8852247 100644 --- a/packages/client/src/registry.ts +++ b/packages/client/src/registry.ts @@ -228,3 +228,70 @@ export class ChainRegistryFetcher implements ChainRegistry { return Promise.all(this.urls.map((url) => this.fetch(url))); } } + +export interface ChainRegistryClientOptions + extends ChainRegistryFetcherOptions { + chainNames: string[]; + assetListNames?: string[]; + ibcNamePairs?: string[][]; + baseUrl?: string; +} + +export class ChainRegistryClient extends ChainRegistryFetcher { + protected _options: ChainRegistryClientOptions = { + chainNames: [], + baseUrl: 'https://raw.githubusercontent.com/cosmos/chain-registry/master' + }; + + constructor(options: ChainRegistryClientOptions) { + const { + chainNames, + assetListNames, + ibcNamePairs, + baseUrl, + ...restOptions + } = options; + + super(restOptions); + this._options = { + ...this._options, + chainNames: chainNames || this._options.chainNames, + assetListNames: assetListNames || this._options.assetListNames, + ibcNamePairs: ibcNamePairs || this._options.ibcNamePairs, + baseUrl: baseUrl || this._options.baseUrl + }; + + this.generateUrls(); + } + + generateUrls() { + const { chainNames, assetListNames, ibcNamePairs, baseUrl } = this._options; + + const chainUrls = chainNames.map((chain) => { + return `${baseUrl}/${chain}/chain.json`; + }); + + const assetlistUrls = (assetListNames || chainNames).map((chain) => { + return `${baseUrl}/${chain}/assetlist.json`; + }); + + let namePairs = ibcNamePairs; + if (!namePairs) { + namePairs = []; + for (let i = 0; i < chainNames.length; i++) { + for (let j = i + 1; j < chainNames.length; j++) { + namePairs.push([chainNames[i], chainNames[j]]); + } + } + } + const ibcUrls = namePairs.map((namePair) => { + const fileName = + namePair[0].localeCompare(namePair[1]) <= 0 + ? `${namePair[0]}-${namePair[1]}.json` + : `${namePair[1]}-${namePair[0]}.json`; + return `${baseUrl}/_IBC/${fileName}`; + }); + + this.urls = [...chainUrls, ...assetlistUrls, ...ibcUrls]; + } +} diff --git a/packages/client/types/registry.d.ts b/packages/client/types/registry.d.ts index 5c130dd86..0c942fbe3 100644 --- a/packages/client/types/registry.d.ts +++ b/packages/client/types/registry.d.ts @@ -1,45 +1,62 @@ -import { AssetList, Chain, ChainRegistry, IBCInfo } from '@chain-registry/types'; +import { + AssetList, + Chain, + ChainRegistry, + IBCInfo +} from '@chain-registry/types'; export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; + assetLists?: AssetList[]; + chains?: Chain[]; + ibcData?: IBCInfo[]; + urls?: string[]; } export interface ChainInfoOptions { - chain_name: string; - fetcher: ChainRegistryFetcher; + chain_name: string; + fetcher: ChainRegistryFetcher; } export declare class ChainInfo { - chain_name: string; - fetcher: ChainRegistryFetcher; - protected _asset_list: AssetList; - protected _asset_lists: AssetList[]; - protected _chain: Chain; - protected _ibc_data: IBCInfo[]; - constructor(options: ChainInfoOptions); - refresh(): void; - get nativeAssetLists(): AssetList; - get chain(): Chain; - get assetLists(): any[]; + chain_name: string; + fetcher: ChainRegistryFetcher; + protected _asset_list: AssetList; + protected _asset_lists: AssetList[]; + protected _chain: Chain; + protected _ibc_data: IBCInfo[]; + constructor(options: ChainInfoOptions); + refresh(): void; + get nativeAssetLists(): AssetList; + get chain(): Chain; + get assetLists(): any[]; } export declare class ChainRegistryFetcher implements ChainRegistry { - protected _asset_lists: AssetList[]; - protected _chains: Chain[]; - protected _ibc_data: IBCInfo[]; - urls: string[]; - constructor(options?: ChainRegistryFetcherOptions); - get assetLists(): AssetList[]; - getChainAssetList(chainName: string): AssetList; - getGeneratedAssetLists(chainName: string): AssetList[]; - get chains(): Chain[]; - getChain(chainName: string): Chain; - get ibcData(): IBCInfo[]; - getChainIbcData(chainName: string): IBCInfo[]; - getChainInfo(chainName: string): ChainInfo; - upsertChain(data: Chain): void; - updateAssetList(data: AssetList): void; - upsertIbcData(data: IBCInfo): void; - update(data: Chain | AssetList | IBCInfo): void; - fetch(url: any): Promise; - fetchUrls(): Promise; + protected _asset_lists: AssetList[]; + protected _chains: Chain[]; + protected _ibc_data: IBCInfo[]; + urls: string[]; + constructor(options?: ChainRegistryFetcherOptions); + get assetLists(): AssetList[]; + getChainAssetList(chainName: string): AssetList; + getGeneratedAssetLists(chainName: string): AssetList[]; + get chains(): Chain[]; + getChain(chainName: string): Chain; + get ibcData(): IBCInfo[]; + getChainIbcData(chainName: string): IBCInfo[]; + getChainInfo(chainName: string): ChainInfo; + upsertChain(data: Chain): void; + updateAssetList(data: AssetList): void; + upsertIbcData(data: IBCInfo): void; + update(data: Chain | AssetList | IBCInfo): void; + fetch(url: any): Promise; + fetchUrls(): Promise; +} +export interface ChainRegistryClientOptions + extends ChainRegistryFetcherOptions { + chainNames: string[]; + assetListNames?: string[]; + ibcNamePairs?: string[][]; + baseUrl?: string; +} +export declare class ChainRegistryClient extends ChainRegistryFetcher { + protected _options: ChainRegistryClientOptions; + constructor(options: ChainRegistryClientOptions); + generateUrls(): void; } diff --git a/packages/utils/package.json b/packages/utils/package.json index b23f482d5..2fd745319 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -74,6 +74,7 @@ "dependencies": { "@babel/runtime": "^7.21.0", "@chain-registry/types": "^0.16.0", + "bignumber.js": "9.1.1", "sha.js": "^2.4.11" } -} +} \ No newline at end of file diff --git a/packages/utils/src/chain-registry-util.ts b/packages/utils/src/chain-registry-util.ts new file mode 100644 index 000000000..42ec97646 --- /dev/null +++ b/packages/utils/src/chain-registry-util.ts @@ -0,0 +1,133 @@ +import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; +import BigNumber from 'bignumber.js'; + +export type Exponent = AssetDenomUnit['exponent']; + +export type CoinDenom = AssetDenomUnit['denom']; + +export interface CoinGeckoUSD { + usd: number; +} + +export interface PriceHash { + [key: CoinDenom]: number; +} + +export interface ChainRegistryUtilOptions { + assetLists?: AssetList[]; +} + +export class ChainRegistryUtil { + _options?: ChainRegistryUtilOptions = {}; + _asset_lists: AssetList[] = []; + + constructor(options: ChainRegistryUtilOptions = {}) { + this._options = options; + this._asset_lists = options.assetLists || []; + } + + private getAllAssets(chainName: string): Asset[] { + const targetLists = this._asset_lists.filter( + (list) => list.chain_name === chainName + ); + + const allAssets: Asset[] = []; + targetLists.forEach((list) => { + [].push.apply(allAssets, list.assets); + }); + + return allAssets; + } + + getAssetByDenom(chainName: string, denom: CoinDenom): Asset { + const allAssets = this.getAllAssets(chainName); + const asset = allAssets.find((asset) => asset.base === denom); + if (!asset) { + throw new Error(`Asset not found: ${denom}`); + } + return asset; + } + + getDenomByCoinGeckoId(chainName: string, coinGeckoId: string): CoinDenom { + const allAssets = this.getAllAssets(chainName); + return allAssets.find((asset) => asset.coingecko_id === coinGeckoId).base; + } + + chainDenomToSymbol(chainName: string, denom: CoinDenom): string { + const asset = this.getAssetByDenom(chainName, denom); + const symbol = asset.symbol; + if (!symbol) { + return denom; + } + return symbol; + } + + getSymbolByChainDenom(chainName: string, token: string): CoinDenom { + const allAssets = this.getAllAssets(chainName); + const asset = allAssets.find(({ symbol }) => symbol === token); + const base = asset?.base; + if (!base) { + console.log(`cannot find base for token ${token}`); + return null; + } + return base; + } + + getExponentByDenom(chainName: string, denom: CoinDenom): Exponent { + const asset = this.getAssetByDenom(chainName, denom); + const unit = asset.denom_units.find(({ denom }) => denom === asset.display); + return unit?.exponent || 0; + } + + convertCoinGeckoPricesToDenomPriceMap( + chainName: string, + prices: Record + ): PriceHash { + return Object.keys(prices).reduce((res, geckoId) => { + const denom = this.getDenomByCoinGeckoId(chainName, geckoId); + res[denom] = prices[geckoId].usd; + return res; + }, {}); + } + + noDecimals(num: number | string): string { + return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); + } + + convertBaseUnitsToDollarValue( + chainName: string, + prices: PriceHash, + symbol: string, + amount: string | number + ): string { + const denom = this.getSymbolByChainDenom(chainName, symbol); + return new BigNumber(amount) + .shiftedBy(-this.getExponentByDenom(chainName, denom)) + .multipliedBy(prices[denom]) + .toString(); + } + + convertDollarValueToDenomUnits( + chainName: string, + prices: PriceHash, + symbol: string, + value: string | number + ): string { + const denom = this.getSymbolByChainDenom(chainName, symbol); + return new BigNumber(value) + .dividedBy(prices[denom]) + .shiftedBy(this.getExponentByDenom(chainName, denom)) + .toString(); + } + + convertBaseUnitsToDisplayUnits( + chainName: string, + symbol: string, + amount: string | number + ): string { + const denom = this.getSymbolByChainDenom(chainName, symbol); + return new BigNumber(amount) + .shiftedBy(-this.getExponentByDenom(chainName, denom)) + .toString(); + } +} diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index b93a1b56f..3d46783ee 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,2 +1,3 @@ +export * from './chain-registry-util'; export * from './fees'; export * from './utils'; diff --git a/packages/utils/types/chain-registry-util.d.ts b/packages/utils/types/chain-registry-util.d.ts new file mode 100644 index 000000000..18c827c4a --- /dev/null +++ b/packages/utils/types/chain-registry-util.d.ts @@ -0,0 +1,51 @@ +import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; + +export type Exponent = AssetDenomUnit['exponent']; + +export type CoinDenom = AssetDenomUnit['denom']; + +export interface CoinGeckoUSD { + usd: number; +} + +export interface PriceHash { + [key: CoinDenom]: number; +} + +export interface ChainRegistryUtilOptions { + assetLists?: AssetList[]; +} + +export declare class ChainRegistryUtil { + _options?: ChainRegistryUtilOptions; + _asset_lists: AssetList[]; + constructor(options: ChainRegistryUtilOptions); + private getAllAssets(chainName: string): Asset[]; + getAssetByDenom(chainName: string, denom: CoinDenom): Asset; + getDenomByCoinGeckoId(chainName: string, coinGeckoId: string): CoinDenom; + chainDenomToSymbol(chainName: string, denom: CoinDenom): string; + getSymbolByChainDenom(chainName: string, token: string): CoinDenom; + getExponentByDenom(chainName: string, denom: CoinDenom): Exponent; + convertCoinGeckoPricesToDenomPriceMap( + chainName: string, + prices: Record + ): PriceHash; + noDecimals(num: number | string): string; + convertBaseUnitsToDollarValue( + chainName: string, + prices: PriceHash, + symbol: string, + amount: string | number + ): string; + convertDollarValueToDenomUnits( + chainName: string, + prices: PriceHash, + symbol: string, + value: string | number + ): string; + convertBaseUnitsToDisplayUnits( + chainName: string, + symbol: string, + amount: string | number + ): string; +} diff --git a/packages/utils/types/index.d.ts b/packages/utils/types/index.d.ts index b93a1b56f..3d46783ee 100644 --- a/packages/utils/types/index.d.ts +++ b/packages/utils/types/index.d.ts @@ -1,2 +1,3 @@ +export * from './chain-registry-util'; export * from './fees'; export * from './utils'; diff --git a/yarn.lock b/yarn.lock index ce09a6757..d939f5473 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4029,6 +4029,11 @@ big-integer@^1.6.48: resolved "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== +bignumber.js@9.1.1: + version "9.1.1" + resolved "https://registry.npmmirror.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6" + integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig== + binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" From b6e7c9d58bed7d764ef20090d9ce74598c878bee Mon Sep 17 00:00:00 2001 From: "xuwenyang2005@126.com" Date: Fri, 7 Jul 2023 22:35:16 +0800 Subject: [PATCH 2/5] new Class ChainRegistryChainUtil and factory method getChainUtil added to ChainRegistryClient --- packages/client/src/chain-info.ts | 52 ++++ packages/client/src/chain-util.ts | 107 ++++++++ packages/client/src/fetcher.ts | 199 +++++++++++++++ packages/client/src/index.ts | 3 + packages/client/src/registry.ts | 240 +----------------- packages/client/types/chain-info.d.ts | 22 ++ packages/client/types/chain-util.d.ts | 44 ++++ packages/client/types/fetcher.d.ts | 38 +++ packages/client/types/index.d.ts | 3 + packages/client/types/registry.d.ts | 54 +--- packages/utils/src/asset-list-util.ts | 115 +++++++++ packages/utils/src/chain-registry-util.ts | 133 ---------- packages/utils/src/index.ts | 2 +- packages/utils/types/asset-list-util.d.ts | 65 +++++ packages/utils/types/chain-registry-util.d.ts | 51 ---- packages/utils/types/index.d.ts | 2 +- 16 files changed, 664 insertions(+), 466 deletions(-) create mode 100644 packages/client/src/chain-info.ts create mode 100644 packages/client/src/chain-util.ts create mode 100644 packages/client/src/fetcher.ts create mode 100644 packages/client/types/chain-info.d.ts create mode 100644 packages/client/types/chain-util.d.ts create mode 100644 packages/client/types/fetcher.d.ts create mode 100644 packages/utils/src/asset-list-util.ts delete mode 100644 packages/utils/src/chain-registry-util.ts create mode 100644 packages/utils/types/asset-list-util.d.ts delete mode 100644 packages/utils/types/chain-registry-util.d.ts diff --git a/packages/client/src/chain-info.ts b/packages/client/src/chain-info.ts new file mode 100644 index 000000000..7c3ff3992 --- /dev/null +++ b/packages/client/src/chain-info.ts @@ -0,0 +1,52 @@ +import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; +import { getAssetLists } from '@chain-registry/utils'; + +import { ChainRegistryFetcher } from './fetcher'; + +export interface ChainInfoOptions { + chain_name: string; + fetcher: ChainRegistryFetcher; +} + +export class ChainInfo { + chain_name: string; + fetcher: ChainRegistryFetcher; + + protected _chain: Chain; + protected _asset_list: AssetList; + protected _asset_lists: AssetList[]; + protected _ibc_data: IBCInfo[] = []; + + constructor(options: ChainInfoOptions) { + this.chain_name = options.chain_name; + this.fetcher = options.fetcher; + + this.refresh(); + } + + refresh() { + this._asset_list = this.fetcher.getChainAssetList(this.chain_name); + this._ibc_data = this.fetcher.getChainIbcData(this.chain_name); + this._chain = this.fetcher.getChain(this.chain_name); + + const supportedChains = this._ibc_data.reduce((m, v) => { + if (!m.includes(v.chain_1.chain_name)) m.push(v.chain_1.chain_name); + if (!m.includes(v.chain_2.chain_name)) m.push(v.chain_2.chain_name); + return m; + }, []); + + this._asset_lists = this.fetcher.assetLists.filter((list) => + supportedChains.includes(list.chain_name) + ); + } + + get chain() { + return this._chain; + } + get nativeAssetLists() { + return this._asset_list; + } + get assetLists() { + return getAssetLists(this.chain_name, this._ibc_data, this._asset_lists); + } +} diff --git a/packages/client/src/chain-util.ts b/packages/client/src/chain-util.ts new file mode 100644 index 000000000..27eab6c25 --- /dev/null +++ b/packages/client/src/chain-util.ts @@ -0,0 +1,107 @@ +import { Asset } from '@chain-registry/types'; +import type { + CoinDenom, + CoinGeckoUSD, + Exponent, + PriceHash +} from '@chain-registry/utils'; +import { + convertBaseUnitsToDisplayUnits, + convertBaseUnitsToDollarValue, + convertCoinGeckoPricesToDenomPriceMap, + convertDollarValueToDenomUnits, + getAssetByDenom, + getChainDenomBySymbol, + getDenomByCoinGeckoId, + getExponentByDenom, + getSymbolByChainDenom, + noDecimals +} from '@chain-registry/utils'; + +import { ChainInfo } from './chain-info'; + +export interface ChainRegistryChainUtilOptions { + chain_name: string; + chain_info: ChainInfo; +} + +export class ChainRegistryChainUtil { + chain_name: string; + chain_info: ChainInfo; + _all_Asset: Asset[]; + + constructor(options: ChainRegistryChainUtilOptions) { + this.chain_name = options.chain_name; + this.chain_info = options.chain_info; + this._all_Asset = this.chain_info.assetLists.reduce( + (m, it) => { + [].push.apply(m, it.assets); + return m; + }, + [...this.chain_info.nativeAssetLists.assets] + ); + } + + getAssetByDenom(denom: CoinDenom): Asset { + return getAssetByDenom(this._all_Asset, denom); + } + + getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom { + return getDenomByCoinGeckoId(this._all_Asset, coinGeckoId); + } + + getSymbolByChainDenom(denom: CoinDenom): string { + return getSymbolByChainDenom(this._all_Asset, denom); + } + + getChainDenomBySymbol(token: string): CoinDenom { + return getChainDenomBySymbol(this._all_Asset, token); + } + + getExponentByDenom(denom: CoinDenom): Exponent { + return getExponentByDenom(this._all_Asset, denom); + } + + convertCoinGeckoPricesToDenomPriceMap( + prices: Record + ): PriceHash { + return convertCoinGeckoPricesToDenomPriceMap(this._all_Asset, prices); + } + + noDecimals(num: number | string): string { + return noDecimals(num); + } + + convertBaseUnitsToDollarValue( + prices: PriceHash, + symbol: string, + amount: string | number + ): string { + return convertBaseUnitsToDollarValue( + this._all_Asset, + prices, + symbol, + amount + ); + } + + convertDollarValueToDenomUnits( + prices: PriceHash, + symbol: string, + value: string | number + ): string { + return convertDollarValueToDenomUnits( + this._all_Asset, + prices, + symbol, + value + ); + } + + convertBaseUnitsToDisplayUnits( + symbol: string, + amount: string | number + ): string { + return convertBaseUnitsToDisplayUnits(this._all_Asset, symbol, amount); + } +} diff --git a/packages/client/src/fetcher.ts b/packages/client/src/fetcher.ts new file mode 100644 index 000000000..8884d44d5 --- /dev/null +++ b/packages/client/src/fetcher.ts @@ -0,0 +1,199 @@ +import { + AssetList, + Chain, + ChainRegistry, + IBCInfo +} from '@chain-registry/types'; +import { getAssetLists } from '@chain-registry/utils'; +import { basename } from 'bfs-path'; +import fetch from 'cross-fetch'; + +import { ChainInfo } from './chain-info'; + +const fetchUrl = (url: string) => { + return fetch(url).then((res) => { + if (res.status >= 400) { + throw new Error('Bad response'); + } + return res.json(); + }); +}; + +export interface ChainRegistryFetcherOptions { + assetLists?: AssetList[]; + chains?: Chain[]; + ibcData?: IBCInfo[]; + urls?: string[]; +} + +// QUESTION: should ChainRegistryFetcher just be ChainRegistry? +export class ChainRegistryFetcher implements ChainRegistry { + urls: string[] = []; + + protected _asset_lists: AssetList[] = []; + protected _chains: Chain[] = []; + protected _ibc_data: IBCInfo[] = []; + + private chainInfoList: ChainInfo[] = []; + + constructor(options: ChainRegistryFetcherOptions = {}) { + // + if (options.chains) { + this._chains = options.chains; + } + if (options.assetLists) { + this._asset_lists = options.assetLists; + } + if (options.ibcData) { + this._ibc_data = options.ibcData; + } + if (options.urls) { + this.urls = options.urls; + } + } + + get chains() { + return this._chains; + } + get assetLists(): AssetList[] { + return this._asset_lists; + } + get ibcData(): IBCInfo[] { + return this._ibc_data; + } + + getChain(chainName: string) { + return this._chains.find((chain) => chain.chain_name === chainName); + } + + getChainAssetList(chainName: string): AssetList { + return this._asset_lists.find((list) => list.chain_name === chainName); + } + + getGeneratedAssetLists(chainName: string): AssetList[] { + return getAssetLists(chainName, this._ibc_data, this._asset_lists); + } + + getChainIbcData(chainName: string) { + return this._ibc_data.filter( + (info) => + info.chain_1.chain_name === chainName || + info.chain_2.chain_name === chainName + ); + } + + getChainInfo(chainName: string) { + let chainInfo = this.chainInfoList.find( + (it) => it.chain_name === chainName + ); + if (!chainInfo) { + chainInfo = new ChainInfo({ + chain_name: chainName, + fetcher: this + }); + this.chainInfoList.push(chainInfo); + } + return chainInfo; + } + + upsertChain(data: Chain) { + const found = this._chains.find((chain) => { + return ( + chain.chain_name === data.chain_name && + chain.network_type === data.network_type + ); + }); + + if (!found) { + this._chains.push(data); + return; + } + + this._chains = this._chains.map((chain) => { + if ( + chain.chain_name === data.chain_name && + chain.network_type === data.network_type + ) { + return data; + } else { + return chain; + } + }); + } + + updateAssetList(data: AssetList) { + const found = this._asset_lists.find((list) => { + return list.chain_name === data.chain_name; + }); + + if (!found) { + this._asset_lists.push(data); + return; + } + + this._asset_lists = this._asset_lists.map((list) => { + if (list.chain_name === data.chain_name) { + return data; + } else { + return list; + } + }); + } + + upsertIbcData(data: IBCInfo) { + const found = this._ibc_data.find((info) => { + return ( + info.chain_1.chain_name === data.chain_1.chain_name && + info.chain_2.chain_name === data.chain_2.chain_name + ); + }); + + if (!found) { + this._ibc_data.push(data); + return; + } + + this._ibc_data = this._ibc_data.map((info) => { + if ( + info.chain_1.chain_name === data.chain_1.chain_name && + info.chain_2.chain_name === data.chain_2.chain_name + ) { + return data; + } else { + return info; + } + }); + } + + update(data: Chain | AssetList | IBCInfo) { + if (!data.$schema) throw new Error('not a registered JSON schema type'); + const type = basename(data.$schema, '.schema.json'); + + switch (type) { + case 'chain': + this.upsertChain(data as Chain); + break; + case 'assetlist': + this.updateAssetList(data as AssetList); + break; + case 'ibc_data': + this.upsertIbcData(data as IBCInfo); + break; + default: + throw new Error('unknown schema type'); + } + + this.chainInfoList.forEach((chainInfo) => { + chainInfo.refresh(); + }); + } + + async fetch(url): Promise { + const data = await fetchUrl(url); + this.update(data); + } + + async fetchUrls() { + return Promise.all(this.urls.map((url) => this.fetch(url))); + } +} diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index 585b667a0..000f0b524 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -1 +1,4 @@ +export * from './chain-info'; +export * from './chain-util'; +export * from './fetcher'; export * from './registry'; diff --git a/packages/client/src/registry.ts b/packages/client/src/registry.ts index da8852247..65b8032a5 100644 --- a/packages/client/src/registry.ts +++ b/packages/client/src/registry.ts @@ -1,233 +1,5 @@ -import { - AssetList, - Chain, - ChainRegistry, - IBCInfo -} from '@chain-registry/types'; -import { getAssetLists } from '@chain-registry/utils'; -import { basename } from 'bfs-path'; -import fetch from 'cross-fetch'; - -export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; -} - -const fetchUrl = (url: string) => { - return fetch(url).then((res) => { - if (res.status >= 400) { - throw new Error('Bad response'); - } - return res.json(); - }); -}; - -export interface ChainInfoOptions { - chain_name: string; - fetcher: ChainRegistryFetcher; -} -export class ChainInfo { - chain_name: string; - fetcher: ChainRegistryFetcher; - - protected _asset_list: AssetList; - protected _asset_lists: AssetList[]; - protected _chain: Chain; - protected _ibc_data: IBCInfo[] = []; - - constructor(options: ChainInfoOptions) { - this.chain_name = options.chain_name; - this.fetcher = options.fetcher; - - this.refresh(); - } - refresh() { - this._asset_list = this.fetcher.getChainAssetList(this.chain_name); - this._ibc_data = this.fetcher.getChainIbcData(this.chain_name); - this._chain = this.fetcher.getChain(this.chain_name); - - const supportedChains = this._ibc_data.reduce((m, v) => { - if (!m.includes(v.chain_1.chain_name)) m.push(v.chain_1.chain_name); - if (!m.includes(v.chain_2.chain_name)) m.push(v.chain_2.chain_name); - return m; - }, []); - - this._asset_lists = this.fetcher.assetLists.filter((list) => - supportedChains.includes(list.chain_name) - ); - } - get nativeAssetLists() { - return this._asset_list; - } - get chain() { - return this._chain; - } - get assetLists() { - return getAssetLists(this.chain_name, this._ibc_data, this._asset_lists); - } -} - -// QUESTION: should ChainRegistryFetcher just be ChainRegistry? -export class ChainRegistryFetcher implements ChainRegistry { - protected _asset_lists: AssetList[] = []; - protected _chains: Chain[] = []; - protected _ibc_data: IBCInfo[] = []; - - urls: string[] = []; - - constructor(options: ChainRegistryFetcherOptions = {}) { - // - if (options.assetLists) { - this._asset_lists = options.assetLists; - } - if (options.chains) { - this._chains = options.chains; - } - if (options.ibcData) { - this._ibc_data = options.ibcData; - } - if (options.urls) { - this.urls = options.urls; - } - } - - get assetLists(): AssetList[] { - return this._asset_lists; - } - - getChainAssetList(chainName: string): AssetList { - return this._asset_lists.find((list) => list.chain_name === chainName); - } - - getGeneratedAssetLists(chainName: string): AssetList[] { - return getAssetLists(chainName, this._ibc_data, this._asset_lists); - } - - get chains() { - return this._chains; - } - - getChain(chainName: string) { - return this._chains.find((chain) => chain.chain_name === chainName); - } - - get ibcData(): IBCInfo[] { - return this._ibc_data; - } - - getChainIbcData(chainName: string) { - return this._ibc_data.filter( - (info) => - info.chain_1.chain_name === chainName || - info.chain_2.chain_name === chainName - ); - } - - getChainInfo(chainName: string) { - return new ChainInfo({ - chain_name: chainName, - fetcher: this - }); - } - - upsertChain(data: Chain) { - const found = this._chains.find((chain) => { - return ( - chain.chain_name === data.chain_name && - chain.network_type === data.network_type - ); - }); - - if (!found) { - this._chains.push(data); - return; - } - - this._chains = this._chains.map((chain) => { - if ( - chain.chain_name === data.chain_name && - chain.network_type === data.network_type - ) { - return data; - } else { - return chain; - } - }); - } - - updateAssetList(data: AssetList) { - const found = this._asset_lists.find((list) => { - return list.chain_name === data.chain_name; - }); - - if (!found) { - this._asset_lists.push(data); - return; - } - - this._asset_lists = this._asset_lists.map((list) => { - if (list.chain_name === data.chain_name) { - return data; - } else { - return list; - } - }); - } - - upsertIbcData(data: IBCInfo) { - const found = this._ibc_data.find((info) => { - return ( - info.chain_1.chain_name === data.chain_1.chain_name && - info.chain_2.chain_name === data.chain_2.chain_name - ); - }); - - if (!found) { - this._ibc_data.push(data); - return; - } - - this._ibc_data = this._ibc_data.map((info) => { - if ( - info.chain_1.chain_name === data.chain_1.chain_name && - info.chain_2.chain_name === data.chain_2.chain_name - ) { - return data; - } else { - return info; - } - }); - } - - update(data: Chain | AssetList | IBCInfo) { - if (!data.$schema) throw new Error('not a registered JSON schema type'); - const type = basename(data.$schema, '.schema.json'); - - switch (type) { - case 'chain': - this.upsertChain(data as Chain); - break; - case 'assetlist': - this.updateAssetList(data as AssetList); - break; - case 'ibc_data': - this.upsertIbcData(data as IBCInfo); - break; - default: - throw new Error('unknown schema type'); - } - } - - async fetch(url): Promise { - const data = await fetchUrl(url); - this.update(data); - } - async fetchUrls() { - return Promise.all(this.urls.map((url) => this.fetch(url))); - } -} +import { ChainRegistryChainUtil } from './chain-util'; +import { ChainRegistryFetcher, ChainRegistryFetcherOptions } from './fetcher'; export interface ChainRegistryClientOptions extends ChainRegistryFetcherOptions { @@ -294,4 +66,12 @@ export class ChainRegistryClient extends ChainRegistryFetcher { this.urls = [...chainUrls, ...assetlistUrls, ...ibcUrls]; } + + getChainUtil(chainName: string) { + const chainInfo = this.getChainInfo(chainName); + return new ChainRegistryChainUtil({ + chain_name: chainName, + chain_info: chainInfo + }); + } } diff --git a/packages/client/types/chain-info.d.ts b/packages/client/types/chain-info.d.ts new file mode 100644 index 000000000..bf5b89a44 --- /dev/null +++ b/packages/client/types/chain-info.d.ts @@ -0,0 +1,22 @@ +import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; + +import { ChainRegistryFetcher } from './fetcher'; + +export interface ChainInfoOptions { + chain_name: string; + fetcher: ChainRegistryFetcher; +} + +export declare class ChainInfo { + chain_name: string; + fetcher: ChainRegistryFetcher; + protected _chain: Chain; + protected _asset_list: AssetList; + protected _asset_lists: AssetList[]; + protected _ibc_data: IBCInfo[]; + constructor(options: ChainInfoOptions); + refresh(): void; + get chain(): Chain; + get nativeAssetLists(): AssetList; + get assetLists(): AssetList[]; +} diff --git a/packages/client/types/chain-util.d.ts b/packages/client/types/chain-util.d.ts new file mode 100644 index 000000000..b6b4bbd6b --- /dev/null +++ b/packages/client/types/chain-util.d.ts @@ -0,0 +1,44 @@ +import { Asset } from '@chain-registry/types'; +import type { + CoinDenom, + CoinGeckoUSD, + Exponent, + PriceHash +} from '@chain-registry/utils'; + +import { ChainInfo } from './chain-info'; + +export interface ChainRegistryChainUtilOptions { + chain_name: string; + chain_info: ChainInfo; +} + +export declare class ChainRegistryChainUtil { + chain_name: string; + chain_info: ChainInfo; + all_Asset: Asset[]; + constructor(options: ChainRegistryChainUtilOptions); + getAssetByDenom(denom: CoinDenom): Asset; + getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom; + getSymbolByChainDenom(denom: CoinDenom): string; + getChainDenomBySymbol(token: string): CoinDenom; + getExponentByDenom(denom: CoinDenom): Exponent; + convertCoinGeckoPricesToDenomPriceMap( + prices: Record + ): PriceHash; + noDecimals(num: number | string): string; + convertBaseUnitsToDollarValue( + prices: PriceHash, + symbol: string, + amount: string | number + ): string; + convertDollarValueToDenomUnits( + prices: PriceHash, + symbol: string, + value: string | number + ): string; + convertBaseUnitsToDisplayUnits( + symbol: string, + amount: string | number + ): string; +} diff --git a/packages/client/types/fetcher.d.ts b/packages/client/types/fetcher.d.ts new file mode 100644 index 000000000..ce4fc39dc --- /dev/null +++ b/packages/client/types/fetcher.d.ts @@ -0,0 +1,38 @@ +import { + AssetList, + Chain, + ChainRegistry, + IBCInfo +} from '@chain-registry/types'; + +import { ChainInfo } from './chain-info'; + +export interface ChainRegistryFetcherOptions { + assetLists?: AssetList[]; + chains?: Chain[]; + ibcData?: IBCInfo[]; + urls?: string[]; +} + +export declare class ChainRegistryFetcher implements ChainRegistry { + urls: string[]; + protected _asset_lists: AssetList[]; + protected _chains: Chain[]; + protected _ibc_data: IBCInfo[]; + private chainInfoList: ChainInfo[]; + constructor(options: ChainRegistryFetcherOptions); + get chains(): Chain[]; + get assetLists(): AssetList[]; + get ibcData(): IBCInfo[]; + getChain(chainName: string): Chain; + getChainAssetList(chainName: string): AssetList; + getGeneratedAssetLists(chainName: string): AssetList[]; + getChainIbcData(chainName: string): IBCInfo; + getChainInfo(chainName: string): ChainInfo; + upsertChain(data: Chain): void; + updateAssetList(data: AssetList): void; + upsertIbcData(data: IBCInfo): void; + update(data: Chain | AssetList | IBCInfo): void; + fetch(url): Promise; + fetchUrls(): Promise; +} diff --git a/packages/client/types/index.d.ts b/packages/client/types/index.d.ts index 585b667a0..000f0b524 100644 --- a/packages/client/types/index.d.ts +++ b/packages/client/types/index.d.ts @@ -1 +1,4 @@ +export * from './chain-info'; +export * from './chain-util'; +export * from './fetcher'; export * from './registry'; diff --git a/packages/client/types/registry.d.ts b/packages/client/types/registry.d.ts index 0c942fbe3..7892296ed 100644 --- a/packages/client/types/registry.d.ts +++ b/packages/client/types/registry.d.ts @@ -1,53 +1,6 @@ -import { - AssetList, - Chain, - ChainRegistry, - IBCInfo -} from '@chain-registry/types'; -export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; -} -export interface ChainInfoOptions { - chain_name: string; - fetcher: ChainRegistryFetcher; -} -export declare class ChainInfo { - chain_name: string; - fetcher: ChainRegistryFetcher; - protected _asset_list: AssetList; - protected _asset_lists: AssetList[]; - protected _chain: Chain; - protected _ibc_data: IBCInfo[]; - constructor(options: ChainInfoOptions); - refresh(): void; - get nativeAssetLists(): AssetList; - get chain(): Chain; - get assetLists(): any[]; -} -export declare class ChainRegistryFetcher implements ChainRegistry { - protected _asset_lists: AssetList[]; - protected _chains: Chain[]; - protected _ibc_data: IBCInfo[]; - urls: string[]; - constructor(options?: ChainRegistryFetcherOptions); - get assetLists(): AssetList[]; - getChainAssetList(chainName: string): AssetList; - getGeneratedAssetLists(chainName: string): AssetList[]; - get chains(): Chain[]; - getChain(chainName: string): Chain; - get ibcData(): IBCInfo[]; - getChainIbcData(chainName: string): IBCInfo[]; - getChainInfo(chainName: string): ChainInfo; - upsertChain(data: Chain): void; - updateAssetList(data: AssetList): void; - upsertIbcData(data: IBCInfo): void; - update(data: Chain | AssetList | IBCInfo): void; - fetch(url: any): Promise; - fetchUrls(): Promise; -} +import { ChainRegistryChainUtil } from './chain-util'; +import { ChainRegistryFetcher, ChainRegistryFetcherOptions } from './fetcher'; + export interface ChainRegistryClientOptions extends ChainRegistryFetcherOptions { chainNames: string[]; @@ -59,4 +12,5 @@ export declare class ChainRegistryClient extends ChainRegistryFetcher { protected _options: ChainRegistryClientOptions; constructor(options: ChainRegistryClientOptions); generateUrls(): void; + getChainUtil(chainName: string): ChainRegistryChainUtil; } diff --git a/packages/utils/src/asset-list-util.ts b/packages/utils/src/asset-list-util.ts new file mode 100644 index 000000000..e52424ca2 --- /dev/null +++ b/packages/utils/src/asset-list-util.ts @@ -0,0 +1,115 @@ +import { Asset, AssetDenomUnit } from '@chain-registry/types'; +import BigNumber from 'bignumber.js'; + +export type CoinDenom = AssetDenomUnit['denom']; + +export type Exponent = AssetDenomUnit['exponent']; + +export interface CoinGeckoUSD { + usd: number; +} + +export interface PriceHash { + [key: CoinDenom]: number; +} + +export function getAssetByDenom(assets: Asset[], denom: CoinDenom): Asset { + const asset = assets.find((asset) => asset.base === denom); + if (!asset) { + throw new Error(`Asset not found: ${denom}`); + } + return asset; +} + +export function getDenomByCoinGeckoId( + assets: Asset[], + coinGeckoId: string +): CoinDenom { + return assets.find((asset) => asset.coingecko_id === coinGeckoId).base; +} + +export function getSymbolByChainDenom( + assets: Asset[], + denom: CoinDenom +): string { + const asset = getAssetByDenom(assets, denom); + const symbol = asset.symbol; + if (!symbol) { + return denom; + } + return symbol; +} + +export function getChainDenomBySymbol( + assets: Asset[], + token: string +): CoinDenom { + const asset = assets.find(({ symbol }) => symbol === token); + const base = asset?.base; + if (!base) { + console.log(`cannot find base for token ${token}`); + return null; + } + return base; +} + +export function getExponentByDenom( + assets: Asset[], + denom: CoinDenom +): Exponent { + const asset = getAssetByDenom(assets, denom); + const unit = asset.denom_units.find(({ denom }) => denom === asset.display); + return unit?.exponent || 0; +} + +export function convertCoinGeckoPricesToDenomPriceMap( + assets: Asset[], + prices: Record +): PriceHash { + return Object.keys(prices).reduce((res, geckoId) => { + const denom = getDenomByCoinGeckoId(assets, geckoId); + res[denom] = prices[geckoId].usd; + return res; + }, {}); +} + +export function noDecimals(num: number | string): string { + return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); +} + +export function convertBaseUnitsToDollarValue( + assets: Asset[], + prices: PriceHash, + symbol: string, + amount: string | number +): string { + const denom = getChainDenomBySymbol(assets, symbol); + return new BigNumber(amount) + .shiftedBy(-getExponentByDenom(assets, denom)) + .multipliedBy(prices[denom]) + .toString(); +} + +export function convertDollarValueToDenomUnits( + assets: Asset[], + prices: PriceHash, + symbol: string, + value: string | number +): string { + const denom = getChainDenomBySymbol(assets, symbol); + return new BigNumber(value) + .dividedBy(prices[denom]) + .shiftedBy(getExponentByDenom(assets, denom)) + .toString(); +} + +export function convertBaseUnitsToDisplayUnits( + assets: Asset[], + symbol: string, + amount: string | number +): string { + const denom = getChainDenomBySymbol(assets, symbol); + return new BigNumber(amount) + .shiftedBy(-getExponentByDenom(assets, denom)) + .toString(); +} diff --git a/packages/utils/src/chain-registry-util.ts b/packages/utils/src/chain-registry-util.ts deleted file mode 100644 index 42ec97646..000000000 --- a/packages/utils/src/chain-registry-util.ts +++ /dev/null @@ -1,133 +0,0 @@ -import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; -import BigNumber from 'bignumber.js'; - -export type Exponent = AssetDenomUnit['exponent']; - -export type CoinDenom = AssetDenomUnit['denom']; - -export interface CoinGeckoUSD { - usd: number; -} - -export interface PriceHash { - [key: CoinDenom]: number; -} - -export interface ChainRegistryUtilOptions { - assetLists?: AssetList[]; -} - -export class ChainRegistryUtil { - _options?: ChainRegistryUtilOptions = {}; - _asset_lists: AssetList[] = []; - - constructor(options: ChainRegistryUtilOptions = {}) { - this._options = options; - this._asset_lists = options.assetLists || []; - } - - private getAllAssets(chainName: string): Asset[] { - const targetLists = this._asset_lists.filter( - (list) => list.chain_name === chainName - ); - - const allAssets: Asset[] = []; - targetLists.forEach((list) => { - [].push.apply(allAssets, list.assets); - }); - - return allAssets; - } - - getAssetByDenom(chainName: string, denom: CoinDenom): Asset { - const allAssets = this.getAllAssets(chainName); - const asset = allAssets.find((asset) => asset.base === denom); - if (!asset) { - throw new Error(`Asset not found: ${denom}`); - } - return asset; - } - - getDenomByCoinGeckoId(chainName: string, coinGeckoId: string): CoinDenom { - const allAssets = this.getAllAssets(chainName); - return allAssets.find((asset) => asset.coingecko_id === coinGeckoId).base; - } - - chainDenomToSymbol(chainName: string, denom: CoinDenom): string { - const asset = this.getAssetByDenom(chainName, denom); - const symbol = asset.symbol; - if (!symbol) { - return denom; - } - return symbol; - } - - getSymbolByChainDenom(chainName: string, token: string): CoinDenom { - const allAssets = this.getAllAssets(chainName); - const asset = allAssets.find(({ symbol }) => symbol === token); - const base = asset?.base; - if (!base) { - console.log(`cannot find base for token ${token}`); - return null; - } - return base; - } - - getExponentByDenom(chainName: string, denom: CoinDenom): Exponent { - const asset = this.getAssetByDenom(chainName, denom); - const unit = asset.denom_units.find(({ denom }) => denom === asset.display); - return unit?.exponent || 0; - } - - convertCoinGeckoPricesToDenomPriceMap( - chainName: string, - prices: Record - ): PriceHash { - return Object.keys(prices).reduce((res, geckoId) => { - const denom = this.getDenomByCoinGeckoId(chainName, geckoId); - res[denom] = prices[geckoId].usd; - return res; - }, {}); - } - - noDecimals(num: number | string): string { - return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); - } - - convertBaseUnitsToDollarValue( - chainName: string, - prices: PriceHash, - symbol: string, - amount: string | number - ): string { - const denom = this.getSymbolByChainDenom(chainName, symbol); - return new BigNumber(amount) - .shiftedBy(-this.getExponentByDenom(chainName, denom)) - .multipliedBy(prices[denom]) - .toString(); - } - - convertDollarValueToDenomUnits( - chainName: string, - prices: PriceHash, - symbol: string, - value: string | number - ): string { - const denom = this.getSymbolByChainDenom(chainName, symbol); - return new BigNumber(value) - .dividedBy(prices[denom]) - .shiftedBy(this.getExponentByDenom(chainName, denom)) - .toString(); - } - - convertBaseUnitsToDisplayUnits( - chainName: string, - symbol: string, - amount: string | number - ): string { - const denom = this.getSymbolByChainDenom(chainName, symbol); - return new BigNumber(amount) - .shiftedBy(-this.getExponentByDenom(chainName, denom)) - .toString(); - } -} diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 3d46783ee..a69a051c9 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,3 @@ -export * from './chain-registry-util'; +export * from './asset-list-util'; export * from './fees'; export * from './utils'; diff --git a/packages/utils/types/asset-list-util.d.ts b/packages/utils/types/asset-list-util.d.ts new file mode 100644 index 000000000..63407f4d7 --- /dev/null +++ b/packages/utils/types/asset-list-util.d.ts @@ -0,0 +1,65 @@ +import { Asset, AssetDenomUnit } from '@chain-registry/types'; + +export type CoinDenom = AssetDenomUnit['denom']; + +export type Exponent = AssetDenomUnit['exponent']; + +export interface CoinGeckoUSD { + usd: number; +} + +export interface PriceHash { + [key: CoinDenom]: number; +} + +export declare function getAssetByDenom( + assets: Asset[], + denom: CoinDenom +): Asset; + +export declare function getDenomByCoinGeckoId( + assets: Asset[], + coinGeckoId: string +): CoinDenom; + +export declare function getSymbolByChainDenom( + assets: Asset[], + denom: CoinDenom +): string; + +export declare function getChainDenomBySymbol( + assets: Asset[], + token: string +): CoinDenom; + +export declare function getExponentByDenom( + assets: Asset[], + denom: CoinDenom +): Exponent; + +export declare function convertCoinGeckoPricesToDenomPriceMap( + assets: Asset[], + prices: Record +): PriceHash; + +export declare function noDecimals(num: number | string): string; + +export declare function convertBaseUnitsToDollarValue( + assets: Asset[], + prices: PriceHash, + symbol: string, + amount: string | number +): string; + +export declare function convertDollarValueToDenomUnits( + assets: Asset[], + prices: PriceHash, + symbol: string, + value: string | number +): string; + +export declare function convertBaseUnitsToDisplayUnits( + assets: Asset[], + symbol: string, + amount: string | number +): string; diff --git a/packages/utils/types/chain-registry-util.d.ts b/packages/utils/types/chain-registry-util.d.ts deleted file mode 100644 index 18c827c4a..000000000 --- a/packages/utils/types/chain-registry-util.d.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; - -export type Exponent = AssetDenomUnit['exponent']; - -export type CoinDenom = AssetDenomUnit['denom']; - -export interface CoinGeckoUSD { - usd: number; -} - -export interface PriceHash { - [key: CoinDenom]: number; -} - -export interface ChainRegistryUtilOptions { - assetLists?: AssetList[]; -} - -export declare class ChainRegistryUtil { - _options?: ChainRegistryUtilOptions; - _asset_lists: AssetList[]; - constructor(options: ChainRegistryUtilOptions); - private getAllAssets(chainName: string): Asset[]; - getAssetByDenom(chainName: string, denom: CoinDenom): Asset; - getDenomByCoinGeckoId(chainName: string, coinGeckoId: string): CoinDenom; - chainDenomToSymbol(chainName: string, denom: CoinDenom): string; - getSymbolByChainDenom(chainName: string, token: string): CoinDenom; - getExponentByDenom(chainName: string, denom: CoinDenom): Exponent; - convertCoinGeckoPricesToDenomPriceMap( - chainName: string, - prices: Record - ): PriceHash; - noDecimals(num: number | string): string; - convertBaseUnitsToDollarValue( - chainName: string, - prices: PriceHash, - symbol: string, - amount: string | number - ): string; - convertDollarValueToDenomUnits( - chainName: string, - prices: PriceHash, - symbol: string, - value: string | number - ): string; - convertBaseUnitsToDisplayUnits( - chainName: string, - symbol: string, - amount: string | number - ): string; -} diff --git a/packages/utils/types/index.d.ts b/packages/utils/types/index.d.ts index 3d46783ee..a69a051c9 100644 --- a/packages/utils/types/index.d.ts +++ b/packages/utils/types/index.d.ts @@ -1,3 +1,3 @@ -export * from './chain-registry-util'; +export * from './asset-list-util'; export * from './fees'; export * from './utils'; From eca45baa4a7306f45097f42cacf2342b904caec2 Mon Sep 17 00:00:00 2001 From: "xuwenyang2005@126.com" Date: Tue, 11 Jul 2023 15:10:00 +0800 Subject: [PATCH 3/5] add test cases to utils package --- .../utils/__tests__/asset-list-util.test.js | 88 +++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 packages/utils/__tests__/asset-list-util.test.js diff --git a/packages/utils/__tests__/asset-list-util.test.js b/packages/utils/__tests__/asset-list-util.test.js new file mode 100644 index 000000000..8e025a383 --- /dev/null +++ b/packages/utils/__tests__/asset-list-util.test.js @@ -0,0 +1,88 @@ +import { assets } from 'chain-registry'; + +import { + convertBaseUnitsToDisplayUnits, + convertBaseUnitsToDollarValue, + convertCoinGeckoPricesToDenomPriceMap, + convertDollarValueToDenomUnits, + getAssetByDenom, + getChainDenomBySymbol, + getDenomByCoinGeckoId, + getExponentByDenom, + getSymbolByChainDenom, + noDecimals +} from '../src'; + +describe('tests for asset-list-util', () => { + let testAssets = []; + + beforeAll(() => { + testAssets = assets.find((it) => it.chain_name === 'osmosis')?.assets || []; + }); + + it('get osmosis asset by denom', () => { + const asset = getAssetByDenom(testAssets, 'uosmo'); + expect(asset.name).toEqual('Osmosis'); + }); + + it('get osmosis denom by geckoId', () => { + const denom = getDenomByCoinGeckoId(testAssets, 'osmosis'); + expect(denom).toEqual('uosmo'); + }); + + it('get osmosis symbol by denom', () => { + const token = getSymbolByChainDenom(testAssets, 'uosmo'); + expect(token).toEqual('OSMO'); + }); + + it('get osmosis denom by symbol', () => { + const denom = getChainDenomBySymbol(testAssets, 'OSMO'); + expect(denom).toEqual('uosmo'); + }); + + it('get osmosis exponent by denom', () => { + const exponent = getExponentByDenom(testAssets, 'uosmo'); + expect(exponent).toEqual(6); + }); + + it('convert osmosis gecko price to denom price map', () => { + const priceMap = convertCoinGeckoPricesToDenomPriceMap(testAssets, { + osmosis: { + usd: 0.498124 + } + }); + expect(priceMap.uosmo).toEqual(0.498124); + }); + + it('convert number no decimals', () => { + const re1 = noDecimals(1.12); + expect(re1).toEqual('1'); + const re2 = noDecimals(1.67); + expect(re2).toEqual('1'); + }); + + it('convert osmosis base units to dollar value', () => { + const re = convertBaseUnitsToDollarValue( + testAssets, + { uosmo: 1 }, + 'OSMO', + 5 + ); + expect(re).toEqual('0.000005'); + }); + + it('convert doller value to osmosis denom units', () => { + const re = convertDollarValueToDenomUnits( + testAssets, + { uosmo: 1 }, + 'OSMO', + 0.00001 + ); + expect(re).toEqual('10'); + }); + + it('convert osmosis base units to display units', () => { + const re = convertBaseUnitsToDisplayUnits(testAssets, 'OSMO', 99); + expect(re).toEqual('0.000099'); + }); +}); From eb18cf16ad9d0efcbda9984155109b4c389be811 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Wed, 12 Jul 2023 01:39:55 +0200 Subject: [PATCH 4/5] update --- packages/assets/src/asset_lists.ts | 20624 ++++++++++++++--------- packages/chain-registry/chain-registry | 2 +- packages/chain-registry/src/assets.ts | 459 +- packages/chain-registry/src/chains.ts | 207 +- packages/juno/src/asset_list.ts | 39 + packages/juno/src/chain.ts | 12 + packages/osmosis/src/asset_list.ts | 261 + packages/osmosis/src/chain.ts | 44 +- 8 files changed, 13545 insertions(+), 8103 deletions(-) diff --git a/packages/assets/src/asset_lists.ts b/packages/assets/src/asset_lists.ts index 60b01b614..99cc0a5bd 100644 --- a/packages/assets/src/asset_lists.ts +++ b/packages/assets/src/asset_lists.ts @@ -1,5 +1,80 @@ import { AssetList } from '@chain-registry/types'; const asset_lists: AssetList[] = [ + { + "chain_name": "picasso", + "assets": [ + { + "description": "The native staking and governance token of Centauri.", + "denom_units": [ + { + "denom": "ibc/1CF1239A3068964DAF55F7300D7BE016E4E184F58EEB59096B138F6D72628BAA", + "exponent": 0, + "aliases": [ + "ppica" + ] + }, + { + "denom": "pica", + "exponent": 12 + } + ], + "base": "ibc/1CF1239A3068964DAF55F7300D7BE016E4E184F58EEB59096B138F6D72628BAA", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-2", + "base_denom": "ppica", + "chain_name": "composable" + }, + "chain": { + "channel_id": "channel-17" + } + } + ] + }, + { + "description": "The native staking and governance token of Kusama Relay Chain.", + "denom_units": [ + { + "denom": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "exponent": 0, + "aliases": [ + "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9" + ] + }, + { + "denom": "ksm", + "exponent": 12 + } + ], + "type_asset": "ics20", + "base": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "name": "KSM", + "display": "ksm", + "symbol": "KSM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-2", + "base_denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "chain_name": "composable" + }, + "chain": { + "channel_id": "channel-17" + } + } + ] + } + ] + }, { "chain_name": "8ball", "assets": [ @@ -6791,1781 +6866,1771 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "arkh", + "chain_name": "archway", "assets": [ { - "description": "The native token of Osmosis", + "description": "The native token of Axelar", "denom_units": [ { - "denom": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", + "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", "exponent": 0, "aliases": [ - "uosmo" + "uaxl" ] }, { - "denom": "osmo", + "denom": "axl", "exponent": 6 } ], - "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "name": "Axelar", + "display": "axl", + "symbol": "AXL", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "coingecko_id": "axelar", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-648", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "uaxl", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-2" } } ] }, { + "description": "Circle's stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/FBA36393A0FF23EAAD5B1A99E06F66128F20E7A78B3FD58632F0FC247167DA17", + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "exponent": 0, "aliases": [ - "uion" + "uusdc" ] }, { - "denom": "ion", + "denom": "usdc", "exponent": 6 } ], - "base": "ibc/FBA36393A0FF23EAAD5B1A99E06F66128F20E7A78B3FD58632F0FC247167DA17", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-648", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + }, + "coingecko_id": "axlusdc" }, { + "description": "Frax's fractional-algorithmic stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/20F466EFE3320DB60CEC68E81EF071D61BD1B6E4488576BF3F3E74F563D27AEE", + "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "frax-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "frax", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/20F466EFE3320DB60CEC68E81EF071D61BD1B6E4488576BF3F3E74F563D27AEE", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-648", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "frax-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } }, { + "description": "Dai stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/9A50FA450E6C8437C1AE8F999294613E875987E27E3A89DE96DAD6FCCED80DBC", + "denom": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "dai-wei" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "dai", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/9A50FA450E6C8437C1AE8F999294613E875987E27E3A89DE96DAD6FCCED80DBC", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-648", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "dai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "assetmantle", - "assets": [ + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" + } + }, { - "description": "The native token of JUNO Chain", + "description": "Tether's USD stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", + "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", "exponent": 0, "aliases": [ - "ujuno" + "uusdt" ] }, { - "denom": "juno", + "denom": "usdt", "exponent": 6 } ], - "base": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", + "base": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-83", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-110", + "base_denom": "uusdt", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png" + } }, { + "description": "Wrapped Ether on Axelar", "denom_units": [ { - "denom": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", + "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "weth-wei" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "weth", + "exponent": 18 } ], - "type_asset": "ics20", - "base": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-83", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-110", + "base_denom": "weth-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "Wrapped Bitcoin on Axelar", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "wbtc", + "exponent": 8 } ], - "base": "ibc/D07580A7D155F80ADA6CF31E75A964453CC179AF91CC591A040F214708E9D94E", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-83", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-110", + "base_denom": "wbtc-satoshi", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "Aave on Axelar", "denom_units": [ { - "denom": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", + "denom": "ibc/9D52535D9941EAA2081B50B1C0D974F7E4751ED5A402D10626B768E00FDB5952", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "aave-wei" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "aave", + "exponent": 18 } ], - "base": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", + "base": "ibc/9D52535D9941EAA2081B50B1C0D974F7E4751ED5A402D10626B768E00FDB5952", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-83", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-110", + "base_denom": "aave-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + } }, { - "description": "The native staking and governance token of the Kujira chain.", + "description": "ApeCoin on Axelar", "denom_units": [ { - "denom": "ibc/7CD0497ECB1486F19696C90E6CB500494DC67E2E83E127D97562A117C2316C1F", + "denom": "ibc/57761007A24DA566959E8F79CA90DA6D1AF17D9BCDDD944CF7C28EAD2DED050C", "exponent": 0, "aliases": [ - "ukuji" + "ape-wei" ] }, { - "denom": "kuji", - "exponent": 6 + "denom": "ape", + "exponent": 18 } ], - "base": "ibc/7CD0497ECB1486F19696C90E6CB500494DC67E2E83E127D97562A117C2316C1F", - "name": "Kuji", - "display": "kuji", - "symbol": "KUJI", - "coingecko_id": "kujira", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" - }, + "base": "ibc/57761007A24DA566959E8F79CA90DA6D1AF17D9BCDDD944CF7C28EAD2DED050C", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-19", - "base_denom": "ukuji", - "chain_name": "kujira" + "channel_id": "channel-110", + "base_denom": "ape-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + } }, { - "description": "The native over-collateralized stablecoin from the Kujira chain.", + "description": "Axie Infinity Shard on Axelar", "denom_units": [ { - "denom": "ibc/B880048533C81351A295933E0B8B03829BD54BF5C8978D78173B7DEE8F804547", + "denom": "ibc/0688C62E3052455C25EB9FCDD9850FCFC7E75E104985EE919D3E00C860F972D0", "exponent": 0, "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + "axs-wei" ] }, { - "denom": "usk", - "exponent": 6 + "denom": "axs", + "exponent": 18 } ], - "base": "ibc/B880048533C81351A295933E0B8B03829BD54BF5C8978D78173B7DEE8F804547", - "name": "USK", - "display": "USK", - "symbol": "USK", - "coingecko_id": "usk", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" - }, + "base": "ibc/0688C62E3052455C25EB9FCDD9850FCFC7E75E104985EE919D3E00C860F972D0", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-19", - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira" + "channel_id": "channel-110", + "base_denom": "axs-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + } }, { - "description": "ampKUJI", + "description": "Chainlink on Axelar", "denom_units": [ { - "denom": "ibc/DFA52669A9ABA2D89EC097D56D93BF807C909E09C03556784813275C824F1FFA", + "denom": "ibc/73D01D9D032390E81CBC20B7E0507B84DF54F3CE5302BFF52776E7D8930F2A6C", "exponent": 0, "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + "link-wei" ] }, { - "denom": "ampKUJI", - "exponent": 6 + "denom": "link", + "exponent": 18 } ], - "base": "ibc/DFA52669A9ABA2D89EC097D56D93BF807C909E09C03556784813275C824F1FFA", - "name": "ampKUJI", - "display": "ampKUJI", - "symbol": "ampKUJI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" - }, + "base": "ibc/73D01D9D032390E81CBC20B7E0507B84DF54F3CE5302BFF52776E7D8930F2A6C", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-19", - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira" + "channel_id": "channel-110", + "base_denom": "link-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + } }, { - "description": "MantaDAO Governance Token", + "description": "Maker on Axelar", "denom_units": [ { - "denom": "ibc/AFBBB7C9028094E9EBF35BF8760B91D5A896CF0E59BE490029660E427A8555C6", + "denom": "ibc/F2C3F097E1EFD9B54CF374BA1FA64C5FF995F228CC389CDFB094BF7942B8F00F", "exponent": 0, "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + "mkr-wei" ] }, { - "denom": "mnta", - "exponent": 6 + "denom": "mkr", + "exponent": 18 } ], - "base": "ibc/AFBBB7C9028094E9EBF35BF8760B91D5A896CF0E59BE490029660E427A8555C6", - "name": "MNTA", - "display": "MNTA", - "symbol": "MNTA", - "coingecko_id": "mantadao", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" - }, + "base": "ibc/F2C3F097E1EFD9B54CF374BA1FA64C5FF995F228CC389CDFB094BF7942B8F00F", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-19", - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira" + "channel_id": "channel-110", + "base_denom": "mkr-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } }, { - "description": "The content house of Kujira", + "description": "Rai Reflex Index on Axelar", "denom_units": [ { - "denom": "ibc/B8BF66D4D4D55146ABD6BA88374667AF3BAAE5337AFC9B7B97264FA333C27228", + "denom": "ibc/8F93A962F1ACCC0C55B45358ACCEA4557206AE71A8BC73A2044525EE43EF5D31", "exponent": 0, "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + "rai-wei" ] }, { - "denom": "wink", - "exponent": 6 + "denom": "rai", + "exponent": 18 } ], - "base": "ibc/B8BF66D4D4D55146ABD6BA88374667AF3BAAE5337AFC9B7B97264FA333C27228", - "name": "WINK", - "display": "wink", - "symbol": "WINK", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" - }, + "base": "ibc/8F93A962F1ACCC0C55B45358ACCEA4557206AE71A8BC73A2044525EE43EF5D31", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-19", - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira" + "channel_id": "channel-110", + "base_denom": "rai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-2" } } - ] - }, - { - "description": "The native token of OKExChain", + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + } + }, + { + "description": "Shiba Inu on Axelar", "denom_units": [ { - "denom": "ibc/33E3481B6DE69CBABF20B3130A10F7CDF0B0ED5F0EB9F9980AD92A1B3C0DDB5D", + "denom": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", "exponent": 0, "aliases": [ - "wei" + "shib-wei" ] }, { - "denom": "okt", + "denom": "shib", "exponent": 18 } ], - "base": "ibc/33E3481B6DE69CBABF20B3130A10F7CDF0B0ED5F0EB9F9980AD92A1B3C0DDB5D", - "name": "OKExChain", - "display": "okt", - "symbol": "OKT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" - }, - "coingecko_id": "oec-token", + "base": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-30", - "base_denom": "wei", - "chain_name": "okexchain" + "channel_id": "channel-110", + "base_denom": "shib-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + } }, { - "description": "The native token of Osmosis", + "description": "Lido Staked Ether on Axelar", "denom_units": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/2303C1F7A377DF6D9FF74B64C36BCFA8DF62020C7ACEA64A82C27CABD2DEF15C", "exponent": 0, "aliases": [ - "uosmo" + "steth-wei" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "steth", + "exponent": 18 } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/2303C1F7A377DF6D9FF74B64C36BCFA8DF62020C7ACEA64A82C27CABD2DEF15C", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-232", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "steth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } }, { + "description": "Uniswap on Axelar", "denom_units": [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/ED457C0D88A8893E3BFEA226630E761C887AA2433F6C7BBCC29B591349A65BB7", "exponent": 0, "aliases": [ - "uion" + "uni-wei" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "uni", + "exponent": 18 } ], - "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/ED457C0D88A8893E3BFEA226630E761C887AA2433F6C7BBCC29B591349A65BB7", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-232", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "uni-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + } }, { + "description": "Chain on Axelar", "denom_units": [ { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/27D56A1695FDB2CADE16B371BB80709B2F46623647FA958141E0F74854E94DDF", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "xcn-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "xcn", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/27D56A1695FDB2CADE16B371BB80709B2F46623647FA958141E0F74854E94DDF", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-232", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "xcn-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + } }, { + "description": "Wrapped Polkadot on Axelar", "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "dot-planck" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "dot", + "exponent": 10 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-232", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-110", + "base_denom": "dot-planck", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "aura", - "assets": [ + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" + } + }, { - "description": "The native token of Axelar", + "description": "Wrapped Moonbeam on Axelar", "denom_units": [ { - "denom": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", + "denom": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", "exponent": 0, "aliases": [ - "uaxl" + "wglmr-wei" ] }, { - "denom": "axl", - "exponent": 6 + "denom": "wglmr", + "exponent": 18 } ], - "base": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", - "name": "Axelar", - "display": "axl", - "symbol": "AXL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" - }, - "coingecko_id": "axelar", + "base": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "uaxl", + "channel_id": "channel-110", + "base_denom": "wglmr-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" + } }, { - "description": "Circle's stablecoin on Axelar", + "description": "Wrapped Matic on Axelar", "denom_units": [ { - "denom": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3", + "denom": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", "exponent": 0, "aliases": [ - "uusdc" + "wmatic-wei" ] }, { - "denom": "usdc", - "exponent": 6 + "denom": "wmatic", + "exponent": 18 } ], - "base": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", + "base": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "uusdc", + "channel_id": "channel-110", + "base_denom": "wmatic-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - }, - "coingecko_id": "axlusdc" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } }, { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", + "description": "Wrapped BNB on Axelar", "denom_units": [ { - "denom": "ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916", + "denom": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", "exponent": 0, "aliases": [ - "frax-wei" + "wbnb-wei" ] }, { - "denom": "frax", + "denom": "wbnb", "exponent": 18 } ], - "base": "ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", + "base": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "frax-wei", + "channel_id": "channel-110", + "base_denom": "wbnb-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" } }, { - "description": "Dai stablecoin on Axelar", + "description": "Binance USD on Axelar.", "denom_units": [ { - "denom": "ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2", + "denom": "ibc/71BA048E21A9AEAC5E23FB7D91BE0E8730D50AB8993A01307616AA0C7EA618E3", "exponent": 0, "aliases": [ - "dai-wei" + "busd-wei" ] }, { - "denom": "dai", + "denom": "busd", "exponent": 18 } ], - "base": "ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", + "base": "ibc/71BA048E21A9AEAC5E23FB7D91BE0E8730D50AB8993A01307616AA0C7EA618E3", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "dai-wei", + "channel_id": "channel-110", + "base_denom": "busd-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } }, { - "description": "Tether's USD stablecoin on Axelar", + "description": "Wrapped AVAX on Axelar.", "denom_units": [ { - "denom": "ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0", + "denom": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", "exponent": 0, "aliases": [ - "uusdt" + "wavax-wei" ] }, { - "denom": "usdt", - "exponent": 6 + "denom": "avax", + "exponent": 18 } ], - "base": "ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", + "base": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "uusdt", + "channel_id": "channel-110", + "base_denom": "wavax-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/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/_non-cosmos/avalanche/images/wavax.svg" } }, { - "description": "Wrapped Ether on Axelar", + "description": "Wrapped FTM on Axelar.", "denom_units": [ { - "denom": "ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389", + "denom": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", "exponent": 0, "aliases": [ - "weth-wei" + "wftm-wei" ] }, { - "denom": "weth", + "denom": "ftm", "exponent": 18 } ], - "base": "ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", + "base": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "weth-wei", + "channel_id": "channel-110", + "base_denom": "wftm-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } }, { - "description": "Wrapped Bitcoin on Axelar", + "description": "Circle's stablecoin from Polygon on Axelar", "denom_units": [ { - "denom": "ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F", + "denom": "ibc/1FF126BCB643CAE7CF54231292B34F535A7AD77360A302FFF45A1E1E9BC7CC62", "exponent": 0, "aliases": [ - "wbtc-satoshi" + "polygon-uusdc" ] }, { - "denom": "wbtc", - "exponent": 8 + "denom": "polygon-usdc", + "exponent": 6 } ], - "base": "ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", + "base": "ibc/1FF126BCB643CAE7CF54231292B34F535A7AD77360A302FFF45A1E1E9BC7CC62", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wbtc-satoshi", + "channel_id": "channel-110", + "base_denom": "polygon-uusdc", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" } }, { - "description": "Aave on Axelar", + "description": "Circle's stablecoin from Avalanche on Axelar", "denom_units": [ { - "denom": "ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527", + "denom": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", "exponent": 0, "aliases": [ - "aave-wei" + "avalanche-uusdc" ] }, { - "denom": "aave", - "exponent": 18 + "denom": "avalanche-usdc", + "exponent": 6 } ], - "base": "ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", + "base": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "aave-wei", + "channel_id": "channel-110", + "base_denom": "avalanche-uusdc", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" } }, { - "description": "ApeCoin on Axelar", + "description": "Wrapped FIL on Axelar", "denom_units": [ { - "denom": "ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85", + "denom": "ibc/761BB661E5B5C11E35CF61CF5A3D0C683C0F1E24CCB7EFD507D42EEFA811B8CE", "exponent": 0, "aliases": [ - "ape-wei" + "wfil-wei" ] }, { - "denom": "ape", + "denom": "fil", "exponent": 18 } ], - "base": "ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", + "base": "ibc/761BB661E5B5C11E35CF61CF5A3D0C683C0F1E24CCB7EFD507D42EEFA811B8CE", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "ape-wei", + "channel_id": "channel-110", + "base_denom": "wfil-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" } }, { - "description": "Axie Infinity Shard on Axelar", + "description": "Arbitrum on Axelar", "denom_units": [ { - "denom": "ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574", + "denom": "ibc/B02AA07D282BF43527072539B8F63A4FF2588665A339BC09392036623430E3B9", "exponent": 0, "aliases": [ - "axs-wei" + "arb-wei" ] }, { - "denom": "axs", + "denom": "arb", "exponent": 18 } ], - "base": "ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", + "base": "ibc/B02AA07D282BF43527072539B8F63A4FF2588665A339BC09392036623430E3B9", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "axs-wei", + "channel_id": "channel-110", + "base_denom": "arb-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.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" } }, { - "description": "Chainlink on Axelar", "denom_units": [ { - "denom": "ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2", + "denom": "ibc/BE0B6569E21562DA7E129F407AED4EA6625B7CB403E072C8C5E1B7F8D79DCC78", "exponent": 0, "aliases": [ - "link-wei" + "pepe-wei" ] }, { - "denom": "link", + "denom": "pepe", "exponent": 18 } ], - "base": "ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", + "base": "ibc/BE0B6569E21562DA7E129F407AED4EA6625B7CB403E072C8C5E1B7F8D79DCC78", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "link-wei", + "channel_id": "channel-110", + "base_denom": "pepe-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" - } + ] }, { - "description": "Maker on Axelar", "denom_units": [ { - "denom": "ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C", + "denom": "ibc/AF88A5C6D9B06451DC0BABB1C6CF9BD087236FF38215F7B4FF4AC42D0AEE6D97", "exponent": 0, "aliases": [ - "mkr-wei" + "cbeth-wei" ] }, { - "denom": "mkr", + "denom": "cbeth", "exponent": 18 } ], - "base": "ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", + "base": "ibc/AF88A5C6D9B06451DC0BABB1C6CF9BD087236FF38215F7B4FF4AC42D0AEE6D97", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "mkr-wei", + "channel_id": "channel-110", + "base_denom": "cbeth-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" - } + ] }, { - "description": "Rai Reflex Index on Axelar", "denom_units": [ { - "denom": "ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228", + "denom": "ibc/351D4A530C080FEC850B941610E71D465E0596146253C6CC4E835DF7D433DE3F", "exponent": 0, "aliases": [ - "rai-wei" + "reth-wei" ] }, { - "denom": "rai", + "denom": "reth", "exponent": 18 } ], - "base": "ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", + "base": "ibc/351D4A530C080FEC850B941610E71D465E0596146253C6CC4E835DF7D433DE3F", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "rai-wei", + "channel_id": "channel-110", + "base_denom": "reth-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" - } + ] }, { - "description": "Shiba Inu on Axelar", "denom_units": [ { - "denom": "ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E", + "denom": "ibc/B1ADD78E630072DA77D050CA6EDD6A7B551281CBA8368F631EB4420CB080D0BE", "exponent": 0, "aliases": [ - "shib-wei" + "sfrxeth-wei" ] }, { - "denom": "shib", + "denom": "sfrxeth", "exponent": 18 } ], - "base": "ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", + "base": "ibc/B1ADD78E630072DA77D050CA6EDD6A7B551281CBA8368F631EB4420CB080D0BE", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "shib-wei", + "channel_id": "channel-110", + "base_denom": "sfrxeth-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" - } + ] }, { - "description": "Lido Staked Ether on Axelar", "denom_units": [ { - "denom": "ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044", + "denom": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", "exponent": 0, "aliases": [ - "steth-wei" + "wsteth-wei" ] }, { - "denom": "steth", + "denom": "wsteth", "exponent": 18 } ], - "base": "ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", + "base": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "steth-wei", + "channel_id": "channel-110", + "base_denom": "wsteth-wei", "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" - } + ] }, { - "description": "Uniswap on Axelar", + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "exponent": 0, "aliases": [ - "uni-wei" + "uatom" ] }, { - "denom": "uni", - "exponent": 18 + "denom": "atom", + "exponent": 6 } ], - "base": "ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "uni-wei", - "chain_name": "axelar" + "channel_id": "channel-623", + "base_denom": "uatom", + "chain_name": "cosmoshub" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-0" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" - } + ] }, { - "description": "Chain on Axelar", + "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ { - "denom": "ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E", + "denom": "ibc/27357E0424B1895B62F7A63584266AA6C6E536B2830416C16440A17AD9837AD3", "exponent": 0, "aliases": [ - "xcn-wei" + "ukuji" ] }, { - "denom": "xcn", - "exponent": 18 + "denom": "kuji", + "exponent": 6 } ], - "base": "ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", + "base": "ibc/27357E0424B1895B62F7A63584266AA6C6E536B2830416C16440A17AD9837AD3", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "xcn-wei", - "chain_name": "axelar" + "channel_id": "channel-99", + "base_denom": "ukuji", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-11" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" - } + ] }, { - "description": "Wrapped Polkadot on Axelar", + "description": "The native over-collateralized stablecoin from the Kujira chain.", "denom_units": [ { - "denom": "ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5", + "denom": "ibc/3B403F62CAC6378678926BCC72FEC6AA208F83C848D1E5EA9F82CE6BD75EC011", "exponent": 0, "aliases": [ - "dot-planck" + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" ] }, { - "denom": "dot", - "exponent": 10 + "denom": "usk", + "exponent": 6 } ], - "base": "ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", + "base": "ibc/3B403F62CAC6378678926BCC72FEC6AA208F83C848D1E5EA9F82CE6BD75EC011", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "dot-planck", - "chain_name": "axelar" + "channel_id": "channel-99", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-11" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" - } + ] }, { - "description": "Wrapped Moonbeam on Axelar", + "description": "ampKUJI", "denom_units": [ { - "denom": "ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60", + "denom": "ibc/9C1E9576987BACB6543185109C1DEA18E4F42A83E238512D201A9B0F290ACDCA", "exponent": 0, "aliases": [ - "wglmr-wei" + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" ] }, { - "denom": "wglmr", - "exponent": 18 + "denom": "ampKUJI", + "exponent": 6 } ], - "base": "ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", + "base": "ibc/9C1E9576987BACB6543185109C1DEA18E4F42A83E238512D201A9B0F290ACDCA", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wglmr-wei", - "chain_name": "axelar" + "channel_id": "channel-99", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-11" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" - } + ] }, { - "description": "Wrapped Matic on Axelar", + "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183", + "denom": "ibc/6B597D3C177FB0BE11358AA913EA5159D6DDC775C63EB224E4A735256743F3C3", "exponent": 0, "aliases": [ - "wmatic-wei" + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" ] }, { - "denom": "wmatic", - "exponent": 18 + "denom": "mnta", + "exponent": 6 } ], - "base": "ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", + "base": "ibc/6B597D3C177FB0BE11358AA913EA5159D6DDC775C63EB224E4A735256743F3C3", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wmatic-wei", - "chain_name": "axelar" + "channel_id": "channel-99", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-11" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } + ] }, { - "description": "Wrapped BNB on Axelar", + "description": "The content house of Kujira", "denom_units": [ { - "denom": "ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE", + "denom": "ibc/D7CE2016478F70A314213886FE7FAFCDDEF0DD7BFBA6FB6CF64BE8A9591BD0F6", "exponent": 0, "aliases": [ - "wbnb-wei" + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" ] }, { - "denom": "wbnb", - "exponent": 18 + "denom": "wink", + "exponent": 6 } ], - "base": "ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", + "base": "ibc/D7CE2016478F70A314213886FE7FAFCDDEF0DD7BFBA6FB6CF64BE8A9591BD0F6", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wbnb-wei", - "chain_name": "axelar" + "channel_id": "channel-99", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-11" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" - } + ] }, { - "description": "Binance USD on Axelar.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "busd-wei" + "uosmo" ] }, { - "denom": "busd", - "exponent": 18 + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D", - "name": "Binance USD", - "display": "busd", - "symbol": "BUSD", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "busd-wei", - "chain_name": "axelar" + "channel_id": "channel-1429", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-1" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } + ] }, { - "description": "Wrapped AVAX on Axelar.", "denom_units": [ { - "denom": "ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "wavax-wei" + "uion" ] }, { - "denom": "avax", - "exponent": 18 + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5", - "name": "Wrapped AVAX", - "display": "avax", - "symbol": "WAVAX", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wavax-wei", - "chain_name": "axelar" + "channel_id": "channel-1429", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } + ] }, { - "description": "Wrapped FTM on Axelar.", "denom_units": [ { - "denom": "ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "wftm-wei" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "ftm", - "exponent": 18 + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79", - "name": "Wrapped FTM", - "display": "ftm", - "symbol": "WFTM", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wftm-wei", - "chain_name": "axelar" + "channel_id": "channel-1429", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-1" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } + ] }, { - "description": "Circle's stablecoin from Polygon on Axelar", "denom_units": [ { - "denom": "ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "polygon-uusdc" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "polygon-usdc", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025", - "name": "USD Coin from Polygon", - "display": "polygon-usdc", - "symbol": "USDC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "polygon-uusdc", - "chain_name": "axelar" + "channel_id": "channel-1429", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - } - }, + ] + } + ] + }, + { + "chain_name": "arkh", + "assets": [ { - "description": "Circle's stablecoin from Avalanche on Axelar", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF", + "denom": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", "exponent": 0, "aliases": [ - "avalanche-uusdc" + "uosmo" ] }, { - "denom": "avalanche-usdc", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF", - "name": "USD Coin from Avalanche", - "display": "avalanche-usdc", - "symbol": "USDC", + "base": "ibc/6AE2756AA7EAA8FA06E11472EA05CA681BD8D3FBC1AAA9F06C79D1EC1C90DC9B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "avalanche-uusdc", - "chain_name": "axelar" + "channel_id": "channel-648", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-12" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - } + ] }, { - "description": "Wrapped FIL on Axelar", "denom_units": [ { - "denom": "ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D", + "denom": "ibc/FBA36393A0FF23EAAD5B1A99E06F66128F20E7A78B3FD58632F0FC247167DA17", "exponent": 0, "aliases": [ - "wfil-wei" + "uion" ] }, { - "denom": "fil", - "exponent": 18 + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D", - "name": "Wrapped FIL from Filecoin", - "display": "fil", - "symbol": "axlFIL", + "base": "ibc/FBA36393A0FF23EAAD5B1A99E06F66128F20E7A78B3FD58632F0FC247167DA17", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wfil-wei", - "chain_name": "axelar" + "channel_id": "channel-648", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-12" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" - } + ] }, { - "description": "Arbitrum on Axelar", "denom_units": [ { - "denom": "ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608", + "denom": "ibc/20F466EFE3320DB60CEC68E81EF071D61BD1B6E4488576BF3F3E74F563D27AEE", "exponent": 0, "aliases": [ - "arb-wei" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "arb", - "exponent": 18 + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608", - "name": "Arbitrum", - "display": "arb", - "symbol": "ARB", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/20F466EFE3320DB60CEC68E81EF071D61BD1B6E4488576BF3F3E74F563D27AEE", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "arb-wei", - "chain_name": "axelar" + "channel_id": "channel-648", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-12" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" - } + ] }, { "denom_units": [ { - "denom": "ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19", + "denom": "ibc/9A50FA450E6C8437C1AE8F999294613E875987E27E3A89DE96DAD6FCCED80DBC", "exponent": 0, "aliases": [ - "pepe-wei" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "pepe", - "exponent": 18 + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19", - "name": "Pepe", - "display": "pepe", - "symbol": "PEPE", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/9A50FA450E6C8437C1AE8F999294613E875987E27E3A89DE96DAD6FCCED80DBC", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "pepe-wei", - "chain_name": "axelar" + "channel_id": "channel-648", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-12" } } ] - }, + } + ] + }, + { + "chain_name": "assetmantle", + "assets": [ { + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA", + "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", "exponent": 0, "aliases": [ - "cbeth-wei" + "ujuno" ] }, { - "denom": "cbeth", - "exponent": 18 + "denom": "juno", + "exponent": 6 } ], - "base": "ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA", - "name": "Coinbase Wrapped Staked ETH", - "display": "cbeth", - "symbol": "cbETH", + "base": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "cbeth-wei", - "chain_name": "axelar" + "channel_id": "channel-83", + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] @@ -8573,1081 +8638,3836 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172", + "denom": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", "exponent": 0, "aliases": [ - "reth-wei" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "reth", - "exponent": 18 + "denom": "atom", + "exponent": 6 } ], - "base": "ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172", - "name": "Rocket Pool Ether", - "display": "reth", - "symbol": "rETH", + "type_asset": "ics20", + "base": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "reth-wei", - "chain_name": "axelar" + "channel_id": "channel-83", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] }, { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3", - "exponent": 0, - "aliases": [ - "sfrxeth-wei" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "sfrxeth", - "exponent": 18 + "denom": "banana", + "exponent": 6 } ], - "base": "ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3", - "name": "Staked Frax Ether", - "display": "sfrxeth", - "symbol": "sfrxETH", + "base": "ibc/D07580A7D155F80ADA6CF31E75A964453CC179AF91CC591A040F214708E9D94E", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "sfrxeth-wei", - "chain_name": "axelar" + "channel_id": "channel-83", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] }, { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF", + "denom": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", "exponent": 0, "aliases": [ - "wsteth-wei" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "wsteth", - "exponent": 18 + "denom": "neta", + "exponent": 6 } ], - "base": "ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF", - "name": "Wrapped Lido Staked Ether", - "display": "wsteth", - "symbol": "wstETH", + "base": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", + "name": "Neta", + "display": "neta", + "symbol": "NETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + }, + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-74", - "base_denom": "wsteth-wei", - "chain_name": "axelar" + "channel_id": "channel-83", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] }, { - "description": "The native token of Nois", + "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ { - "denom": "ibc/1FD48481DAA1B05575FE6D3E35929264437B8424A73243B207BCB67401C7F1FD", + "denom": "ibc/7CD0497ECB1486F19696C90E6CB500494DC67E2E83E127D97562A117C2316C1F", "exponent": 0, "aliases": [ - "unois" + "ukuji" ] }, { - "denom": "nois", + "denom": "kuji", "exponent": 6 } ], - "base": "ibc/1FD48481DAA1B05575FE6D3E35929264437B8424A73243B207BCB67401C7F1FD", - "name": "Nois", - "display": "nois", - "symbol": "NOIS", + "base": "ibc/7CD0497ECB1486F19696C90E6CB500494DC67E2E83E127D97562A117C2316C1F", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" + "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" }, - "keywords": [ - "nois", - "randomness", - "drand", - "wasm" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-16", - "base_denom": "unois", - "chain_name": "nois" + "channel_id": "channel-19", + "base_denom": "ukuji", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-65" } } ] - } - ] - }, - { - "chain_name": "axelar", - "assets": [ + }, { - "description": "The native EVM, governance and staking token of the Acrechain", + "description": "The native over-collateralized stablecoin from the Kujira chain.", "denom_units": [ { - "denom": "ibc/47F03B29C23ADD8E97F5209E907E1A765FE69FC60C414D7E80E7419E62874F27", + "denom": "ibc/B880048533C81351A295933E0B8B03829BD54BF5C8978D78173B7DEE8F804547", "exponent": 0, "aliases": [ - "aacre" + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" ] }, { - "denom": "acre", - "exponent": 18 + "denom": "usk", + "exponent": 6 } ], - "base": "ibc/47F03B29C23ADD8E97F5209E907E1A765FE69FC60C414D7E80E7419E62874F27", - "name": "Acre", - "display": "acre", - "symbol": "ACRE", + "base": "ibc/B880048533C81351A295933E0B8B03829BD54BF5C8978D78173B7DEE8F804547", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png" + "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" }, - "coingecko_id": "arable-protocol", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "aacre", - "chain_name": "acrechain" + "channel_id": "channel-19", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-51" + "channel_id": "channel-65" } } ] }, { - "description": "Overcollateralized stable coin for Arable derivatives v1", + "description": "ampKUJI", "denom_units": [ { - "denom": "ibc/B46F7431C564183F580DEF1AD36CCE98183F3811C76DC7DB6CC61E32E274DBA2", + "denom": "ibc/DFA52669A9ABA2D89EC097D56D93BF807C909E09C03556784813275C824F1FFA", "exponent": 0, "aliases": [ - "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c" + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" ] }, { - "denom": "arusd", - "exponent": 18 + "denom": "ampKUJI", + "exponent": 6 } ], - "base": "ibc/B46F7431C564183F580DEF1AD36CCE98183F3811C76DC7DB6CC61E32E274DBA2", - "name": "Arable USD", - "display": "arusd", - "symbol": "arUSD", + "base": "ibc/DFA52669A9ABA2D89EC097D56D93BF807C909E09C03556784813275C824F1FFA", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" }, - "coingecko_id": "arable-usd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", - "chain_name": "acrechain" + "channel_id": "channel-19", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-51" + "channel_id": "channel-65" } } ] }, { - "description": "Ciento Exchange Token", + "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/B28692C9B7C8519DD02329EE1C1977B16B184069DAB71A262A990B50A13CF369", + "denom": "ibc/AFBBB7C9028094E9EBF35BF8760B91D5A896CF0E59BE490029660E427A8555C6", "exponent": 0, "aliases": [ - "erc20/0xAE6D3334989a22A65228732446731438672418F2" + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" ] }, { - "denom": "cnto", - "exponent": 18 + "denom": "mnta", + "exponent": 6 } ], - "base": "ibc/B28692C9B7C8519DD02329EE1C1977B16B184069DAB71A262A990B50A13CF369", - "name": "Ciento Token", - "display": "cnto", - "symbol": "CNTO", + "base": "ibc/AFBBB7C9028094E9EBF35BF8760B91D5A896CF0E59BE490029660E427A8555C6", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", - "chain_name": "acrechain" + "channel_id": "channel-19", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-51" + "channel_id": "channel-65" } } ] }, { - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "description": "The content house of Kujira", "denom_units": [ { - "denom": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", + "denom": "ibc/B8BF66D4D4D55146ABD6BA88374667AF3BAAE5337AFC9B7B97264FA333C27228", "exponent": 0, "aliases": [ - "ubld" + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" ] }, { - "denom": "bld", + "denom": "wink", "exponent": 6 } ], - "base": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", - "name": "Agoric", - "display": "bld", - "symbol": "BLD", + "base": "ibc/B8BF66D4D4D55146ABD6BA88374667AF3BAAE5337AFC9B7B97264FA333C27228", + "name": "WINK", + "display": "wink", + "symbol": "WINK", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" }, - "coingecko_id": "agoric", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "ubld", - "chain_name": "agoric" + "channel_id": "channel-19", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-41" + "channel_id": "channel-65" } } ] }, { - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "description": "The native token of OKExChain", "denom_units": [ { - "denom": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", + "denom": "ibc/33E3481B6DE69CBABF20B3130A10F7CDF0B0ED5F0EB9F9980AD92A1B3C0DDB5D", "exponent": 0, "aliases": [ - "uist" + "wei" ] }, { - "denom": "ist", - "exponent": 6 + "denom": "okt", + "exponent": 18 } ], - "base": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", - "name": "Inter Stable Token", - "display": "ist", - "symbol": "IST", + "base": "ibc/33E3481B6DE69CBABF20B3130A10F7CDF0B0ED5F0EB9F9980AD92A1B3C0DDB5D", + "name": "OKExChain", + "display": "okt", + "symbol": "OKT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" }, + "coingecko_id": "oec-token", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "uist", - "chain_name": "agoric" + "channel_id": "channel-30", + "base_denom": "wei", + "chain_name": "okexchain" }, "chain": { - "channel_id": "channel-41" + "channel_id": "channel-14" } } ] }, { - "description": "The native token of Aura Network", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/5DFC2C9529D25039A3103363661C84F1ADC18B238F5AD5B1A23335B4592ADEEB", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "exponent": 0, "aliases": [ - "uaura" + "uosmo" ] }, { - "denom": "aura", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/5DFC2C9529D25039A3103363661C84F1ADC18B238F5AD5B1A23335B4592ADEEB", - "name": "Aura", - "display": "aura", - "symbol": "AURA", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.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" }, - "coingecko_id": "aura-network", + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uaura", - "chain_name": "aura" + "channel_id": "channel-232", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-74" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of Crescent", "denom_units": [ { - "denom": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "exponent": 0, "aliases": [ - "ucre" + "uion" ] }, { - "denom": "cre", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", - "name": "Crescent", - "display": "cre", - "symbol": "CRE", + "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, - "coingecko_id": "crescent-network", + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "ucre", - "chain_name": "crescent" + "channel_id": "channel-232", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-0" } } ] }, { - "description": "The bonded token of Crescent", "denom_units": [ { - "denom": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "exponent": 0, "aliases": [ - "ubcre" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "bcre", + "denom": "ibcx", "exponent": 6 } ], - "base": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", - "name": "Bonded Crescent", - "display": "bcre", - "symbol": "bCRE", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - "coingecko_id": "liquid-staking-crescent", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "ubcre", - "chain_name": "crescent" + "channel_id": "channel-232", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-0" } } ] }, { - "description": "The INJ token is the native governance token for the Injective chain.", "denom_units": [ { - "denom": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "exponent": 0, "aliases": [ - "inj" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "INJ", - "exponent": 18 + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", - "name": "Injective", - "display": "INJ", - "symbol": "INJ", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "injective-protocol", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-84", - "base_denom": "inj", - "chain_name": "injective" + "channel_id": "channel-232", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-0" } } ] - }, + } + ] + }, + { + "chain_name": "aura", + "assets": [ { - "description": "The native token of JUNO Chain", + "description": "The native token of Axelar", "denom_units": [ { - "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", + "denom": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", "exponent": 0, "aliases": [ - "ujuno" + "uaxl" ] }, { - "denom": "juno", + "denom": "axl", "exponent": 6 } ], - "base": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", + "base": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", + "name": "Axelar", + "display": "axl", + "symbol": "AXL", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" }, - "coingecko_id": "juno-network", + "coingecko_id": "axelar", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-71", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-74", + "base_denom": "uaxl", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-1" } } ] }, { + "description": "Circle's stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/CACAE22AF15AF2306AC791E9BC3E8DD9EE79134F2CB039C4DA7F3E2D7680C7A2", + "denom": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "uusdc" ] }, { - "denom": "atom", + "denom": "usdc", "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/CACAE22AF15AF2306AC791E9BC3E8DD9EE79134F2CB039C4DA7F3E2D7680C7A2", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-71", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-74", + "base_denom": "uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + }, + "coingecko_id": "axlusdc" }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "Frax's fractional-algorithmic stablecoin on Axelar", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916", + "exponent": 0, + "aliases": [ + "frax-wei" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "frax", + "exponent": 18 } ], - "base": "ibc/92EE488B12427487B0CD9EBE580A8F740597B335E82602BBDA78FB4E75A13BA4", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-71", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-74", + "base_denom": "frax-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "Dai stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/FB36818FECAFC60E1207AEE7A446F3D53BDEA9697ABE303844C436C2981A73BC", + "denom": "ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "dai-wei" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "dai", + "exponent": 18 } ], - "base": "ibc/FB36818FECAFC60E1207AEE7A446F3D53BDEA9697ABE303844C436C2981A73BC", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", + "base": "ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-71", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-74", + "base_denom": "dai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" + } }, { - "description": "The native staking and governance token of the Kujira chain.", + "description": "Tether's USD stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", + "denom": "ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0", "exponent": 0, "aliases": [ - "ukuji" + "uusdt" ] }, { - "denom": "kuji", + "denom": "usdt", "exponent": 6 } ], - "base": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", - "name": "Kuji", - "display": "kuji", - "symbol": "KUJI", - "coingecko_id": "kujira", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" - }, + "base": "ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "ukuji", - "chain_name": "kujira" + "channel_id": "channel-74", + "base_denom": "uusdt", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png" + } }, { - "description": "The native over-collateralized stablecoin from the Kujira chain.", + "description": "Wrapped Ether on Axelar", "denom_units": [ { - "denom": "ibc/F5AED66744B47E62932EEA90A124209357353A969D37B18EC7DF1CFDB5527BE4", + "denom": "ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389", "exponent": 0, "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + "weth-wei" ] }, { - "denom": "usk", - "exponent": 6 + "denom": "weth", + "exponent": 18 } ], - "base": "ibc/F5AED66744B47E62932EEA90A124209357353A969D37B18EC7DF1CFDB5527BE4", - "name": "USK", - "display": "USK", - "symbol": "USK", - "coingecko_id": "usk", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" - }, + "base": "ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira" + "channel_id": "channel-74", + "base_denom": "weth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } }, { - "description": "ampKUJI", + "description": "Wrapped Bitcoin on Axelar", "denom_units": [ { - "denom": "ibc/DF42D2E5FF6ADE11A08CAA0D4B2A1A6A0F62B0A1B9DEA4F0FD604CD701AC822A", + "denom": "ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F", "exponent": 0, "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + "wbtc-satoshi" ] }, { - "denom": "ampKUJI", - "exponent": 6 + "denom": "wbtc", + "exponent": 8 } ], - "base": "ibc/DF42D2E5FF6ADE11A08CAA0D4B2A1A6A0F62B0A1B9DEA4F0FD604CD701AC822A", - "name": "ampKUJI", - "display": "ampKUJI", - "symbol": "ampKUJI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" - }, + "base": "ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira" + "channel_id": "channel-74", + "base_denom": "wbtc-satoshi", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } }, { - "description": "MantaDAO Governance Token", + "description": "Aave on Axelar", "denom_units": [ { - "denom": "ibc/3C9210D60BC7846865E0D0BA3E78226C0CB5A5D84645F4657B72A76631FCDB00", + "denom": "ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527", "exponent": 0, "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + "aave-wei" ] }, { - "denom": "mnta", - "exponent": 6 + "denom": "aave", + "exponent": 18 } ], - "base": "ibc/3C9210D60BC7846865E0D0BA3E78226C0CB5A5D84645F4657B72A76631FCDB00", - "name": "MNTA", - "display": "MNTA", - "symbol": "MNTA", - "coingecko_id": "mantadao", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" - }, + "base": "ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira" + "channel_id": "channel-74", + "base_denom": "aave-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + } }, { - "description": "The content house of Kujira", + "description": "ApeCoin on Axelar", "denom_units": [ { - "denom": "ibc/801B62D4E92D356DA105DC221B16CC65798951069254BF50F395223BEFC910DA", + "denom": "ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85", "exponent": 0, "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + "ape-wei" ] }, { - "denom": "wink", - "exponent": 6 + "denom": "ape", + "exponent": 18 } ], - "base": "ibc/801B62D4E92D356DA105DC221B16CC65798951069254BF50F395223BEFC910DA", - "name": "WINK", - "display": "wink", - "symbol": "WINK", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" - }, + "base": "ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira" + "channel_id": "channel-74", + "base_denom": "ape-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-14" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + } }, { - "description": "The native utility token of the KYVE network.", + "description": "Axie Infinity Shard on Axelar", "denom_units": [ { - "denom": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", + "denom": "ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574", "exponent": 0, "aliases": [ - "ukyve" + "axs-wei" ] }, { - "denom": "kyve", - "exponent": 6 + "denom": "axs", + "exponent": 18 } ], - "base": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", - "name": "KYVE", - "display": "kyve", - "symbol": "KYVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" - }, + "base": "ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ukyve", - "chain_name": "kyve" + "channel_id": "channel-74", + "base_denom": "axs-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-75" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + } }, { - "description": "The native token of Neutron chain.", + "description": "Chainlink on Axelar", "denom_units": [ { - "denom": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", + "denom": "ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2", "exponent": 0, "aliases": [ - "untrn" + "link-wei" ] }, { - "denom": "ntrn", - "exponent": 6 + "denom": "link", + "exponent": 18 } ], - "base": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", - "name": "Neutron", - "display": "ntrn", - "symbol": "NTRN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" - }, - "coingecko_id": "neutron", + "base": "ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-2", - "base_denom": "untrn", - "chain_name": "neutron" + "channel_id": "channel-74", + "base_denom": "link-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-78" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + } }, { - "description": "Staking and goverance token for ODIN Protocol", + "description": "Maker on Axelar", "denom_units": [ { - "denom": "ibc/8D58BF228C8B8930F5D8D45ED617FFC34CA2AA397288495444FD822201A315DF", + "denom": "ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C", "exponent": 0, "aliases": [ - "loki" + "mkr-wei" ] }, { - "denom": "odin", - "exponent": 6 + "denom": "mkr", + "exponent": 18 } ], - "base": "ibc/8D58BF228C8B8930F5D8D45ED617FFC34CA2AA397288495444FD822201A315DF", - "name": "ODIN", - "display": "odin", - "symbol": "ODIN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png" - }, - "coingecko_id": "odin-protocol", + "base": "ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "loki", - "chain_name": "odin" + "channel_id": "channel-74", + "base_denom": "mkr-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-102" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } }, { - "description": "GEO token for ODIN Protocol", + "description": "Rai Reflex Index on Axelar", "denom_units": [ { - "denom": "ibc/9C41C0CFF8BA0B8D4CA3FB9E21C75E327AB2FD9F98127EEA6457BF1C158E6A8F", + "denom": "ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228", "exponent": 0, "aliases": [ - "mGeo" + "rai-wei" ] }, { - "denom": "geo", - "exponent": 6 + "denom": "rai", + "exponent": 18 } ], - "base": "ibc/9C41C0CFF8BA0B8D4CA3FB9E21C75E327AB2FD9F98127EEA6457BF1C158E6A8F", - "name": "GEO", - "display": "geo", - "symbol": "GEO", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png" - }, + "base": "ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "mGeo", - "chain_name": "odin" + "channel_id": "channel-74", + "base_denom": "rai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-102" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + } }, { - "description": "O9W token for ODIN Protocol", + "description": "Shiba Inu on Axelar", "denom_units": [ { - "denom": "ibc/2EEF48676AB7BAE28BD631B9484E0C957C738B95AE3988571E68A958C0F1A40C", + "denom": "ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E", "exponent": 0, "aliases": [ - "mO9W" + "shib-wei" ] }, { - "denom": "O9W", - "exponent": 6 + "denom": "shib", + "exponent": 18 } ], - "base": "ibc/2EEF48676AB7BAE28BD631B9484E0C957C738B95AE3988571E68A958C0F1A40C", - "name": "O9W", - "display": "O9W", - "symbol": "O9W", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png" - }, + "base": "ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "mO9W", - "chain_name": "odin" + "channel_id": "channel-74", + "base_denom": "shib-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-102" + "channel_id": "channel-1" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + } }, { - "description": "The native token of Osmosis", + "description": "Lido Staked Ether on Axelar", "denom_units": [ { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "denom": "ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044", "exponent": 0, "aliases": [ - "uosmo" + "steth-wei" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "steth", + "exponent": 18 } ], - "base": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" + "base": "ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "steth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } + }, + { + "description": "Uniswap on Axelar", + "denom_units": [ + { + "denom": "ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55", + "exponent": 0, + "aliases": [ + "uni-wei" + ] + }, + { + "denom": "uni", + "exponent": 18 + } + ], + "base": "ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "uni-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + } + }, + { + "description": "Chain on Axelar", + "denom_units": [ + { + "denom": "ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E", + "exponent": 0, + "aliases": [ + "xcn-wei" + ] + }, + { + "denom": "xcn", + "exponent": 18 + } + ], + "base": "ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "xcn-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + } + }, + { + "description": "Wrapped Polkadot on Axelar", + "denom_units": [ + { + "denom": "ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5", + "exponent": 0, + "aliases": [ + "dot-planck" + ] + }, + { + "denom": "dot", + "exponent": 10 + } + ], + "base": "ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "dot-planck", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" + } + }, + { + "description": "Wrapped Moonbeam on Axelar", + "denom_units": [ + { + "denom": "ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60", + "exponent": 0, + "aliases": [ + "wglmr-wei" + ] + }, + { + "denom": "wglmr", + "exponent": 18 + } + ], + "base": "ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wglmr-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" + } + }, + { + "description": "Wrapped Matic on Axelar", + "denom_units": [ + { + "denom": "ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183", + "exponent": 0, + "aliases": [ + "wmatic-wei" + ] + }, + { + "denom": "wmatic", + "exponent": 18 + } + ], + "base": "ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wmatic-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } + }, + { + "description": "Wrapped BNB on Axelar", + "denom_units": [ + { + "denom": "ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE", + "exponent": 0, + "aliases": [ + "wbnb-wei" + ] + }, + { + "denom": "wbnb", + "exponent": 18 + } + ], + "base": "ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wbnb-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" + } + }, + { + "description": "Binance USD on Axelar.", + "denom_units": [ + { + "denom": "ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D", + "exponent": 0, + "aliases": [ + "busd-wei" + ] + }, + { + "denom": "busd", + "exponent": 18 + } + ], + "base": "ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "busd-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } + }, + { + "description": "Wrapped AVAX on Axelar.", + "denom_units": [ + { + "denom": "ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5", + "exponent": 0, + "aliases": [ + "wavax-wei" + ] + }, + { + "denom": "avax", + "exponent": 18 + } + ], + "base": "ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wavax-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } + }, + { + "description": "Wrapped FTM on Axelar.", + "denom_units": [ + { + "denom": "ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79", + "exponent": 0, + "aliases": [ + "wftm-wei" + ] + }, + { + "denom": "ftm", + "exponent": 18 + } + ], + "base": "ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wftm-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + } + }, + { + "description": "Circle's stablecoin from Polygon on Axelar", + "denom_units": [ + { + "denom": "ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025", + "exponent": 0, + "aliases": [ + "polygon-uusdc" + ] + }, + { + "denom": "polygon-usdc", + "exponent": 6 + } + ], + "base": "ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "polygon-uusdc", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + } + }, + { + "description": "Circle's stablecoin from Avalanche on Axelar", + "denom_units": [ + { + "denom": "ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF", + "exponent": 0, + "aliases": [ + "avalanche-uusdc" + ] + }, + { + "denom": "avalanche-usdc", + "exponent": 6 + } + ], + "base": "ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "avalanche-uusdc", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + } + }, + { + "description": "Wrapped FIL on Axelar", + "denom_units": [ + { + "denom": "ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D", + "exponent": 0, + "aliases": [ + "wfil-wei" + ] + }, + { + "denom": "fil", + "exponent": 18 + } + ], + "base": "ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wfil-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" + } + }, + { + "description": "Arbitrum on Axelar", + "denom_units": [ + { + "denom": "ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608", + "exponent": 0, + "aliases": [ + "arb-wei" + ] + }, + { + "denom": "arb", + "exponent": 18 + } + ], + "base": "ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "arb-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + } + }, + { + "denom_units": [ + { + "denom": "ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19", + "exponent": 0, + "aliases": [ + "pepe-wei" + ] + }, + { + "denom": "pepe", + "exponent": 18 + } + ], + "base": "ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "pepe-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA", + "exponent": 0, + "aliases": [ + "cbeth-wei" + ] + }, + { + "denom": "cbeth", + "exponent": 18 + } + ], + "base": "ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "cbeth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172", + "exponent": 0, + "aliases": [ + "reth-wei" + ] + }, + { + "denom": "reth", + "exponent": 18 + } + ], + "base": "ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "reth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3", + "exponent": 0, + "aliases": [ + "sfrxeth-wei" + ] + }, + { + "denom": "sfrxeth", + "exponent": 18 + } + ], + "base": "ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "sfrxeth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF", + "exponent": 0, + "aliases": [ + "wsteth-wei" + ] + }, + { + "denom": "wsteth", + "exponent": 18 + } + ], + "base": "ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-74", + "base_denom": "wsteth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "description": "The native token of Nois", + "denom_units": [ + { + "denom": "ibc/1FD48481DAA1B05575FE6D3E35929264437B8424A73243B207BCB67401C7F1FD", + "exponent": 0, + "aliases": [ + "unois" + ] + }, + { + "denom": "nois", + "exponent": 6 + } + ], + "base": "ibc/1FD48481DAA1B05575FE6D3E35929264437B8424A73243B207BCB67401C7F1FD", + "name": "Nois", + "display": "nois", + "symbol": "NOIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg" + }, + "keywords": [ + "nois", + "randomness", + "drand", + "wasm" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-16", + "base_denom": "unois", + "chain_name": "nois" + }, + "chain": { + "channel_id": "channel-3" + } + } + ] + } + ] + }, + { + "chain_name": "axelar", + "assets": [ + { + "description": "The native EVM, governance and staking token of the Acrechain", + "denom_units": [ + { + "denom": "ibc/47F03B29C23ADD8E97F5209E907E1A765FE69FC60C414D7E80E7419E62874F27", + "exponent": 0, + "aliases": [ + "aacre" + ] + }, + { + "denom": "acre", + "exponent": 18 + } + ], + "base": "ibc/47F03B29C23ADD8E97F5209E907E1A765FE69FC60C414D7E80E7419E62874F27", + "name": "Acre", + "display": "acre", + "symbol": "ACRE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png" + }, + "coingecko_id": "arable-protocol", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-5", + "base_denom": "aacre", + "chain_name": "acrechain" + }, + "chain": { + "channel_id": "channel-51" + } + } + ] + }, + { + "description": "Overcollateralized stable coin for Arable derivatives v1", + "denom_units": [ + { + "denom": "ibc/B46F7431C564183F580DEF1AD36CCE98183F3811C76DC7DB6CC61E32E274DBA2", + "exponent": 0, + "aliases": [ + "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c" + ] + }, + { + "denom": "arusd", + "exponent": 18 + } + ], + "base": "ibc/B46F7431C564183F580DEF1AD36CCE98183F3811C76DC7DB6CC61E32E274DBA2", + "name": "Arable USD", + "display": "arusd", + "symbol": "arUSD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg" + }, + "coingecko_id": "arable-usd", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-5", + "base_denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "chain_name": "acrechain" + }, + "chain": { + "channel_id": "channel-51" + } + } + ] + }, + { + "description": "Ciento Exchange Token", + "denom_units": [ + { + "denom": "ibc/B28692C9B7C8519DD02329EE1C1977B16B184069DAB71A262A990B50A13CF369", + "exponent": 0, + "aliases": [ + "erc20/0xAE6D3334989a22A65228732446731438672418F2" + ] + }, + { + "denom": "cnto", + "exponent": 18 + } + ], + "base": "ibc/B28692C9B7C8519DD02329EE1C1977B16B184069DAB71A262A990B50A13CF369", + "name": "Ciento Token", + "display": "cnto", + "symbol": "CNTO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-5", + "base_denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "chain_name": "acrechain" + }, + "chain": { + "channel_id": "channel-51" + } + } + ] + }, + { + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "denom_units": [ + { + "denom": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", + "exponent": 0, + "aliases": [ + "ubld" + ] + }, + { + "denom": "bld", + "exponent": 6 + } + ], + "base": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", + "name": "Agoric", + "display": "bld", + "symbol": "BLD", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" + }, + "coingecko_id": "agoric", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "ubld", + "chain_name": "agoric" + }, + "chain": { + "channel_id": "channel-41" + } + } + ] + }, + { + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "denom_units": [ + { + "denom": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", + "exponent": 0, + "aliases": [ + "uist" + ] + }, + { + "denom": "ist", + "exponent": 6 + } + ], + "base": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", + "name": "Inter Stable Token", + "display": "ist", + "symbol": "IST", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "uist", + "chain_name": "agoric" + }, + "chain": { + "channel_id": "channel-41" + } + } + ] + }, + { + "description": "The native token of Archway network", + "denom_units": [ + { + "denom": "ibc/9E461EF6930C4A718585EBADDEDB94BDC9C990C937A80A936F651B9AEEA388B8", + "exponent": 0, + "aliases": [ + "aarch" + ] + }, + { + "denom": "uarch", + "exponent": 12 + }, + { + "denom": "arch", + "exponent": 18 + } + ], + "base": "ibc/9E461EF6930C4A718585EBADDEDB94BDC9C990C937A80A936F651B9AEEA388B8", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + }, + "coingecko_id": "archway", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-2", + "base_denom": "aarch", + "chain_name": "archway" + }, + "chain": { + "channel_id": "channel-110" + } + } + ] + }, + { + "description": "The native token of Aura Network", + "denom_units": [ + { + "denom": "ibc/5DFC2C9529D25039A3103363661C84F1ADC18B238F5AD5B1A23335B4592ADEEB", + "exponent": 0, + "aliases": [ + "uaura" + ] + }, + { + "denom": "aura", + "exponent": 6 + } + ], + "base": "ibc/5DFC2C9529D25039A3103363661C84F1ADC18B238F5AD5B1A23335B4592ADEEB", + "name": "Aura", + "display": "aura", + "symbol": "AURA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.svg" + }, + "coingecko_id": "aura-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "uaura", + "chain_name": "aura" + }, + "chain": { + "channel_id": "channel-74" + } + } + ] + }, + { + "description": "The native token of Crescent", + "denom_units": [ + { + "denom": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", + "exponent": 0, + "aliases": [ + "ucre" + ] + }, + { + "denom": "cre", + "exponent": 6 + } + ], + "base": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", + "name": "Crescent", + "display": "cre", + "symbol": "CRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + }, + "coingecko_id": "crescent-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-4", + "base_denom": "ucre", + "chain_name": "crescent" + }, + "chain": { + "channel_id": "channel-7" + } + } + ] + }, + { + "description": "The bonded token of Crescent", + "denom_units": [ + { + "denom": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", + "exponent": 0, + "aliases": [ + "ubcre" + ] + }, + { + "denom": "bcre", + "exponent": 6 + } + ], + "base": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", + "name": "Bonded Crescent", + "display": "bcre", + "symbol": "bCRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + }, + "coingecko_id": "liquid-staking-crescent", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-4", + "base_denom": "ubcre", + "chain_name": "crescent" + }, + "chain": { + "channel_id": "channel-7" + } + } + ] + }, + { + "description": "The native staking and governance token of Empower.", + "denom_units": [ + { + "denom": "ibc/B755889E03BCC776D971B24434A22F9907CC4745116A032CC0179730510C509E", + "exponent": 0, + "aliases": [ + "umpwr" + ] + }, + { + "denom": "mpwr", + "exponent": 6 + } + ], + "base": "ibc/B755889E03BCC776D971B24434A22F9907CC4745116A032CC0179730510C509E", + "name": "MPWR", + "display": "mpwr", + "symbol": "MPWR", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-2", + "base_denom": "umpwr", + "chain_name": "empowerchain" + }, + "chain": { + "channel_id": "channel-109" + } + } + ] + }, + { + "description": "The INJ token is the native governance token for the Injective chain.", + "denom_units": [ + { + "denom": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", + "exponent": 0, + "aliases": [ + "inj" + ] + }, + { + "denom": "INJ", + "exponent": 18 + } + ], + "base": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", + "name": "Injective", + "display": "INJ", + "symbol": "INJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + }, + "coingecko_id": "injective-protocol", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-84", + "base_denom": "inj", + "chain_name": "injective" + }, + "chain": { + "channel_id": "channel-10" + } + } + ] + }, + { + "description": "The native token of JUNO Chain", + "denom_units": [ + { + "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", + "exponent": 0, + "aliases": [ + "ujuno" + ] + }, + { + "denom": "juno", + "exponent": 6 + } + ], + "base": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "coingecko_id": "juno-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-71", + "base_denom": "ujuno", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-4" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/CACAE22AF15AF2306AC791E9BC3E8DD9EE79134F2CB039C4DA7F3E2D7680C7A2", + "exponent": 0, + "aliases": [ + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/CACAE22AF15AF2306AC791E9BC3E8DD9EE79134F2CB039C4DA7F3E2D7680C7A2", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-71", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-4" + } + } + ] + }, + { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ + { + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 + }, + { + "denom": "banana", + "exponent": 6 + } + ], + "base": "ibc/92EE488B12427487B0CD9EBE580A8F740597B335E82602BBDA78FB4E75A13BA4", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-71", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-4" + } + } + ] + }, + { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "denom_units": [ + { + "denom": "ibc/FB36818FECAFC60E1207AEE7A446F3D53BDEA9697ABE303844C436C2981A73BC", + "exponent": 0, + "aliases": [ + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + ] + }, + { + "denom": "neta", + "exponent": 6 + } + ], + "base": "ibc/FB36818FECAFC60E1207AEE7A446F3D53BDEA9697ABE303844C436C2981A73BC", + "name": "Neta", + "display": "neta", + "symbol": "NETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + }, + "coingecko_id": "neta", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-71", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-4" + } + } + ] + }, + { + "description": "The native staking and governance token of the Kujira chain.", + "denom_units": [ + { + "denom": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", + "exponent": 0, + "aliases": [ + "ukuji" + ] + }, + { + "denom": "kuji", + "exponent": 6 + } + ], + "base": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "ukuji", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-14" + } + } + ] + }, + { + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "denom_units": [ + { + "denom": "ibc/F5AED66744B47E62932EEA90A124209357353A969D37B18EC7DF1CFDB5527BE4", + "exponent": 0, + "aliases": [ + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + ] + }, + { + "denom": "usk", + "exponent": 6 + } + ], + "base": "ibc/F5AED66744B47E62932EEA90A124209357353A969D37B18EC7DF1CFDB5527BE4", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-14" + } + } + ] + }, + { + "description": "ampKUJI", + "denom_units": [ + { + "denom": "ibc/DF42D2E5FF6ADE11A08CAA0D4B2A1A6A0F62B0A1B9DEA4F0FD604CD701AC822A", + "exponent": 0, + "aliases": [ + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + ] + }, + { + "denom": "ampKUJI", + "exponent": 6 + } + ], + "base": "ibc/DF42D2E5FF6ADE11A08CAA0D4B2A1A6A0F62B0A1B9DEA4F0FD604CD701AC822A", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-14" + } + } + ] + }, + { + "description": "MantaDAO Governance Token", + "denom_units": [ + { + "denom": "ibc/3C9210D60BC7846865E0D0BA3E78226C0CB5A5D84645F4657B72A76631FCDB00", + "exponent": 0, + "aliases": [ + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + ] + }, + { + "denom": "mnta", + "exponent": 6 + } + ], + "base": "ibc/3C9210D60BC7846865E0D0BA3E78226C0CB5A5D84645F4657B72A76631FCDB00", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-14" + } + } + ] + }, + { + "description": "The content house of Kujira", + "denom_units": [ + { + "denom": "ibc/801B62D4E92D356DA105DC221B16CC65798951069254BF50F395223BEFC910DA", + "exponent": 0, + "aliases": [ + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + ] + }, + { + "denom": "wink", + "exponent": 6 + } + ], + "base": "ibc/801B62D4E92D356DA105DC221B16CC65798951069254BF50F395223BEFC910DA", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-9", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-14" + } + } + ] + }, + { + "description": "The native utility token of the KYVE network.", + "denom_units": [ + { + "denom": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", + "exponent": 0, + "aliases": [ + "ukyve" + ] + }, + { + "denom": "kyve", + "exponent": 6 + } + ], + "base": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", + "name": "KYVE", + "display": "kyve", + "symbol": "KYVE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "ukyve", + "chain_name": "kyve" + }, + "chain": { + "channel_id": "channel-75" + } + } + ] + }, + { + "description": "The native token of Neutron chain.", + "denom_units": [ + { + "denom": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", + "exponent": 0, + "aliases": [ + "untrn" + ] + }, + { + "denom": "ntrn", + "exponent": 6 + } + ], + "base": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", + "name": "Neutron", + "display": "ntrn", + "symbol": "NTRN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" + }, + "coingecko_id": "neutron", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-2", + "base_denom": "untrn", + "chain_name": "neutron" + }, + "chain": { + "channel_id": "channel-78" + } + } + ] + }, + { + "description": "Staking and goverance token for ODIN Protocol", + "denom_units": [ + { + "denom": "ibc/8D58BF228C8B8930F5D8D45ED617FFC34CA2AA397288495444FD822201A315DF", + "exponent": 0, + "aliases": [ + "loki" + ] + }, + { + "denom": "odin", + "exponent": 6 + } + ], + "base": "ibc/8D58BF228C8B8930F5D8D45ED617FFC34CA2AA397288495444FD822201A315DF", + "name": "ODIN", + "display": "odin", + "symbol": "ODIN", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png" + }, + "coingecko_id": "odin-protocol", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-37", + "base_denom": "loki", + "chain_name": "odin" + }, + "chain": { + "channel_id": "channel-102" + } + } + ] + }, + { + "description": "GEO token for ODIN Protocol", + "denom_units": [ + { + "denom": "ibc/9C41C0CFF8BA0B8D4CA3FB9E21C75E327AB2FD9F98127EEA6457BF1C158E6A8F", + "exponent": 0, + "aliases": [ + "mGeo" + ] + }, + { + "denom": "geo", + "exponent": 6 + } + ], + "base": "ibc/9C41C0CFF8BA0B8D4CA3FB9E21C75E327AB2FD9F98127EEA6457BF1C158E6A8F", + "name": "GEO", + "display": "geo", + "symbol": "GEO", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-37", + "base_denom": "mGeo", + "chain_name": "odin" + }, + "chain": { + "channel_id": "channel-102" + } + } + ] + }, + { + "description": "O9W token for ODIN Protocol", + "denom_units": [ + { + "denom": "ibc/2EEF48676AB7BAE28BD631B9484E0C957C738B95AE3988571E68A958C0F1A40C", + "exponent": 0, + "aliases": [ + "mO9W" + ] + }, + { + "denom": "O9W", + "exponent": 6 + } + ], + "base": "ibc/2EEF48676AB7BAE28BD631B9484E0C957C738B95AE3988571E68A958C0F1A40C", + "name": "O9W", + "display": "O9W", + "symbol": "O9W", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-37", + "base_denom": "mO9W", + "chain_name": "odin" + }, + "chain": { + "channel_id": "channel-102" + } + } + ] + }, + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "base": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-208", + "base_denom": "uosmo", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-3" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", + "exponent": 0, + "aliases": [ + "uion" + ] + }, + { + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-208", + "base_denom": "uion", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-3" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", + "exponent": 0, + "aliases": [ + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + ] + }, + { + "denom": "ibcx", + "exponent": 6 + } + ], + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-208", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-3" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", + "exponent": 0, + "aliases": [ + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + ] + }, + { + "denom": "stibcx", + "exponent": 6 + } + ], + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-208", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-3" + } + } + ] + }, + { + "description": "The native token of Secret Network", + "denom_units": [ + { + "denom": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", + "exponent": 0, + "aliases": [ + "uscrt" + ] + }, + { + "denom": "scrt", + "exponent": 6 + } + ], + "base": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + }, + "coingecko_id": "secret", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-20", + "base_denom": "uscrt", + "chain_name": "secretnetwork" + }, + "chain": { + "channel_id": "channel-12" + } + } + ] + }, + { + "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", + "denom_units": [ + { + "denom": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", + "exponent": 0, + "aliases": [ + "usomm" + ] + }, + { + "denom": "msomm", + "exponent": 3, + "aliases": [ + "millisomm" + ] + }, + { + "denom": "somm", + "exponent": 6 + } + ], + "base": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", + "name": "Somm", + "display": "somm", + "symbol": "SOMM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" + }, + "coingecko_id": "sommelier", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-5", + "base_denom": "usomm", + "chain_name": "sommelier" + }, + "chain": { + "channel_id": "channel-72" + } + } + ] + } + ] + }, + { + "chain_name": "bandchain", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/6B8531505147C9FF2AC90BC096AEC5D8E77EE3582874640FA5FE4E4FB382D2AC", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "base": "ibc/6B8531505147C9FF2AC90BC096AEC5D8E77EE3582874640FA5FE4E4FB382D2AC", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-148", + "base_denom": "uosmo", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/1005CD468908E4EB83A7E3D4A68E90128D073E3A85611B8B424320F306C508E1", + "exponent": 0, + "aliases": [ + "uion" + ] + }, + { + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/1005CD468908E4EB83A7E3D4A68E90128D073E3A85611B8B424320F306C508E1", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-148", + "base_denom": "uion", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/0965EC2EBA2FC28E43A1917CEBF75AAA49735C338CA82A9988C89E5384E3F1D0", + "exponent": 0, + "aliases": [ + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + ] + }, + { + "denom": "ibcx", + "exponent": 6 + } + ], + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/0965EC2EBA2FC28E43A1917CEBF75AAA49735C338CA82A9988C89E5384E3F1D0", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-148", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/3DF15274E3AB88D86EC9AF1D6E7338163919020DFAFB1A1DFA4792363E5AB0D0", + "exponent": 0, + "aliases": [ + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + ] + }, + { + "denom": "stibcx", + "exponent": 6 + } + ], + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/3DF15274E3AB88D86EC9AF1D6E7338163919020DFAFB1A1DFA4792363E5AB0D0", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-148", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + } + ] + }, + { + "chain_name": "beezee", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-340", + "base_denom": "uosmo", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "exponent": 0, + "aliases": [ + "uion" + ] + }, + { + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-340", + "base_denom": "uion", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "exponent": 0, + "aliases": [ + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + ] + }, + { + "denom": "ibcx", + "exponent": 6 + } + ], + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-340", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "exponent": 0, + "aliases": [ + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + ] + }, + { + "denom": "stibcx", + "exponent": 6 + } + ], + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-340", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + } + ] + }, + { + "chain_name": "bitcanna", + "assets": [ + { + "description": "BitSong Native Token", + "denom_units": [ + { + "denom": "ibc/8B066EED78CCC6A90E963C81EB4B527C28FE538BE396B8756F4C4BFC53C74221", + "exponent": 0, + "aliases": [ + "ubtsg" + ] + }, + { + "denom": "btsg", + "exponent": 6 + } + ], + "base": "ibc/8B066EED78CCC6A90E963C81EB4B527C28FE538BE396B8756F4C4BFC53C74221", + "name": "BitSong", + "display": "btsg", + "symbol": "BTSG", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" + }, + "type_asset": "sdk.coin", + "coingecko_id": "bitsong", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ubtsg", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Adam Clay a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/B9D405F0312680F150442B5BF6D9A2D6D8426DA32BD410627555541B3F65325F", + "exponent": 0, + "aliases": [ + "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" + ] + }, + { + "denom": "clay", + "exponent": 6 + } ], + "base": "ibc/B9D405F0312680F150442B5BF6D9A2D6D8426DA32BD410627555541B3F65325F", + "name": "Adam Clay FanToken", + "display": "clay", + "symbol": "CLAY", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-208", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-42", + "base_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Nicola Fasano a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/B78C970FC03EDB5BA412626D247E3E423C49F4DF4B1D4161989DD848F280836C", + "exponent": 0, + "aliases": [ + "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" + ] + }, + { + "denom": "fasano", + "exponent": 6 + } + ], + "base": "ibc/B78C970FC03EDB5BA412626D247E3E423C49F4DF4B1D4161989DD848F280836C", + "name": "Nicola Fasano Fantoken", + "display": "fasano", + "symbol": "FASANO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Delta 9 a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/2E580D0270867B6D2B600D4BA053D9AB489970B7CCA637109AE5A1BBF5416C26", + "exponent": 0, + "aliases": [ + "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" + ] + }, + { + "denom": "d9x", + "exponent": 6 + } + ], + "base": "ibc/2E580D0270867B6D2B600D4BA053D9AB489970B7CCA637109AE5A1BBF5416C26", + "name": "Delta 9 Fantoken", + "display": "d9x", + "symbol": "D9X", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "FONTI a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/E6A5621906D2DEBECF8A6AD6CD3AA2D2C720158099C996CCF9ABB707158845A8", + "exponent": 0, + "aliases": [ + "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" + ] + }, + { + "denom": "fonti", + "exponent": 6 + } + ], + "base": "ibc/E6A5621906D2DEBECF8A6AD6CD3AA2D2C720158099C996CCF9ABB707158845A8", + "name": "FONTI Fantoken", + "display": "fonti", + "symbol": "FONTI", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "BlackJack a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/AEB36065151F15A625AB37FA627DF4EB5A5D7928B26BFC48DD7298E86CAB933B", + "exponent": 0, + "aliases": [ + "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" + ] + }, + { + "denom": "bjks", + "exponent": 6 + } + ], + "base": "ibc/AEB36065151F15A625AB37FA627DF4EB5A5D7928B26BFC48DD7298E86CAB933B", + "name": "BlackJack Fantoken", + "display": "bjks", + "symbol": "BJKS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Rawanne a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/0FEA8566BE80201D57426398FCC45BCDCBD6BEF6414D4947B0D50393377F434A", + "exponent": 0, + "aliases": [ + "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" + ] + }, + { + "denom": "rwne", + "exponent": 6 + } + ], + "base": "ibc/0FEA8566BE80201D57426398FCC45BCDCBD6BEF6414D4947B0D50393377F434A", + "name": "Rawanne Fantoken", + "display": "rwne", + "symbol": "RWNE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Enmoda a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/5877499787B1E12734DBC9D402BD35CE7DD79F10DBB97FF2D9C5A0F4F76DA5EE", + "exponent": 0, + "aliases": [ + "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" + ] + }, + { + "denom": "enmoda", + "exponent": 6 + } + ], + "base": "ibc/5877499787B1E12734DBC9D402BD35CE7DD79F10DBB97FF2D9C5A0F4F76DA5EE", + "name": "Enmoda Fantoken", + "display": "enmoda", + "symbol": "ENMODA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "404Deep Records a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/C6D0C8137516BC082F161AC019F71756E6C58A2B2CE3388E5BEA7BDD19F0A2A4", + "exponent": 0, + "aliases": [ + "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" + ] + }, + { + "denom": "404dr", + "exponent": 6 + } + ], + "base": "ibc/C6D0C8137516BC082F161AC019F71756E6C58A2B2CE3388E5BEA7BDD19F0A2A4", + "name": "404Deep Records Fantoken", + "display": "404dr", + "symbol": "404DR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "N43 a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/145130E6F5C0E3A18AE7B1AC3F9939688CEE44F74C9012344C9698FB3147372A", + "exponent": 0, + "aliases": [ + "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + ] + }, + { + "denom": "n43", + "exponent": 6 + } + ], + "base": "ibc/145130E6F5C0E3A18AE7B1AC3F9939688CEE44F74C9012344C9698FB3147372A", + "name": "N43 Fantoken", + "display": "n43", + "symbol": "N43", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Puro Lobo a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/22B4D7D4199679C2BEF28B25138437870E720818EE73AFE360FDD76BF1CAC27A", + "exponent": 0, + "aliases": [ + "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" + ] + }, + { + "denom": "lobo", + "exponent": 6 + } + ], + "base": "ibc/22B4D7D4199679C2BEF28B25138437870E720818EE73AFE360FDD76BF1CAC27A", + "name": "Puro Lobo Fantoken", + "display": "lobo", + "symbol": "LOBO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Vibranium a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/A57C18EF917EBB84E2D9E3C70CE4C588D7A71FA60CECBBE7083E41518BB25ADE", + "exponent": 0, + "aliases": [ + "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" + ] + }, + { + "denom": "vibra", + "exponent": 6 + } + ], + "base": "ibc/A57C18EF917EBB84E2D9E3C70CE4C588D7A71FA60CECBBE7083E41518BB25ADE", + "name": "Vibranium Fantoken", + "display": "vibra", + "symbol": "VIBRA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Karina a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/42B2F13D7F819FE461D61AFB03F541948175DEFE8FC133514AB086DAD9A0431C", + "exponent": 0, + "aliases": [ + "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" + ] + }, + { + "denom": "karina", + "exponent": 6 + } + ], + "base": "ibc/42B2F13D7F819FE461D61AFB03F541948175DEFE8FC133514AB086DAD9A0431C", + "name": "Karina Fantoken", + "display": "karina", + "symbol": "KARINA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Luca Testa a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/0DBA41C226B34143DE4A5975C029CB0A67C28E4ED1B46B4162370111EAC6E779", + "exponent": 0, + "aliases": [ + "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" + ] + }, + { + "denom": "testa", + "exponent": 6 + } + ], + "base": "ibc/0DBA41C226B34143DE4A5975C029CB0A67C28E4ED1B46B4162370111EAC6E779", + "name": "Luca Testa Fantoken", + "display": "testa", + "symbol": "TESTA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "Carolina Marquez a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/398DA1F69D514F20FF09FCA98664ECD7F77699CA94EB2EBACE0DDE2D3E130432", + "exponent": 0, + "aliases": [ + "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" + ] + }, + { + "denom": "cmqz", + "exponent": 6 + } + ], + "base": "ibc/398DA1F69D514F20FF09FCA98664ECD7F77699CA94EB2EBACE0DDE2D3E130432", + "name": "Carolina Marquez Fantoken", + "display": "cmqz", + "symbol": "CMQZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "chain_name": "bitsong" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "L DON a BitSong Music FanToken", + "denom_units": [ + { + "denom": "ibc/F769149610F8663C7619DA9647FD26C881C5AAFAAACA24C7621A9FFE86F161DD", + "exponent": 0, + "aliases": [ + "ft347B1612A2B7659913679CF6CD45B8B130C50A00" + ] + }, + { + "denom": "ldon", + "exponent": 6 + } + ], + "base": "ibc/F769149610F8663C7619DA9647FD26C881C5AAFAAACA24C7621A9FFE86F161DD", + "name": "L DON Fantoken", + "display": "ldon", + "symbol": "LDON", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-42", + "base_denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-0" } } ] }, { + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "exponent": 0, "aliases": [ - "uion" + "uatom" ] }, { - "denom": "ion", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-208", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-232", + "base_denom": "uatom", + "chain_name": "cosmoshub" }, "chain": { "channel_id": "channel-3" @@ -9656,37 +12476,39 @@ const asset_lists: AssetList[] = [ ] }, { + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", + "denom": "ibc/8D9262E35CAE362FA74AE05E430550757CF8D842EC1B241F645D3CB7179AFD10", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "ujuno" ] }, { - "denom": "ibcx", + "denom": "juno", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", + "base": "ibc/8D9262E35CAE362FA74AE05E430550757CF8D842EC1B241F645D3CB7179AFD10", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" }, + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-208", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-50", + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-10" } } ] @@ -9694,133 +12516,115 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", + "denom": "ibc/F93F32781245963537D6B324882ACFC514529E6FD8D01D601FF4ED3CAC2481FD", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "stibcx", + "denom": "atom", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "type_asset": "ics20", + "base": "ibc/F93F32781245963537D6B324882ACFC514529E6FD8D01D601FF4ED3CAC2481FD", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-208", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-50", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-10" } } ] }, { - "description": "The native token of Secret Network", + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", - "exponent": 0, - "aliases": [ - "uscrt" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "scrt", + "denom": "banana", "exponent": 6 } ], - "base": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", + "base": "ibc/FC57ADA879CC314E1BFCFE734209DFF7EEF064D3F73B5E242CA856D42F16078F", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" }, - "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-20", - "base_denom": "uscrt", - "chain_name": "secretnetwork" + "channel_id": "channel-50", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-10" } } ] }, { - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", + "denom": "ibc/D73741E34A3D275329B07690BEB851D02C251CE074BFF690AFC4ABA49013A854", "exponent": 0, "aliases": [ - "usomm" - ] - }, - { - "denom": "msomm", - "exponent": 3, - "aliases": [ - "millisomm" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "somm", + "denom": "neta", "exponent": 6 } ], - "base": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", - "name": "Somm", - "display": "somm", - "symbol": "SOMM", + "base": "ibc/D73741E34A3D275329B07690BEB851D02C251CE074BFF690AFC4ABA49013A854", + "name": "Neta", + "display": "neta", + "symbol": "NETA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg" + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" }, - "coingecko_id": "sommelier", + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "usomm", - "chain_name": "sommelier" + "channel_id": "channel-50", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-72" + "channel_id": "channel-10" } } ] - } - ] - }, - { - "chain_name": "bandchain", - "assets": [ + }, { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/6B8531505147C9FF2AC90BC096AEC5D8E77EE3582874640FA5FE4E4FB382D2AC", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ "uosmo" @@ -9831,7 +12635,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/6B8531505147C9FF2AC90BC096AEC5D8E77EE3582874640FA5FE4E4FB382D2AC", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -9848,12 +12652,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-148", + "channel_id": "channel-51", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-83" + "channel_id": "channel-1" } } ] @@ -9861,7 +12665,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/1005CD468908E4EB83A7E3D4A68E90128D073E3A85611B8B424320F306C508E1", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ "uion" @@ -9872,7 +12676,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/1005CD468908E4EB83A7E3D4A68E90128D073E3A85611B8B424320F306C508E1", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "name": "Ion", "display": "ion", "symbol": "ION", @@ -9888,12 +12692,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-148", + "channel_id": "channel-51", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-83" + "channel_id": "channel-1" } } ] @@ -9901,7 +12705,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/0965EC2EBA2FC28E43A1917CEBF75AAA49735C338CA82A9988C89E5384E3F1D0", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -9913,7 +12717,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/0965EC2EBA2FC28E43A1917CEBF75AAA49735C338CA82A9988C89E5384E3F1D0", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -9924,12 +12728,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-148", + "channel_id": "channel-51", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-83" + "channel_id": "channel-1" } } ] @@ -9937,7 +12741,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/3DF15274E3AB88D86EC9AF1D6E7338163919020DFAFB1A1DFA4792363E5AB0D0", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -9949,7 +12753,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/3DF15274E3AB88D86EC9AF1D6E7338163919020DFAFB1A1DFA4792363E5AB0D0", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -9961,12 +12765,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-148", + "channel_id": "channel-51", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-83" + "channel_id": "channel-1" } } ] @@ -9974,8 +12778,229 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "beezee", + "chain_name": "bitsong", "assets": [ + { + "description": "The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.", + "denom_units": [ + { + "denom": "ibc/373637BF703E7B0ACEF1E58BBCCFA4529DC6FA200CF84AD087757ED70B7A8BF2", + "exponent": 0, + "aliases": [ + "ubcna" + ] + }, + { + "denom": "bcna", + "exponent": 6 + } + ], + "base": "ibc/373637BF703E7B0ACEF1E58BBCCFA4529DC6FA200CF84AD087757ED70B7A8BF2", + "display": "bcna", + "name": "BitCanna", + "symbol": "BCNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" + }, + "coingecko_id": "bitcanna", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-0", + "base_denom": "ubcna", + "chain_name": "bitcanna" + }, + "chain": { + "channel_id": "channel-42" + } + } + ] + }, + { + "description": "The native staking and governance token of the Cosmos Hub.", + "denom_units": [ + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "coingecko_id": "cosmos", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-229", + "base_denom": "uatom", + "chain_name": "cosmoshub" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "description": "The native token of JUNO Chain", + "denom_units": [ + { + "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", + "exponent": 0, + "aliases": [ + "ujuno" + ] + }, + { + "denom": "juno", + "exponent": 6 + } + ], + "base": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "coingecko_id": "juno-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-17", + "base_denom": "ujuno", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-5" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/BE4D240465B75CB2C0168B7C1094F4FCBBD0F88DD702211192C158613182C53A", + "exponent": 0, + "aliases": [ + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/BE4D240465B75CB2C0168B7C1094F4FCBBD0F88DD702211192C158613182C53A", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-17", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-5" + } + } + ] + }, + { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ + { + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 + }, + { + "denom": "banana", + "exponent": 6 + } + ], + "base": "ibc/81D7DFF9AA300D39C70142EE2A4DDF381E0655875A8D2B9AEC40057172A0B388", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-17", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-5" + } + } + ] + }, + { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "denom_units": [ + { + "denom": "ibc/412A9178A4064AB3F656493544C6EE7235C5237610311754ABC9AC001CB07D83", + "exponent": 0, + "aliases": [ + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + ] + }, + { + "denom": "neta", + "exponent": 6 + } + ], + "base": "ibc/412A9178A4064AB3F656493544C6EE7235C5237610311754ABC9AC001CB07D83", + "name": "Neta", + "display": "neta", + "symbol": "NETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + }, + "coingecko_id": "neta", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-17", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-5" + } + } + ] + }, { "description": "The native token of Osmosis", "denom_units": [ @@ -10008,7 +13033,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-340", + "channel_id": "channel-73", "base_denom": "uosmo", "chain_name": "osmosis" }, @@ -10048,7 +13073,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-340", + "channel_id": "channel-73", "base_denom": "uion", "chain_name": "osmosis" }, @@ -10084,7 +13109,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-340", + "channel_id": "channel-73", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, @@ -10121,7 +13146,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-340", + "channel_id": "channel-73", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, @@ -10134,112 +13159,43 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "bitcanna", + "chain_name": "bluzelle", "assets": [ { - "description": "BitSong Native Token", - "denom_units": [ - { - "denom": "ibc/8B066EED78CCC6A90E963C81EB4B527C28FE538BE396B8756F4C4BFC53C74221", - "exponent": 0, - "aliases": [ - "ubtsg" - ] - }, - { - "denom": "btsg", - "exponent": 6 - } - ], - "base": "ibc/8B066EED78CCC6A90E963C81EB4B527C28FE538BE396B8756F4C4BFC53C74221", - "name": "BitSong", - "display": "btsg", - "symbol": "BTSG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" - }, - "type_asset": "sdk.coin", - "coingecko_id": "bitsong", - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-42", - "base_denom": "ubtsg", - "chain_name": "bitsong" - }, - "chain": { - "channel_id": "channel-0" - } - } - ] - }, - { - "description": "Adam Clay a BitSong Music FanToken", - "denom_units": [ - { - "denom": "ibc/B9D405F0312680F150442B5BF6D9A2D6D8426DA32BD410627555541B3F65325F", - "exponent": 0, - "aliases": [ - "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" - ] - }, - { - "denom": "clay", - "exponent": 6 - } - ], - "base": "ibc/B9D405F0312680F150442B5BF6D9A2D6D8426DA32BD410627555541B3F65325F", - "name": "Adam Clay FanToken", - "display": "clay", - "symbol": "CLAY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" - }, - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "chain_name": "bitsong" - }, - "chain": { - "channel_id": "channel-0" - } - } - ] - }, - { - "description": "Nicola Fasano a BitSong Music FanToken", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/B78C970FC03EDB5BA412626D247E3E423C49F4DF4B1D4161989DD848F280836C", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "exponent": 0, "aliases": [ - "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" + "uosmo" ] }, { - "denom": "fasano", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/B78C970FC03EDB5BA412626D247E3E423C49F4DF4B1D4161989DD848F280836C", - "name": "Nicola Fasano Fantoken", - "display": "fasano", - "symbol": "FASANO", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "chain_name": "bitsong" + "channel_id": "channel-763", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-0" @@ -10248,34 +13204,38 @@ const asset_lists: AssetList[] = [ ] }, { - "description": "Delta 9 a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/2E580D0270867B6D2B600D4BA053D9AB489970B7CCA637109AE5A1BBF5416C26", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "exponent": 0, "aliases": [ - "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" + "uion" ] }, { - "denom": "d9x", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/2E580D0270867B6D2B600D4BA053D9AB489970B7CCA637109AE5A1BBF5416C26", - "name": "Delta 9 Fantoken", - "display": "d9x", - "symbol": "D9X", + "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "chain_name": "bitsong" + "channel_id": "channel-763", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-0" @@ -10284,34 +13244,34 @@ const asset_lists: AssetList[] = [ ] }, { - "description": "FONTI a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/E6A5621906D2DEBECF8A6AD6CD3AA2D2C720158099C996CCF9ABB707158845A8", + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "exponent": 0, "aliases": [ - "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "fonti", + "denom": "ibcx", "exponent": 6 } ], - "base": "ibc/E6A5621906D2DEBECF8A6AD6CD3AA2D2C720158099C996CCF9ABB707158845A8", - "name": "FONTI Fantoken", - "display": "fonti", - "symbol": "FONTI", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "chain_name": "bitsong" + "channel_id": "channel-763", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-0" @@ -10320,589 +13280,651 @@ const asset_lists: AssetList[] = [ ] }, { - "description": "BlackJack a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/AEB36065151F15A625AB37FA627DF4EB5A5D7928B26BFC48DD7298E86CAB933B", + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "exponent": 0, "aliases": [ - "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "bjks", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/AEB36065151F15A625AB37FA627DF4EB5A5D7928B26BFC48DD7298E86CAB933B", - "name": "BlackJack Fantoken", - "display": "bjks", - "symbol": "BJKS", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "chain_name": "bitsong" + "channel_id": "channel-763", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { "channel_id": "channel-0" } } ] - }, + } + ] + }, + { + "chain_name": "bostrom", + "assets": [ { - "description": "Rawanne a BitSong Music FanToken", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/0FEA8566BE80201D57426398FCC45BCDCBD6BEF6414D4947B0D50393377F434A", + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "exponent": 0, "aliases": [ - "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" + "uosmo" ] }, { - "denom": "rwne", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/0FEA8566BE80201D57426398FCC45BCDCBD6BEF6414D4947B0D50393377F434A", - "name": "Rawanne Fantoken", - "display": "rwne", - "symbol": "RWNE", + "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "chain_name": "bitsong" + "channel_id": "channel-95", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "Enmoda a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/5877499787B1E12734DBC9D402BD35CE7DD79F10DBB97FF2D9C5A0F4F76DA5EE", + "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", "exponent": 0, "aliases": [ - "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" + "uion" ] }, { - "denom": "enmoda", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/5877499787B1E12734DBC9D402BD35CE7DD79F10DBB97FF2D9C5A0F4F76DA5EE", - "name": "Enmoda Fantoken", - "display": "enmoda", - "symbol": "ENMODA", + "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "chain_name": "bitsong" + "channel_id": "channel-95", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "404Deep Records a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/C6D0C8137516BC082F161AC019F71756E6C58A2B2CE3388E5BEA7BDD19F0A2A4", + "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", "exponent": 0, "aliases": [ - "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "404dr", + "denom": "ibcx", "exponent": 6 } ], - "base": "ibc/C6D0C8137516BC082F161AC019F71756E6C58A2B2CE3388E5BEA7BDD19F0A2A4", - "name": "404Deep Records Fantoken", - "display": "404dr", - "symbol": "404DR", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "chain_name": "bitsong" + "channel_id": "channel-95", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "N43 a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/145130E6F5C0E3A18AE7B1AC3F9939688CEE44F74C9012344C9698FB3147372A", + "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", "exponent": 0, "aliases": [ - "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "n43", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/145130E6F5C0E3A18AE7B1AC3F9939688CEE44F74C9012344C9698FB3147372A", - "name": "N43 Fantoken", - "display": "n43", - "symbol": "N43", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "chain_name": "bitsong" + "channel_id": "channel-95", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] - }, + } + ] + }, + { + "chain_name": "canto", + "assets": [ { - "description": "Puro Lobo a BitSong Music FanToken", + "description": "The native governance token of Carbon", "denom_units": [ { - "denom": "ibc/22B4D7D4199679C2BEF28B25138437870E720818EE73AFE360FDD76BF1CAC27A", + "denom": "ibc/0D739D7202D248F85EBEC38D4C5649B86AED820A512451E7C680672A0528E88B", "exponent": 0, "aliases": [ - "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" + "swth" ] }, { - "denom": "lobo", - "exponent": 6 + "denom": "dswth", + "exponent": 8, + "aliases": [ + "SWTH" + ] } ], - "base": "ibc/22B4D7D4199679C2BEF28B25138437870E720818EE73AFE360FDD76BF1CAC27A", - "name": "Puro Lobo Fantoken", - "display": "lobo", - "symbol": "LOBO", + "type_asset": "sdk.coin", + "base": "ibc/0D739D7202D248F85EBEC38D4C5649B86AED820A512451E7C680672A0528E88B", + "name": "Carbon", + "display": "dswth", + "symbol": "SWTH", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + "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" }, + "coingecko_id": "switcheo", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "swth", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } ] }, { - "description": "Vibranium a BitSong Music FanToken", + "description": "The native stablecoin of Carbon", "denom_units": [ { - "denom": "ibc/A57C18EF917EBB84E2D9E3C70CE4C588D7A71FA60CECBBE7083E41518BB25ADE", + "denom": "ibc/3638AD279FB356BDD3BA6FD7C6E581C7AEB37E23A2F6E6327B0C146F3B876C35", "exponent": 0, "aliases": [ - "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" + "usc" ] }, { - "denom": "vibra", - "exponent": 6 + "denom": "dusc", + "exponent": 8, + "aliases": [ + "USC" + ] } ], - "base": "ibc/A57C18EF917EBB84E2D9E3C70CE4C588D7A71FA60CECBBE7083E41518BB25ADE", - "name": "Vibranium Fantoken", - "display": "vibra", - "symbol": "VIBRA", + "type_asset": "sdk.coin", + "base": "ibc/3638AD279FB356BDD3BA6FD7C6E581C7AEB37E23A2F6E6327B0C146F3B876C35", + "name": "Carbon USD Coin", + "display": "dusc", + "symbol": "USC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg" }, + "coingecko_id": "carbon-usd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "usc", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } ] }, { - "description": "Karina a BitSong Music FanToken", + "description": "BNB token on Carbon", "denom_units": [ { - "denom": "ibc/42B2F13D7F819FE461D61AFB03F541948175DEFE8FC133514AB086DAD9A0431C", + "denom": "ibc/6B4D9BA064843C2FB53380251634134EC2FC12DF5409BD89F51E07CFB40B6877", "exponent": 0, "aliases": [ - "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" + "bnb.1.6.773edb" ] }, { - "denom": "karina", - "exponent": 6 + "denom": "bnb", + "exponent": 18, + "aliases": [ + "BNB" + ] } ], - "base": "ibc/42B2F13D7F819FE461D61AFB03F541948175DEFE8FC133514AB086DAD9A0431C", - "name": "Karina Fantoken", - "display": "karina", - "symbol": "KARINA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" - }, + "base": "ibc/6B4D9BA064843C2FB53380251634134EC2FC12DF5409BD89F51E07CFB40B6877", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "bnb.1.6.773edb", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" + } }, { - "description": "Luca Testa a BitSong Music FanToken", + "description": "bNEO token on Carbon", "denom_units": [ { - "denom": "ibc/0DBA41C226B34143DE4A5975C029CB0A67C28E4ED1B46B4162370111EAC6E779", + "denom": "ibc/4E1FF987874DCF953C4045CEAAE8C54B4465DCE6860D3652D3FBBBA4C33BE02E", "exponent": 0, "aliases": [ - "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" + "bneo.1.14.e2e5f6" ] }, { - "denom": "testa", - "exponent": 6 + "denom": "bneo", + "exponent": 8, + "aliases": [ + "bNEO" + ] } ], - "base": "ibc/0DBA41C226B34143DE4A5975C029CB0A67C28E4ED1B46B4162370111EAC6E779", - "name": "Luca Testa Fantoken", - "display": "testa", - "symbol": "TESTA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" - }, + "base": "ibc/4E1FF987874DCF953C4045CEAAE8C54B4465DCE6860D3652D3FBBBA4C33BE02E", + "name": "BurgerNEO", + "display": "bneo", + "symbol": "bNEO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "bneo.1.14.e2e5f6", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" + } }, { - "description": "Carolina Marquez a BitSong Music FanToken", + "description": "BUSD (BEP-20) token on Carbon", "denom_units": [ { - "denom": "ibc/398DA1F69D514F20FF09FCA98664ECD7F77699CA94EB2EBACE0DDE2D3E130432", + "denom": "ibc/60DC861E8BEF250864C2E1EF27674D848BB0816E2469468D0F8BC6697EDA47F3", "exponent": 0, "aliases": [ - "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" + "busd.1.6.754a80" ] }, { - "denom": "cmqz", - "exponent": 6 + "denom": "busd", + "exponent": 18, + "aliases": [ + "BUSD" + ] } ], - "base": "ibc/398DA1F69D514F20FF09FCA98664ECD7F77699CA94EB2EBACE0DDE2D3E130432", - "name": "Carolina Marquez Fantoken", - "display": "cmqz", - "symbol": "CMQZ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" - }, + "base": "ibc/60DC861E8BEF250864C2E1EF27674D848BB0816E2469468D0F8BC6697EDA47F3", + "name": "BUSD (BEP-20)", + "display": "busd", + "symbol": "BUSD", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "busd.1.6.754a80", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } }, { - "description": "L DON a BitSong Music FanToken", + "description": "Carbon Wrapped GLP on Carbon", "denom_units": [ { - "denom": "ibc/F769149610F8663C7619DA9647FD26C881C5AAFAAACA24C7621A9FFE86F161DD", + "denom": "ibc/E8CDBB4D87F6E6F9AD9F5716AA6403D686CBAE13D3E3152A389BDCE9D40027E0", "exponent": 0, "aliases": [ - "ft347B1612A2B7659913679CF6CD45B8B130C50A00" + "cglp.1.19.1698d3" ] }, { - "denom": "ldon", - "exponent": 6 + "denom": "cglp", + "exponent": 18, + "aliases": [ + "CGLP" + ] } ], - "base": "ibc/F769149610F8663C7619DA9647FD26C881C5AAFAAACA24C7621A9FFE86F161DD", - "name": "L DON Fantoken", - "display": "ldon", - "symbol": "LDON", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" - }, + "base": "ibc/E8CDBB4D87F6E6F9AD9F5716AA6403D686CBAE13D3E3152A389BDCE9D40027E0", + "name": "Carbon Wrapped GLP", + "display": "cglp", + "symbol": "CGLP", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-42", - "base_denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", - "chain_name": "bitsong" + "channel_id": "channel-18", + "base_denom": "cglp.1.19.1698d3", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" + } }, { - "description": "The native staking and governance token of the Cosmos Hub.", + "description": "Grouped USD on Carbon", "denom_units": [ { - "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "denom": "ibc/8A5AD3ABB5D38BC78FACB216DFD59DFB688D9E1935975E633BEDC03F48C0C242", "exponent": 0, "aliases": [ - "uatom" + "cgt/1" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "usd", + "exponent": 18, + "aliases": [ + "USD" + ] } ], - "base": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/8A5AD3ABB5D38BC78FACB216DFD59DFB688D9E1935975E633BEDC03F48C0C242", + "name": "Carbon Grouped USD", + "display": "usd", + "symbol": "USD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg" }, - "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-232", - "base_denom": "uatom", - "chain_name": "cosmoshub" + "channel_id": "channel-18", + "base_denom": "cgt/1", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-6" } } ] }, { - "description": "The native token of JUNO Chain", + "description": "ETH (Arbitrum) token on Carbon", "denom_units": [ { - "denom": "ibc/8D9262E35CAE362FA74AE05E430550757CF8D842EC1B241F645D3CB7179AFD10", + "denom": "ibc/5EB9AF189FAF36276841945A131ABEE6917A516F0C280C5BE5346AF950FB2197", "exponent": 0, "aliases": [ - "ujuno" + "eth.1.19.c3b805" ] }, { - "denom": "juno", - "exponent": 6 - } - ], - "base": "ibc/8D9262E35CAE362FA74AE05E430550757CF8D842EC1B241F645D3CB7179AFD10", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] + } + ], + "base": "ibc/5EB9AF189FAF36276841945A131ABEE6917A516F0C280C5BE5346AF950FB2197", + "name": "Ethereum (Arbitrum)", + "display": "eth", + "symbol": "ETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-50", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-18", + "base_denom": "eth.1.19.c3b805", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + } }, { + "description": "ETH (ERC20) token on Carbon", "denom_units": [ { - "denom": "ibc/F93F32781245963537D6B324882ACFC514529E6FD8D01D601FF4ED3CAC2481FD", + "denom": "ibc/4F0DFDAB2F35682D217B0E731C3C84EEE4A4EA3B3BE7C0316773FA579E24511B", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "eth.1.2.942d87" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] } ], - "type_asset": "ics20", - "base": "ibc/F93F32781245963537D6B324882ACFC514529E6FD8D01D601FF4ED3CAC2481FD", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/4F0DFDAB2F35682D217B0E731C3C84EEE4A4EA3B3BE7C0316773FA579E24511B", + "name": "Ethereum (ERC20)", + "display": "eth", + "symbol": "ETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-50", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-18", + "base_denom": "eth.1.2.942d87", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + } }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "USDC (ERC20) token on Carbon", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/318F3F36888C093340769BC8DDAC989DACEA89E16649A55B7ACDE2B4A0621229", + "exponent": 0, + "aliases": [ + "usdc.1.2.343151" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "usdc", + "exponent": 6, + "aliases": [ + "USDC" + ] } ], - "base": "ibc/FC57ADA879CC314E1BFCFE734209DFF7EEF064D3F73B5E242CA856D42F16078F", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/318F3F36888C093340769BC8DDAC989DACEA89E16649A55B7ACDE2B4A0621229", + "name": "Circle USD", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-50", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-18", + "base_denom": "usdc.1.2.343151", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "USD Coin (BEP-20) token on Carbon", "denom_units": [ { - "denom": "ibc/D73741E34A3D275329B07690BEB851D02C251CE074BFF690AFC4ABA49013A854", + "denom": "ibc/4C0928A5549BF93AA9933DD0660A59C3CB05D9BDFB8F266F99EA8900ECCBBB5E", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "usdc.1.6.53ff75" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "usdc", + "exponent": 18, + "aliases": [ + "USDC" + ] } ], - "base": "ibc/D73741E34A3D275329B07690BEB851D02C251CE074BFF690AFC4ABA49013A854", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", + "base": "ibc/4C0928A5549BF93AA9933DD0660A59C3CB05D9BDFB8F266F99EA8900ECCBBB5E", + "name": "USD Coin (BEP-20)", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-50", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-18", + "base_denom": "usdc.1.6.53ff75", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-6" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } }, { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", "exponent": 0, "aliases": [ "uosmo" @@ -10913,7 +13935,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "base": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -10930,12 +13952,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", + "channel_id": "channel-550", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-5" } } ] @@ -10943,7 +13965,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206", "exponent": 0, "aliases": [ "uion" @@ -10954,7 +13976,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "base": "ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206", "name": "Ion", "display": "ion", "symbol": "ION", @@ -10970,12 +13992,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", + "channel_id": "channel-550", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-5" } } ] @@ -10983,7 +14005,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -10995,7 +14017,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "base": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -11006,12 +14028,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", + "channel_id": "channel-550", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-5" } } ] @@ -11019,7 +14041,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -11031,7 +14053,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "base": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -11043,12 +14065,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", + "channel_id": "channel-550", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-5" } } ] @@ -11056,42 +14078,42 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "bitsong", + "chain_name": "carbon", "assets": [ { - "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.", + "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", "denom_units": [ { - "denom": "ibc/373637BF703E7B0ACEF1E58BBCCFA4529DC6FA200CF84AD087757ED70B7A8BF2", + "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", "exponent": 0, "aliases": [ - "ubcna" + "acanto" ] }, { - "denom": "bcna", - "exponent": 6 + "denom": "canto", + "exponent": 18 } ], - "base": "ibc/373637BF703E7B0ACEF1E58BBCCFA4529DC6FA200CF84AD087757ED70B7A8BF2", - "display": "bcna", - "name": "BitCanna", - "symbol": "BCNA", + "base": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "name": "Canto", + "display": "canto", + "symbol": "CANTO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png" }, - "coingecko_id": "bitcanna", + "coingecko_id": "canto", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ubcna", - "chain_name": "bitcanna" + "channel_id": "channel-6", + "base_denom": "acanto", + "chain_name": "canto" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-18" } } ] @@ -11100,7 +14122,7 @@ const asset_lists: AssetList[] = [ "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "exponent": 0, "aliases": [ "uatom" @@ -11111,7 +14133,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "base": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "name": "Cosmos Hub Atom", "display": "atom", "symbol": "ATOM", @@ -11124,157 +14146,200 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-229", + "channel_id": "channel-342", "base_denom": "uatom", "chain_name": "cosmoshub" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-3" } } ] }, { - "description": "The native token of JUNO Chain", + "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ { - "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", "exponent": 0, "aliases": [ - "ujuno" + "ukuji" ] }, { - "denom": "juno", + "denom": "kuji", "exponent": 6 } ], - "base": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", + "base": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" }, - "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-17", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-46", + "base_denom": "ukuji", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-9" } } ] }, { + "description": "The native over-collateralized stablecoin from the Kujira chain.", "denom_units": [ { - "denom": "ibc/BE4D240465B75CB2C0168B7C1094F4FCBBD0F88DD702211192C158613182C53A", + "denom": "ibc/D8593458C2EEDE1103F46A0B9DC8E30C9E0BB4058824251A12DFD4F9B008FAF0", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" ] }, { - "denom": "atom", + "denom": "usk", "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/BE4D240465B75CB2C0168B7C1094F4FCBBD0F88DD702211192C158613182C53A", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/D8593458C2EEDE1103F46A0B9DC8E30C9E0BB4058824251A12DFD4F9B008FAF0", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-17", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-46", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-9" } } ] }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "ampKUJI", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/F315A277A5C4D0A4D83E414842536687748D5450F5466EC4E82A2096A026EF89", + "exponent": 0, + "aliases": [ + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + ] }, { - "denom": "banana", + "denom": "ampKUJI", "exponent": 6 } ], - "base": "ibc/81D7DFF9AA300D39C70142EE2A4DDF381E0655875A8D2B9AEC40057172A0B388", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", + "base": "ibc/F315A277A5C4D0A4D83E414842536687748D5450F5466EC4E82A2096A026EF89", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-17", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-46", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-9" } } ] }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/412A9178A4064AB3F656493544C6EE7235C5237610311754ABC9AC001CB07D83", + "denom": "ibc/903090CB22EDBE8B14894921B6C14DE0F8418672FB9209E2B685B735D2D938BB", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" ] }, { - "denom": "neta", + "denom": "mnta", "exponent": 6 } ], - "base": "ibc/412A9178A4064AB3F656493544C6EE7235C5237610311754ABC9AC001CB07D83", - "name": "Neta", - "display": "neta", - "symbol": "NETA", + "base": "ibc/903090CB22EDBE8B14894921B6C14DE0F8418672FB9209E2B685B735D2D938BB", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" }, - "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-17", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-46", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-9" + } + } + ] + }, + { + "description": "The content house of Kujira", + "denom_units": [ + { + "denom": "ibc/774D0A8EE141F6D17D2B662BCD100D162C5A31FF2E22C367F7D5D4D6A89E2C69", + "exponent": 0, + "aliases": [ + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + ] + }, + { + "denom": "wink", + "exponent": 6 + } + ], + "base": "ibc/774D0A8EE141F6D17D2B662BCD100D162C5A31FF2E22C367F7D5D4D6A89E2C69", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-46", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" + }, + "chain": { + "channel_id": "channel-9" } } ] @@ -11311,7 +14376,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-73", + "channel_id": "channel-188", "base_denom": "uosmo", "chain_name": "osmosis" }, @@ -11351,7 +14416,7 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-73", + "channel_id": "channel-188", "base_denom": "uion", "chain_name": "osmosis" }, @@ -11387,822 +14452,945 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-73", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-188", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "exponent": 0, + "aliases": [ + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + ] + }, + { + "denom": "stibcx", + "exponent": 6 + } + ], + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-188", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-0" + } + } + ] + }, + { + "description": "The native token of Stargaze", + "denom_units": [ + { + "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "exponent": 0, + "aliases": [ + "ustars" + ] + }, + { + "denom": "stars", + "exponent": 6 + } + ], + "base": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "name": "Stargaze", + "display": "stars", + "symbol": "STARS", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + }, + "coingecko_id": "stargaze", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-123", + "base_denom": "ustars", + "chain_name": "stargaze" + }, + "chain": { + "channel_id": "channel-15" + } + } + ] + }, + { + "description": "The native token of Stride", + "denom_units": [ + { + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "exponent": 0, + "aliases": [ + "ustrd" + ] + }, + { + "denom": "strd", + "exponent": 6 + } + ], + "base": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "name": "Stride", + "display": "strd", + "symbol": "STRD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + }, + "coingecko_id": "stride", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-47", + "base_denom": "ustrd", + "chain_name": "stride" + }, + "chain": { + "channel_id": "channel-8" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "exponent": 0, + "aliases": [ + "stuatom" + ] + }, + { + "denom": "statom", + "exponent": 6 + } + ], + "base": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-47", + "base_denom": "stuatom", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + }, + "coingecko_id": "stride-staked-atom" }, { "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "stustars" ] }, { - "denom": "stibcx", + "denom": "ststars", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", + "name": "stSTARS", + "display": "ststars", + "symbol": "stSTARS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-73", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stustars", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] - } - ] - }, - { - "chain_name": "bluzelle", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + } + }, { - "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", "exponent": 0, "aliases": [ - "uosmo" + "stuosmo" ] }, { - "denom": "osmo", + "denom": "stosmo", "exponent": 6 } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-763", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stuosmo", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } }, { "denom_units": [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", "exponent": 0, "aliases": [ - "uion" + "stujuno" ] }, { - "denom": "ion", + "denom": "stjuno", "exponent": 6 } ], - "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", + "name": "stJUNO", + "display": "stjuno", + "symbol": "stJUNO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-763", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stujuno", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + } }, { "denom_units": [ { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/FBEE20115530F474F8BBE1460DA85437C3FBBFAF4A5DEBD71CA6B9C40559A161", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "stuluna" ] }, { - "denom": "ibcx", + "denom": "stluna", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/FBEE20115530F474F8BBE1460DA85437C3FBBFAF4A5DEBD71CA6B9C40559A161", + "name": "stLUNA", + "display": "stluna", + "symbol": "stLUNA", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-763", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stuluna", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + } }, { "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/2B9D089E73AC096934CD6BBBC71A1CD5DD2A4F8E94CC37CE7F861AC674044002", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "stinj" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "stINJ", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/2B9D089E73AC096934CD6BBBC71A1CD5DD2A4F8E94CC37CE7F861AC674044002", + "name": "stINJ", + "display": "stINJ", + "symbol": "stINJ", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-763", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stinj", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-8" } } - ] - } - ] - }, - { - "chain_name": "bostrom", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + } + }, { - "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "denom": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", "exponent": 0, "aliases": [ - "uosmo" + "staevmos" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "stevmos", + "exponent": 18 } ], - "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", + "name": "stEVMOS", + "display": "stevmos", + "symbol": "stEVMOS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-95", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "staevmos", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" + } }, { "denom_units": [ { - "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", + "denom": "ibc/ED738CF5832C5399B1DADEADDD6A65A42EDA09707EF15D743A233B40D2D69613", "exponent": 0, "aliases": [ - "uion" + "stuumee" ] }, { - "denom": "ion", + "denom": "stumee", "exponent": 6 } ], - "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/ED738CF5832C5399B1DADEADDD6A65A42EDA09707EF15D743A233B40D2D69613", + "name": "stUMEE", + "display": "stumee", + "symbol": "stUMEE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-95", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stuumee", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + } }, { "denom_units": [ { - "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", + "denom": "ibc/993020076810C73128417EC98AC2C873CAABBF627325B85631603D64C4601CEF", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "stucmdx" ] }, { - "denom": "ibcx", + "denom": "stcmdx", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/993020076810C73128417EC98AC2C873CAABBF627325B85631603D64C4601CEF", + "name": "stCMDX", + "display": "stcmdx", + "symbol": "stCMDX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-95", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-47", + "base_denom": "stucmdx", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-8" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + } }, { + "description": "The native staking token of Terra.", "denom_units": [ { - "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "uluna" ] }, { - "denom": "stibcx", + "denom": "luna", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", + "base": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" }, + "coingecko_id": "terra-luna-2", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-95", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-36", + "base_denom": "uluna", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-12" } } ] - } - ] - }, - { - "chain_name": "canto", - "assets": [ + }, { - "description": "The native governance token of Carbon", + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", "denom_units": [ { - "denom": "ibc/0D739D7202D248F85EBEC38D4C5649B86AED820A512451E7C680672A0528E88B", + "denom": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", "exponent": 0, "aliases": [ - "swth" + "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" ] }, { - "denom": "dswth", - "exponent": 8, - "aliases": [ - "SWTH" - ] + "denom": "astro", + "exponent": 6 } ], - "type_asset": "sdk.coin", - "base": "ibc/0D739D7202D248F85EBEC38D4C5649B86AED820A512451E7C680672A0528E88B", - "name": "Carbon", - "display": "dswth", - "symbol": "SWTH", + "type_asset": "cw20", + "address": "terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "base": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", + "name": "Astroport", + "display": "astro", + "symbol": "ASTRO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" }, - "coingecko_id": "switcheo", + "coingecko_id": "astroport-fi", "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "swth", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } ] }, { - "description": "The native stablecoin of Carbon", + "description": "ERIS liquid staked LUNA.", + "type_asset": "cw20", + "address": "terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", "denom_units": [ { - "denom": "ibc/3638AD279FB356BDD3BA6FD7C6E581C7AEB37E23A2F6E6327B0C146F3B876C35", + "denom": "ibc/62A3870B9804FC3A92EAAA1F0F3F07E089DBF76CC521466CA33F5AAA8AD42290", "exponent": 0, "aliases": [ - "usc" + "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct" ] }, { - "denom": "dusc", - "exponent": 8, - "aliases": [ - "USC" - ] + "denom": "ampluna", + "exponent": 6 } ], - "type_asset": "sdk.coin", - "base": "ibc/3638AD279FB356BDD3BA6FD7C6E581C7AEB37E23A2F6E6327B0C146F3B876C35", - "name": "Carbon USD Coin", - "display": "dusc", - "symbol": "USC", + "base": "ibc/62A3870B9804FC3A92EAAA1F0F3F07E089DBF76CC521466CA33F5AAA8AD42290", + "name": "ERIS Amplified LUNA", + "display": "ampluna", + "symbol": "ampLUNA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg" }, - "coingecko_id": "carbon-usd", + "coingecko_id": "eris-amplified-luna", "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "usc", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } ] }, { - "description": "BNB token on Carbon", + "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", + "type_asset": "cw20", + "address": "terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", "denom_units": [ { - "denom": "ibc/6B4D9BA064843C2FB53380251634134EC2FC12DF5409BD89F51E07CFB40B6877", + "denom": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", "exponent": 0, "aliases": [ - "bnb.1.6.773edb" + "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv" ] }, { - "denom": "bnb", - "exponent": 18, - "aliases": [ - "BNB" - ] + "denom": "roar", + "exponent": 6 } ], - "base": "ibc/6B4D9BA064843C2FB53380251634134EC2FC12DF5409BD89F51E07CFB40B6877", - "name": "Binance Coin", - "display": "bnb", - "symbol": "BNB", + "base": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", + "name": "Lion DAO", + "display": "roar", + "symbol": "ROAR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png" + }, "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "bnb.1.6.773edb", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" - } + ] }, { - "description": "bNEO token on Carbon", + "description": "Lion Cub DAO is a useless meme community DAO on Terra", + "type_asset": "cw20", + "address": "terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", "denom_units": [ { - "denom": "ibc/4E1FF987874DCF953C4045CEAAE8C54B4465DCE6860D3652D3FBBBA4C33BE02E", + "denom": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", "exponent": 0, "aliases": [ - "bneo.1.14.e2e5f6" + "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t" ] }, { - "denom": "bneo", - "exponent": 8, - "aliases": [ - "bNEO" - ] + "denom": "cub", + "exponent": 6 } ], - "base": "ibc/4E1FF987874DCF953C4045CEAAE8C54B4465DCE6860D3652D3FBBBA4C33BE02E", - "name": "BurgerNEO", - "display": "bneo", - "symbol": "bNEO", + "base": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", + "name": "Lion Cub DAO", + "display": "cub", + "symbol": "CUB", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png" + }, "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "bneo.1.14.e2e5f6", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" - } + ] }, { - "description": "BUSD (BEP-20) token on Carbon", + "description": "BLUE CUB DAO is a community DAO on Terra", + "type_asset": "cw20", + "address": "terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", "denom_units": [ { - "denom": "ibc/60DC861E8BEF250864C2E1EF27674D848BB0816E2469468D0F8BC6697EDA47F3", + "denom": "ibc/06034D37A21FC23C20C277613997270CF6CBE6F35A4FAD1858AE3506E91A7FAA", "exponent": 0, "aliases": [ - "busd.1.6.754a80" + "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584" ] }, { - "denom": "busd", - "exponent": 18, - "aliases": [ - "BUSD" - ] + "denom": "blue", + "exponent": 6 } ], - "base": "ibc/60DC861E8BEF250864C2E1EF27674D848BB0816E2469468D0F8BC6697EDA47F3", - "name": "BUSD (BEP-20)", - "display": "busd", - "symbol": "BUSD", + "base": "ibc/06034D37A21FC23C20C277613997270CF6CBE6F35A4FAD1858AE3506E91A7FAA", + "name": "BLUE CUB DAO", + "display": "blue", + "symbol": "BLUE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" + }, "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "busd.1.6.754a80", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } + ] }, { - "description": "Carbon Wrapped GLP on Carbon", + "description": "The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.", + "type_asset": "cw20", + "address": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", "denom_units": [ { - "denom": "ibc/E8CDBB4D87F6E6F9AD9F5716AA6403D686CBAE13D3E3152A389BDCE9D40027E0", + "denom": "ibc/D96A686AF4C5A5960FBFC6A61A552DA910647B3EA02F25CC17483555AEFCC20D", "exponent": 0, "aliases": [ - "cglp.1.19.1698d3" + "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml" ] }, { - "denom": "cglp", - "exponent": 18, - "aliases": [ - "CGLP" - ] + "denom": "bluna", + "exponent": 6 } ], - "base": "ibc/E8CDBB4D87F6E6F9AD9F5716AA6403D686CBAE13D3E3152A389BDCE9D40027E0", - "name": "Carbon Wrapped GLP", - "display": "cglp", - "symbol": "CGLP", + "base": "ibc/D96A686AF4C5A5960FBFC6A61A552DA910647B3EA02F25CC17483555AEFCC20D", + "name": "boneLuna", + "display": "bluna", + "symbol": "bLUNA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" + }, "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "cglp.1.19.1698d3", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" - } + ] }, { - "description": "Grouped USD on Carbon", + "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.", + "type_asset": "cw20", + "address": "terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", "denom_units": [ { - "denom": "ibc/8A5AD3ABB5D38BC78FACB216DFD59DFB688D9E1935975E633BEDC03F48C0C242", + "denom": "ibc/F21114987B694AE05A61289122A465676830C25F28C660976CDD92E62A7ADC2D", "exponent": 0, "aliases": [ - "cgt/1" + "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3" ] }, { - "denom": "usd", - "exponent": 18, - "aliases": [ - "USD" - ] + "denom": "sayve", + "exponent": 6 } ], - "base": "ibc/8A5AD3ABB5D38BC78FACB216DFD59DFB688D9E1935975E633BEDC03F48C0C242", - "name": "Carbon Grouped USD", - "display": "usd", - "symbol": "USD", + "base": "ibc/F21114987B694AE05A61289122A465676830C25F28C660976CDD92E62A7ADC2D", + "name": "sayve", + "display": "sayve", + "symbol": "SAYVE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png" }, "traces": [ { - "type": "ibc", + "type": "ibc-cw20", "counterparty": { - "channel_id": "channel-18", - "base_denom": "cgt/1", - "chain_name": "carbon" + "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", + "channel_id": "channel-41", + "base_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-6" + "port": "transfer", + "channel_id": "channel-16" } } ] - }, + } + ] + }, + { + "chain_name": "cerberus", + "assets": [ { - "description": "ETH (Arbitrum) token on Carbon", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/5EB9AF189FAF36276841945A131ABEE6917A516F0C280C5BE5346AF950FB2197", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "eth.1.19.c3b805" + "uosmo" ] }, { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/5EB9AF189FAF36276841945A131ABEE6917A516F0C280C5BE5346AF950FB2197", - "name": "Ethereum (Arbitrum)", - "display": "eth", - "symbol": "ETH", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-18", - "base_denom": "eth.1.19.c3b805", - "chain_name": "carbon" + "channel_id": "channel-212", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-6" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } + ] }, { - "description": "ETH (ERC20) token on Carbon", "denom_units": [ { - "denom": "ibc/4F0DFDAB2F35682D217B0E731C3C84EEE4A4EA3B3BE7C0316773FA579E24511B", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "eth.1.2.942d87" + "uion" ] }, { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/4F0DFDAB2F35682D217B0E731C3C84EEE4A4EA3B3BE7C0316773FA579E24511B", - "name": "Ethereum (ERC20)", - "display": "eth", - "symbol": "ETH", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-18", - "base_denom": "eth.1.2.942d87", - "chain_name": "carbon" + "channel_id": "channel-212", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-6" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } + ] }, { - "description": "USDC (ERC20) token on Carbon", "denom_units": [ { - "denom": "ibc/318F3F36888C093340769BC8DDAC989DACEA89E16649A55B7ACDE2B4A0621229", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "usdc.1.2.343151" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "usdc", - "exponent": 6, - "aliases": [ - "USDC" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/318F3F36888C093340769BC8DDAC989DACEA89E16649A55B7ACDE2B4A0621229", - "name": "Circle USD", - "display": "usdc", - "symbol": "USDC", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-18", - "base_denom": "usdc.1.2.343151", - "chain_name": "carbon" + "channel_id": "channel-212", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-6" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + ] }, { - "description": "USD Coin (BEP-20) token on Carbon", "denom_units": [ { - "denom": "ibc/4C0928A5549BF93AA9933DD0660A59C3CB05D9BDFB8F266F99EA8900ECCBBB5E", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "usdc.1.6.53ff75" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "usdc", - "exponent": 18, - "aliases": [ - "USDC" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/4C0928A5549BF93AA9933DD0660A59C3CB05D9BDFB8F266F99EA8900ECCBBB5E", - "name": "USD Coin (BEP-20)", - "display": "usdc", - "symbol": "USDC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-18", - "base_denom": "usdc.1.6.53ff75", - "chain_name": "carbon" + "channel_id": "channel-212", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-6" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } - }, + ] + } + ] + }, + { + "chain_name": "cheqd", + "assets": [ { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "exponent": 0, "aliases": [ "uosmo" @@ -12213,7 +15401,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -12230,12 +15418,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-550", + "channel_id": "channel-108", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-0" } } ] @@ -12243,7 +15431,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "exponent": 0, "aliases": [ "uion" @@ -12254,7 +15442,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206", + "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "name": "Ion", "display": "ion", "symbol": "ION", @@ -12270,12 +15458,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-550", + "channel_id": "channel-108", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-0" } } ] @@ -12283,7 +15471,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -12295,7 +15483,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", + "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -12306,12 +15494,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-550", + "channel_id": "channel-108", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-0" } } ] @@ -12319,7 +15507,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -12331,7 +15519,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -12343,12 +15531,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-550", + "channel_id": "channel-108", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-5" + "channel_id": "channel-0" } } ] @@ -12356,268 +15544,408 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "carbon", + "chain_name": "chihuahua", "assets": [ { - "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "denom": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", "exponent": 0, "aliases": [ - "acanto" + "ujuno" ] }, { - "denom": "canto", - "exponent": 18 + "denom": "juno", + "exponent": 6 } ], - "base": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", - "name": "Canto", - "display": "canto", - "symbol": "CANTO", + "base": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.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" }, - "coingecko_id": "canto", + "coingecko_id": "juno-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-28", + "base_denom": "ujuno", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/8975823883A07F8A56E1A20AB298E1424C08A0004D3F319E047E549AE6A227D8", + "exponent": 0, + "aliases": [ + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/8975823883A07F8A56E1A20AB298E1424C08A0004D3F319E047E549AE6A227D8", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-28", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ + { + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 + }, + { + "denom": "banana", + "exponent": 6 + } + ], + "base": "ibc/017E5CC493818E9393EEECC52F9F6EF71C6F957E12C85568C7E9D834D929028C", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-28", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "denom_units": [ + { + "denom": "ibc/B3E5A9E20ACBC8C380169AD8FF9A1DA38F64610C82C0412FABFBCF5FF9D29E4F", + "exponent": 0, + "aliases": [ + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + ] + }, + { + "denom": "neta", + "exponent": 6 + } + ], + "base": "ibc/B3E5A9E20ACBC8C380169AD8FF9A1DA38F64610C82C0412FABFBCF5FF9D29E4F", + "name": "Neta", + "display": "neta", + "symbol": "NETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + }, + "coingecko_id": "neta", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-28", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "description": "The native token of Migaloo Chain", + "denom_units": [ + { + "denom": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", + "exponent": 0, + "aliases": [ + "uwhale" + ] + }, + { + "denom": "whale", + "exponent": 6 + } + ], + "base": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", + "name": "Whale", + "display": "whale", + "symbol": "WHALE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png" + }, + "coingecko_id": "white-whale", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-6", - "base_denom": "acanto", - "chain_name": "canto" + "channel_id": "channel-10", + "base_denom": "uwhale", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-18" + "channel_id": "channel-39" } } ] }, { - "description": "The native staking and governance token of the Cosmos Hub.", + "description": "ampWHALE", "denom_units": [ { - "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "denom": "ibc/1ABC53B2BB5F76F5DE57F6A6640DAC100F5D078075768115FC3B8E83C54FD9FF", "exponent": 0, "aliases": [ - "uatom" + "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE" ] }, { - "denom": "atom", + "denom": "ampWHALE", "exponent": 6 } ], - "base": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/1ABC53B2BB5F76F5DE57F6A6640DAC100F5D078075768115FC3B8E83C54FD9FF", + "name": "ampWHALE", + "display": "ampWHALE", + "symbol": "ampWHALE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampWhale.svg" }, - "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-342", - "base_denom": "uatom", - "chain_name": "cosmoshub" + "channel_id": "channel-10", + "base_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-39" } } ] }, { - "description": "The native staking and governance token of the Kujira chain.", + "description": "boneWHALE", "denom_units": [ { - "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "denom": "ibc/E452FABA9C51E85726BAB567EB582FEA1541B9D26543C6876996B61112DE72F7", "exponent": 0, "aliases": [ - "ukuji" + "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale" ] }, { - "denom": "kuji", + "denom": "boneWHALE", "exponent": 6 } ], - "base": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", - "name": "Kuji", - "display": "kuji", - "symbol": "KUJI", - "coingecko_id": "kujira", + "base": "ibc/E452FABA9C51E85726BAB567EB582FEA1541B9D26543C6876996B61112DE72F7", + "name": "boneWHALE", + "display": "boneWHALE", + "symbol": "bWHALE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-46", - "base_denom": "ukuji", - "chain_name": "kujira" + "channel_id": "channel-10", + "base_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-39" } } ] }, { - "description": "The native over-collateralized stablecoin from the Kujira chain.", + "description": "FABLE", "denom_units": [ { - "denom": "ibc/D8593458C2EEDE1103F46A0B9DC8E30C9E0BB4058824251A12DFD4F9B008FAF0", + "denom": "ibc/97CD710E63E7DB51673417C457D058FAAEE9A19C376BCA745363C03C918C4F76", "exponent": 0, "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable" ] }, { - "denom": "usk", + "denom": "fable", "exponent": 6 } ], - "base": "ibc/D8593458C2EEDE1103F46A0B9DC8E30C9E0BB4058824251A12DFD4F9B008FAF0", - "name": "USK", - "display": "USK", - "symbol": "USK", - "coingecko_id": "usk", + "base": "ibc/97CD710E63E7DB51673417C457D058FAAEE9A19C376BCA745363C03C918C4F76", + "name": "FABLE", + "display": "fable", + "symbol": "FABLE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-46", - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira" + "channel_id": "channel-10", + "base_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-39" } } ] }, { - "description": "ampKUJI", + "description": "boneLUNA are autocompounding LUNA tokens", "denom_units": [ { - "denom": "ibc/F315A277A5C4D0A4D83E414842536687748D5450F5466EC4E82A2096A026EF89", + "denom": "ibc/F5EA2FEF61813EF877EDBC595662DC4620B5853507F92AF38744A61A95BCED02", "exponent": 0, "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708" ] }, { - "denom": "ampKUJI", + "denom": "bluna", "exponent": 6 } ], - "base": "ibc/F315A277A5C4D0A4D83E414842536687748D5450F5466EC4E82A2096A026EF89", - "name": "ampKUJI", - "display": "ampKUJI", - "symbol": "ampKUJI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" - }, + "base": "ibc/F5EA2FEF61813EF877EDBC595662DC4620B5853507F92AF38744A61A95BCED02", + "address": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "type_asset": "ics20", + "name": "boneLuna", + "display": "bluna", + "symbol": "bLUNA", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-46", - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira" + "channel_id": "channel-10", + "base_denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-39" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" + } }, { - "description": "MantaDAO Governance Token", + "description": "RAC", "denom_units": [ { - "denom": "ibc/903090CB22EDBE8B14894921B6C14DE0F8418672FB9209E2B685B735D2D938BB", + "denom": "ibc/E45945EAF3F1587CA3013FFC6CE0B5EEE0F49DAFED2CE51370B5B6A0C3AA258E", "exponent": 0, "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" ] }, { - "denom": "mnta", + "denom": "RAC", "exponent": 6 } ], - "base": "ibc/903090CB22EDBE8B14894921B6C14DE0F8418672FB9209E2B685B735D2D938BB", - "name": "MNTA", - "display": "MNTA", - "symbol": "MNTA", - "coingecko_id": "mantadao", + "base": "ibc/E45945EAF3F1587CA3013FFC6CE0B5EEE0F49DAFED2CE51370B5B6A0C3AA258E", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-46", - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira" + "channel_id": "channel-10", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-39" } } ] }, { - "description": "The content house of Kujira", + "description": "The native token of OKExChain", "denom_units": [ { - "denom": "ibc/774D0A8EE141F6D17D2B662BCD100D162C5A31FF2E22C367F7D5D4D6A89E2C69", + "denom": "ibc/9F63977F17AB8106AAFD8E336F5114F76F08B170B120119C8B62F27B0346A9FB", "exponent": 0, "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + "wei" ] }, { - "denom": "wink", - "exponent": 6 + "denom": "okt", + "exponent": 18 } ], - "base": "ibc/774D0A8EE141F6D17D2B662BCD100D162C5A31FF2E22C367F7D5D4D6A89E2C69", - "name": "WINK", - "display": "wink", - "symbol": "WINK", + "base": "ibc/9F63977F17AB8106AAFD8E336F5114F76F08B170B120119C8B62F27B0346A9FB", + "name": "OKExChain", + "display": "okt", + "symbol": "OKT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" }, + "coingecko_id": "oec-token", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-46", - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira" + "channel_id": "channel-5", + "base_denom": "wei", + "chain_name": "okexchain" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-24" } } ] @@ -12626,7 +15954,7 @@ const asset_lists: AssetList[] = [ "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", "exponent": 0, "aliases": [ "uosmo" @@ -12637,7 +15965,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "base": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -12654,12 +15982,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-188", + "channel_id": "channel-113", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-7" } } ] @@ -12667,7 +15995,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/C1A2C4681159048DD4A116652D8594EC5CD1C30D9FD282A9DAEAD6328CF3CDCA", "exponent": 0, "aliases": [ "uion" @@ -12678,7 +16006,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "base": "ibc/C1A2C4681159048DD4A116652D8594EC5CD1C30D9FD282A9DAEAD6328CF3CDCA", "name": "Ion", "display": "ion", "symbol": "ION", @@ -12694,12 +16022,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-188", + "channel_id": "channel-113", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-7" } } ] @@ -12707,7 +16035,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/337430475B2C9BB3AC3784E0C5C70A1A9B5C8D625E6BCEFC8B55FC026B3EAD23", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -12719,7 +16047,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "base": "ibc/337430475B2C9BB3AC3784E0C5C70A1A9B5C8D625E6BCEFC8B55FC026B3EAD23", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -12730,12 +16058,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-188", + "channel_id": "channel-113", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-7" } } ] @@ -12743,7 +16071,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/57BD9171618351F7EED6D94B49967B46937241246913E5080075582DCADC27E4", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -12755,7 +16083,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "base": "ibc/57BD9171618351F7EED6D94B49967B46937241246913E5080075582DCADC27E4", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -12767,908 +16095,1068 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-188", + "channel_id": "channel-113", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-7" } } ] }, { - "description": "The native token of Stargaze", + "description": "The native token of Secret Network", "denom_units": [ { - "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", + "denom": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", "exponent": 0, "aliases": [ - "ustars" + "uscrt" ] }, { - "denom": "stars", + "denom": "scrt", "exponent": 6 } ], - "base": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", - "name": "Stargaze", - "display": "stars", - "symbol": "STARS", + "base": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" }, - "coingecko_id": "stargaze", + "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-123", - "base_denom": "ustars", - "chain_name": "stargaze" + "channel_id": "channel-11", + "base_denom": "uscrt", + "chain_name": "secretnetwork" }, "chain": { - "channel_id": "channel-15" + "channel_id": "channel-16" + } + } + ] + } + ] + }, + { + "chain_name": "comdex", + "assets": [ + { + "description": "The native token of Crescent", + "denom_units": [ + { + "denom": "ibc/126A5E90EBBBD9923D4A94C5D6D06E018286B4CFC764B3646F78BE9760DD6F1F", + "exponent": 0, + "aliases": [ + "ucre" + ] + }, + { + "denom": "cre", + "exponent": 6 + } + ], + "base": "ibc/126A5E90EBBBD9923D4A94C5D6D06E018286B4CFC764B3646F78BE9760DD6F1F", + "name": "Crescent", + "display": "cre", + "symbol": "CRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + }, + "coingecko_id": "crescent-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-49", + "base_denom": "ucre", + "chain_name": "crescent" + }, + "chain": { + "channel_id": "channel-26" } } ] }, { - "description": "The native token of Stride", + "description": "The bonded token of Crescent", "denom_units": [ { - "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "denom": "ibc/A2BEEB3ED0F33501551E70C31A4E2147F6DF517D23631AD7F639B01EE8E4E69D", "exponent": 0, "aliases": [ - "ustrd" + "ubcre" ] }, { - "denom": "strd", + "denom": "bcre", "exponent": 6 } ], - "base": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "name": "Stride", - "display": "strd", - "symbol": "STRD", + "base": "ibc/A2BEEB3ED0F33501551E70C31A4E2147F6DF517D23631AD7F639B01EE8E4E69D", + "name": "Bonded Crescent", + "display": "bcre", + "symbol": "bCRE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" }, - "coingecko_id": "stride", + "coingecko_id": "liquid-staking-crescent", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "ustrd", - "chain_name": "stride" + "channel_id": "channel-49", + "base_denom": "ubcre", + "chain_name": "crescent" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-26" } } ] }, { + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "denom": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", "exponent": 0, "aliases": [ - "stuatom" + "ujuno" ] }, { - "denom": "statom", + "denom": "juno", "exponent": 6 } ], - "base": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", + "base": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stuatom", - "chain_name": "stride" + "channel_id": "channel-36", + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-18" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/0F4E8E28F5E20104A392D5903587397002C551A8706F75A0B3470745FE44074F", + "exponent": 0, + "aliases": [ + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + ] + }, + { + "denom": "atom", + "exponent": 6 + } + ], + "type_asset": "ics20", + "base": "ibc/0F4E8E28F5E20104A392D5903587397002C551A8706F75A0B3470745FE44074F", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-36", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-18" + } + } + ] + }, + { + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "denom_units": [ + { + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 + }, + { + "denom": "banana", + "exponent": 6 + } + ], + "base": "ibc/EAB874FF3F144AE61EEB8EAB6C42C126D692CD61BB0A7C69F21381737371CCBB", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-36", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-18" } } + ] + }, + { + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "denom_units": [ + { + "denom": "ibc/3F9C47BCEB0E3A9F6DE537C4BEAA461240D85BAA6E5125B52EBB7A3B2EE39C27", + "exponent": 0, + "aliases": [ + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + ] + }, + { + "denom": "neta", + "exponent": 6 + } ], + "base": "ibc/3F9C47BCEB0E3A9F6DE537C4BEAA461240D85BAA6E5125B52EBB7A3B2EE39C27", + "name": "Neta", + "display": "neta", + "symbol": "NETA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" }, - "coingecko_id": "stride-staked-atom" + "coingecko_id": "neta", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-36", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" + }, + "chain": { + "channel_id": "channel-18" + } + } + ] }, { + "description": "The native token of Migaloo Chain", "denom_units": [ { - "denom": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", + "denom": "ibc/1A8D30507F3EAC6A99666EDCB8CD147D1453B35E68F4331B63848B2040E9A5E2", "exponent": 0, "aliases": [ - "stustars" + "uwhale" ] }, { - "denom": "ststars", + "denom": "whale", "exponent": 6 } ], - "base": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", - "name": "stSTARS", - "display": "ststars", - "symbol": "stSTARS", + "base": "ibc/1A8D30507F3EAC6A99666EDCB8CD147D1453B35E68F4331B63848B2040E9A5E2", + "name": "Whale", + "display": "whale", + "symbol": "WHALE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png" + }, + "coingecko_id": "white-whale", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stustars", - "chain_name": "stride" + "channel_id": "channel-12", + "base_denom": "uwhale", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-63" + } + } + ] + }, + { + "description": "ampWHALE", + "denom_units": [ + { + "denom": "ibc/412DE088BAD7A3AB5BF299E1AEEDDBA88E6F3E1BCFEC5EC0BDDEC2A5A062F278", + "exponent": 0, + "aliases": [ + "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE" + ] + }, + { + "denom": "ampWHALE", + "exponent": 6 + } + ], + "base": "ibc/412DE088BAD7A3AB5BF299E1AEEDDBA88E6F3E1BCFEC5EC0BDDEC2A5A062F278", + "name": "ampWHALE", + "display": "ampWHALE", + "symbol": "ampWHALE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampWhale.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-12", + "base_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-63" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" - } + ] }, { + "description": "boneWHALE", "denom_units": [ { - "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "denom": "ibc/BED9212E5BA494E6EA522D82D55972A3C148BB0232FE2B4366FF5356FB3E522C", "exponent": 0, "aliases": [ - "stuosmo" + "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale" ] }, { - "denom": "stosmo", + "denom": "boneWHALE", "exponent": 6 } ], - "base": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", - "name": "stOSMO", - "display": "stosmo", - "symbol": "stOSMO", + "base": "ibc/BED9212E5BA494E6EA522D82D55972A3C148BB0232FE2B4366FF5356FB3E522C", + "name": "boneWHALE", + "display": "boneWHALE", + "symbol": "bWHALE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stuosmo", - "chain_name": "stride" + "channel_id": "channel-12", + "base_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-63" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" - } + ] }, { + "description": "FABLE", "denom_units": [ { - "denom": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", + "denom": "ibc/637E2A174CCE98B9540AFDBB8C1633778A0BFEA3ED5935BD3E8D9C8E77EE9C63", "exponent": 0, "aliases": [ - "stujuno" + "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable" ] }, { - "denom": "stjuno", + "denom": "fable", "exponent": 6 } ], - "base": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", - "name": "stJUNO", - "display": "stjuno", - "symbol": "stJUNO", + "base": "ibc/637E2A174CCE98B9540AFDBB8C1633778A0BFEA3ED5935BD3E8D9C8E77EE9C63", + "name": "FABLE", + "display": "fable", + "symbol": "FABLE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stujuno", - "chain_name": "stride" + "channel_id": "channel-12", + "base_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-63" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" - } + ] }, { + "description": "boneLUNA are autocompounding LUNA tokens", "denom_units": [ { - "denom": "ibc/FBEE20115530F474F8BBE1460DA85437C3FBBFAF4A5DEBD71CA6B9C40559A161", + "denom": "ibc/883F66BA984C37CF5E0232B6C99590D8A403BFF998ACAB7F3397F8282062F7D6", "exponent": 0, "aliases": [ - "stuluna" + "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708" ] }, { - "denom": "stluna", + "denom": "bluna", "exponent": 6 } ], - "base": "ibc/FBEE20115530F474F8BBE1460DA85437C3FBBFAF4A5DEBD71CA6B9C40559A161", - "name": "stLUNA", - "display": "stluna", - "symbol": "stLUNA", + "base": "ibc/883F66BA984C37CF5E0232B6C99590D8A403BFF998ACAB7F3397F8282062F7D6", + "address": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "type_asset": "ics20", + "name": "boneLuna", + "display": "bluna", + "symbol": "bLUNA", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stuluna", - "chain_name": "stride" + "channel_id": "channel-12", + "base_denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-63" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, { + "description": "RAC", "denom_units": [ { - "denom": "ibc/2B9D089E73AC096934CD6BBBC71A1CD5DD2A4F8E94CC37CE7F861AC674044002", + "denom": "ibc/8A9D61D1F18D934882EF45CDED47981229E9051E9D6B8AEDB49E32409609702E", "exponent": 0, "aliases": [ - "stinj" + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" ] }, { - "denom": "stINJ", - "exponent": 18 + "denom": "RAC", + "exponent": 6 } ], - "base": "ibc/2B9D089E73AC096934CD6BBBC71A1CD5DD2A4F8E94CC37CE7F861AC674044002", - "name": "stINJ", - "display": "stINJ", - "symbol": "stINJ", + "base": "ibc/8A9D61D1F18D934882EF45CDED47981229E9051E9D6B8AEDB49E32409609702E", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stinj", - "chain_name": "stride" + "channel_id": "channel-12", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-63" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" - } + ] }, { + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "staevmos" + "uosmo" ] }, { - "denom": "stevmos", - "exponent": 18 + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", - "name": "stEVMOS", - "display": "stevmos", - "symbol": "stEVMOS", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "staevmos", - "chain_name": "stride" + "channel_id": "channel-87", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" - } + ] }, { "denom_units": [ { - "denom": "ibc/ED738CF5832C5399B1DADEADDD6A65A42EDA09707EF15D743A233B40D2D69613", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "stuumee" + "uion" ] }, { - "denom": "stumee", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/ED738CF5832C5399B1DADEADDD6A65A42EDA09707EF15D743A233B40D2D69613", - "name": "stUMEE", - "display": "stumee", - "symbol": "stUMEE", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stuumee", - "chain_name": "stride" + "channel_id": "channel-87", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" - } + ] }, { "denom_units": [ { - "denom": "ibc/993020076810C73128417EC98AC2C873CAABBF627325B85631603D64C4601CEF", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "stucmdx" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "stcmdx", + "denom": "ibcx", "exponent": 6 } ], - "base": "ibc/993020076810C73128417EC98AC2C873CAABBF627325B85631603D64C4601CEF", - "name": "stCMDX", - "display": "stcmdx", - "symbol": "stCMDX", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-47", - "base_denom": "stucmdx", - "chain_name": "stride" + "channel_id": "channel-87", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-8" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" - } + ] }, { - "description": "The native staking token of Terra.", "denom_units": [ { - "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "uluna" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "luna", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", - "name": "Luna", - "display": "luna", - "symbol": "LUNA", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "terra-luna-2", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-36", - "base_denom": "uluna", - "chain_name": "terra2" + "channel_id": "channel-87", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-12" + "channel_id": "channel-1" } } ] }, { - "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "description": "The native token of Secret Network", "denom_units": [ { - "denom": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", + "denom": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", "exponent": 0, "aliases": [ - "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26" + "uscrt" ] }, { - "denom": "astro", + "denom": "scrt", "exponent": 6 } ], - "type_asset": "cw20", - "address": "terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "base": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", - "name": "Astroport", - "display": "astro", - "symbol": "ASTRO", + "base": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" }, - "coingecko_id": "astroport-fi", + "coingecko_id": "secret", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "chain_name": "terra2" + "channel_id": "channel-63", + "base_denom": "uscrt", + "chain_name": "secretnetwork" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-65" } } ] }, { - "description": "ERIS liquid staked LUNA.", - "type_asset": "cw20", - "address": "terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "description": "The native token of Stride", "denom_units": [ { - "denom": "ibc/62A3870B9804FC3A92EAAA1F0F3F07E089DBF76CC521466CA33F5AAA8AD42290", + "denom": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", "exponent": 0, "aliases": [ - "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct" + "ustrd" ] }, { - "denom": "ampluna", + "denom": "strd", "exponent": 6 } ], - "base": "ibc/62A3870B9804FC3A92EAAA1F0F3F07E089DBF76CC521466CA33F5AAA8AD42290", - "name": "ERIS Amplified LUNA", - "display": "ampluna", - "symbol": "ampLUNA", + "base": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", + "name": "Stride", + "display": "strd", + "symbol": "STRD", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.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" }, - "coingecko_id": "eris-amplified-luna", + "coingecko_id": "stride", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", - "chain_name": "terra2" + "channel_id": "channel-49", + "base_denom": "ustrd", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } ] }, { - "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", - "type_asset": "cw20", - "address": "terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", "denom_units": [ { - "denom": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", + "denom": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", "exponent": 0, "aliases": [ - "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv" + "stuatom" ] }, { - "denom": "roar", + "denom": "statom", "exponent": 6 } ], - "base": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", - "name": "Lion DAO", - "display": "roar", - "symbol": "ROAR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png" - }, + "base": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "chain_name": "terra2" + "channel_id": "channel-49", + "base_denom": "stuatom", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + }, + "coingecko_id": "stride-staked-atom" }, { - "description": "Lion Cub DAO is a useless meme community DAO on Terra", - "type_asset": "cw20", - "address": "terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", "denom_units": [ { - "denom": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", + "denom": "ibc/5187A987A0A90BEEDE06B32ADBE4436EFA76577717561F33E6C7EDB5ADB21576", "exponent": 0, "aliases": [ - "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t" + "stustars" ] }, { - "denom": "cub", + "denom": "ststars", "exponent": 6 } ], - "base": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", - "name": "Lion Cub DAO", - "display": "cub", - "symbol": "CUB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png" - }, + "base": "ibc/5187A987A0A90BEEDE06B32ADBE4436EFA76577717561F33E6C7EDB5ADB21576", + "name": "stSTARS", + "display": "ststars", + "symbol": "stSTARS", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "chain_name": "terra2" + "channel_id": "channel-49", + "base_denom": "stustars", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + } }, { - "description": "BLUE CUB DAO is a community DAO on Terra", - "type_asset": "cw20", - "address": "terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", "denom_units": [ { - "denom": "ibc/06034D37A21FC23C20C277613997270CF6CBE6F35A4FAD1858AE3506E91A7FAA", + "denom": "ibc/CC482813CC038C614C2615A997621EA5E605ADCCD4040B83B0468BD72533A165", "exponent": 0, "aliases": [ - "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584" + "stuosmo" ] }, { - "denom": "blue", + "denom": "stosmo", "exponent": 6 } ], - "base": "ibc/06034D37A21FC23C20C277613997270CF6CBE6F35A4FAD1858AE3506E91A7FAA", - "name": "BLUE CUB DAO", - "display": "blue", - "symbol": "BLUE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png" - }, + "base": "ibc/CC482813CC038C614C2615A997621EA5E605ADCCD4040B83B0468BD72533A165", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "chain_name": "terra2" + "channel_id": "channel-49", + "base_denom": "stuosmo", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } }, { - "description": "The GraveDigger is the Liquid Staking Product of BackBone Labs. It will have its own platform. Its liquid staking derivative (LSD) is boneLUNA.", - "type_asset": "cw20", - "address": "terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", "denom_units": [ { - "denom": "ibc/D96A686AF4C5A5960FBFC6A61A552DA910647B3EA02F25CC17483555AEFCC20D", + "denom": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", "exponent": 0, "aliases": [ - "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml" + "stujuno" ] }, { - "denom": "bluna", + "denom": "stjuno", "exponent": 6 } ], - "base": "ibc/D96A686AF4C5A5960FBFC6A61A552DA910647B3EA02F25CC17483555AEFCC20D", - "name": "boneLuna", - "display": "bluna", - "symbol": "bLUNA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" - }, + "base": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", + "name": "stJUNO", + "display": "stjuno", + "symbol": "stJUNO", "traces": [ { - "type": "ibc-cw20", + "type": "ibc", "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "chain_name": "terra2" + "channel_id": "channel-49", + "base_denom": "stujuno", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + } }, { - "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.", - "type_asset": "cw20", - "address": "terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", "denom_units": [ { - "denom": "ibc/F21114987B694AE05A61289122A465676830C25F28C660976CDD92E62A7ADC2D", + "denom": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", "exponent": 0, "aliases": [ - "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3" + "stuluna" ] }, { - "denom": "sayve", + "denom": "stluna", "exponent": 6 } ], - "base": "ibc/F21114987B694AE05A61289122A465676830C25F28C660976CDD92E62A7ADC2D", - "name": "sayve", - "display": "sayve", - "symbol": "SAYVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png" - }, + "base": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", + "name": "stLUNA", + "display": "stluna", + "symbol": "stLUNA", "traces": [ - { - "type": "ibc-cw20", - "counterparty": { - "port": "wasm.terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au", - "channel_id": "channel-41", - "base_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "chain_name": "terra2" + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-49", + "base_denom": "stuluna", + "chain_name": "stride" }, "chain": { - "port": "transfer", - "channel_id": "channel-16" + "channel_id": "channel-45" } } - ] - } - ] - }, - { - "chain_name": "cerberus", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + } + }, { - "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/1D9CC07F68C002C715525763609236ECF955EFAA9619C1BD57060BB60C9203E0", "exponent": 0, "aliases": [ - "uosmo" + "stinj" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "stINJ", + "exponent": 18 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/1D9CC07F68C002C715525763609236ECF955EFAA9619C1BD57060BB60C9203E0", + "name": "stINJ", + "display": "stINJ", + "symbol": "stINJ", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-212", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "stinj", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + } }, { "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", "exponent": 0, "aliases": [ - "uion" + "staevmos" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "stevmos", + "exponent": 18 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", + "name": "stEVMOS", + "display": "stevmos", + "symbol": "stEVMOS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-212", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "staevmos", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" + } }, { "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/8D4E402467332F3A57F38C5EBAB87EAADBBFF78094F57FBCA2FF5196962A730F", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "stuumee" ] }, { - "denom": "ibcx", + "denom": "stumee", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/8D4E402467332F3A57F38C5EBAB87EAADBBFF78094F57FBCA2FF5196962A730F", + "name": "stUMEE", + "display": "stumee", + "symbol": "stUMEE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-212", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "stuumee", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + } }, { "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "stucmdx" ] }, { - "denom": "stibcx", + "denom": "stcmdx", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", + "name": "stCMDX", + "display": "stcmdx", + "symbol": "stCMDX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-212", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "stucmdx", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-45" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + } } ] }, { - "chain_name": "cheqd", + "chain_name": "composable", "assets": [ { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", "exponent": 0, "aliases": [ "uosmo" @@ -13679,7 +17167,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "base": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -13696,12 +17184,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-108", + "channel_id": "channel-1279", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-3" } } ] @@ -13709,7 +17197,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", "exponent": 0, "aliases": [ "uion" @@ -13720,7 +17208,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "base": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", "name": "Ion", "display": "ion", "symbol": "ION", @@ -13736,12 +17224,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-108", + "channel_id": "channel-1279", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-3" } } ] @@ -13749,7 +17237,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -13761,7 +17249,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "base": "ibc/4B39EC56434C4D8FAD896E608BD3E915601CCBF77265C5645874A42A50EAA6E4", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -13772,12 +17260,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-108", + "channel_id": "channel-1279", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-3" } } ] @@ -13785,7 +17273,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -13797,7 +17285,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "base": "ibc/5C9F3AA2AB264730BCF28BF465A06793BB2B2843C1FB55E011D7E3849159D934", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -13809,5565 +17297,5324 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-108", + "channel_id": "channel-1279", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" - } - } - ] - } - ] - }, - { - "chain_name": "chihuahua", - "assets": [ - { - "description": "The native token of JUNO Chain", - "denom_units": [ - { - "denom": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", - "exponent": 0, - "aliases": [ - "ujuno" - ] - }, - { - "denom": "juno", - "exponent": 6 - } - ], - "base": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-28", - "base_denom": "ujuno", - "chain_name": "juno" - }, - "chain": { - "channel_id": "channel-11" - } - } - ] - }, - { - "denom_units": [ - { - "denom": "ibc/8975823883A07F8A56E1A20AB298E1424C08A0004D3F319E047E549AE6A227D8", - "exponent": 0, - "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" - ] - }, - { - "denom": "atom", - "exponent": 6 - } - ], - "type_asset": "ics20", - "base": "ibc/8975823883A07F8A56E1A20AB298E1424C08A0004D3F319E047E549AE6A227D8", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-28", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" - }, - "chain": { - "channel_id": "channel-11" - } - } - ] - }, - { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "denom_units": [ - { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 - }, - { - "denom": "banana", - "exponent": 6 - } - ], - "base": "ibc/017E5CC493818E9393EEECC52F9F6EF71C6F957E12C85568C7E9D834D929028C", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-28", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" - }, - "chain": { - "channel_id": "channel-11" - } - } - ] - }, - { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "denom_units": [ - { - "denom": "ibc/B3E5A9E20ACBC8C380169AD8FF9A1DA38F64610C82C0412FABFBCF5FF9D29E4F", - "exponent": 0, - "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" - ] - }, - { - "denom": "neta", - "exponent": 6 - } - ], - "base": "ibc/B3E5A9E20ACBC8C380169AD8FF9A1DA38F64610C82C0412FABFBCF5FF9D29E4F", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-28", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" - }, - "chain": { - "channel_id": "channel-11" + "channel_id": "channel-3" } } ] }, { - "description": "The native token of Migaloo Chain", + "description": "The native staking and governance token of Picasso.", "denom_units": [ { - "denom": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", + "denom": "ibc/6517CF990493C8F3D6AE1E03FA1B5167B1E40345061104F07296D883379B4A08", "exponent": 0, "aliases": [ - "uwhale" + "ppica" ] }, { - "denom": "whale", - "exponent": 6 + "denom": "pica", + "exponent": 12 } ], - "base": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", - "name": "Whale", - "display": "whale", - "symbol": "WHALE", + "base": "ibc/6517CF990493C8F3D6AE1E03FA1B5167B1E40345061104F07296D883379B4A08", + "name": "Pica", + "display": "pica", + "symbol": "PICA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" }, - "coingecko_id": "white-whale", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-10", - "base_denom": "uwhale", - "chain_name": "migaloo" + "channel_id": "channel-17", + "base_denom": "ppica", + "chain_name": "picasso" }, "chain": { - "channel_id": "channel-39" + "channel_id": "channel-2" } } ] }, { - "description": "ampWHALE", "denom_units": [ { - "denom": "ibc/1ABC53B2BB5F76F5DE57F6A6640DAC100F5D078075768115FC3B8E83C54FD9FF", + "denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", "exponent": 0, "aliases": [ - "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE" + "4" ] }, { - "denom": "ampWHALE", - "exponent": 6 + "denom": "ksm", + "exponent": 12 } ], - "base": "ibc/1ABC53B2BB5F76F5DE57F6A6640DAC100F5D078075768115FC3B8E83C54FD9FF", - "name": "ampWHALE", - "display": "ampWHALE", - "symbol": "ampWHALE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampWhale.svg" - }, + "base": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "name": "Kusama", + "display": "ksm", + "symbol": "KSM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-10", - "base_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "chain_name": "migaloo" + "channel_id": "channel-17", + "base_denom": "4", + "chain_name": "picasso" }, "chain": { - "channel_id": "channel-39" + "channel_id": "channel-2" } } ] - }, + } + ] + }, + { + "chain_name": "cosmoshub", + "assets": [ { - "description": "boneWHALE", + "description": "The native EVM, governance and staking token of the Acrechain", "denom_units": [ { - "denom": "ibc/E452FABA9C51E85726BAB567EB582FEA1541B9D26543C6876996B61112DE72F7", + "denom": "ibc/1AA15279AD043C26508AF9FA8AD4A318A5688071397A350EA86807EDA7327720", "exponent": 0, "aliases": [ - "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale" + "aacre" ] }, { - "denom": "boneWHALE", - "exponent": 6 + "denom": "acre", + "exponent": 18 } ], - "base": "ibc/E452FABA9C51E85726BAB567EB582FEA1541B9D26543C6876996B61112DE72F7", - "name": "boneWHALE", - "display": "boneWHALE", - "symbol": "bWHALE", + "base": "ibc/1AA15279AD043C26508AF9FA8AD4A318A5688071397A350EA86807EDA7327720", + "name": "Acre", + "display": "acre", + "symbol": "ACRE", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png" }, + "coingecko_id": "arable-protocol", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-10", - "base_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "chain_name": "migaloo" + "channel_id": "channel-8", + "base_denom": "aacre", + "chain_name": "acrechain" }, "chain": { - "channel_id": "channel-39" + "channel_id": "channel-457" } } ] }, { - "description": "FABLE", + "description": "Overcollateralized stable coin for Arable derivatives v1", "denom_units": [ { - "denom": "ibc/97CD710E63E7DB51673417C457D058FAAEE9A19C376BCA745363C03C918C4F76", + "denom": "ibc/7ED89FB7AF5BB5791B424BAB0D17DAA793DD836D79C594DFEC690062D2EFB9E1", "exponent": 0, "aliases": [ - "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable" + "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c" ] }, { - "denom": "fable", - "exponent": 6 + "denom": "arusd", + "exponent": 18 } ], - "base": "ibc/97CD710E63E7DB51673417C457D058FAAEE9A19C376BCA745363C03C918C4F76", - "name": "FABLE", - "display": "fable", - "symbol": "FABLE", + "base": "ibc/7ED89FB7AF5BB5791B424BAB0D17DAA793DD836D79C594DFEC690062D2EFB9E1", + "name": "Arable USD", + "display": "arusd", + "symbol": "arUSD", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.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" }, + "coingecko_id": "arable-usd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-10", - "base_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "chain_name": "migaloo" + "channel_id": "channel-8", + "base_denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", + "chain_name": "acrechain" }, "chain": { - "channel_id": "channel-39" + "channel_id": "channel-457" } } ] }, { - "description": "boneLUNA are autocompounding LUNA tokens", - "denom_units": [ - { - "denom": "ibc/F5EA2FEF61813EF877EDBC595662DC4620B5853507F92AF38744A61A95BCED02", - "exponent": 0, - "aliases": [ - "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708" - ] - }, - { - "denom": "bluna", - "exponent": 6 - } - ], - "base": "ibc/F5EA2FEF61813EF877EDBC595662DC4620B5853507F92AF38744A61A95BCED02", - "address": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "type_asset": "ics20", - "name": "boneLuna", - "display": "bluna", - "symbol": "bLUNA", - "traces": [ - { - "type": "ibc", - "counterparty": { - "channel_id": "channel-10", - "base_denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", - "chain_name": "migaloo" - }, - "chain": { - "channel_id": "channel-39" - } - } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" - } - }, - { - "description": "The native token of OKExChain", + "description": "Ciento Exchange Token", "denom_units": [ { - "denom": "ibc/9F63977F17AB8106AAFD8E336F5114F76F08B170B120119C8B62F27B0346A9FB", + "denom": "ibc/6C0C37FF4AD97EFF12388662B6DCD471319D7733673315905FFC3E08BF5C6912", "exponent": 0, "aliases": [ - "wei" + "erc20/0xAE6D3334989a22A65228732446731438672418F2" ] }, { - "denom": "okt", + "denom": "cnto", "exponent": 18 } ], - "base": "ibc/9F63977F17AB8106AAFD8E336F5114F76F08B170B120119C8B62F27B0346A9FB", - "name": "OKExChain", - "display": "okt", - "symbol": "OKT", + "base": "ibc/6C0C37FF4AD97EFF12388662B6DCD471319D7733673315905FFC3E08BF5C6912", + "name": "Ciento Token", + "display": "cnto", + "symbol": "CNTO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/okexchain/images/okc.png" + "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" }, - "coingecko_id": "oec-token", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "wei", - "chain_name": "okexchain" + "channel_id": "channel-8", + "base_denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", + "chain_name": "acrechain" }, "chain": { - "channel_id": "channel-24" + "channel_id": "channel-457" } } ] }, { - "description": "The native token of Osmosis", + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", "denom_units": [ { - "denom": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", + "denom": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", "exponent": 0, "aliases": [ - "uosmo" + "ubld" ] }, { - "denom": "osmo", + "denom": "bld", "exponent": 6 } ], - "base": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", + "name": "Agoric", + "display": "bld", + "symbol": "BLD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "coingecko_id": "agoric", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-113", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-5", + "base_denom": "ubld", + "chain_name": "agoric" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-405" } } ] }, { + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", "denom_units": [ { - "denom": "ibc/C1A2C4681159048DD4A116652D8594EC5CD1C30D9FD282A9DAEAD6328CF3CDCA", + "denom": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", "exponent": 0, "aliases": [ - "uion" + "uist" ] }, { - "denom": "ion", + "denom": "ist", "exponent": 6 } ], - "base": "ibc/C1A2C4681159048DD4A116652D8594EC5CD1C30D9FD282A9DAEAD6328CF3CDCA", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", + "name": "Inter Stable Token", + "display": "ist", + "symbol": "IST", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-113", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-5", + "base_denom": "uist", + "chain_name": "agoric" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-405" } } ] }, { + "description": "The native staking and governance token of the AIOZ Network.", "denom_units": [ { - "denom": "ibc/337430475B2C9BB3AC3784E0C5C70A1A9B5C8D625E6BCEFC8B55FC026B3EAD23", + "denom": "ibc/9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "attoaioz" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "nanoaioz", + "exponent": 9 + }, + { + "denom": "aioz", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/337430475B2C9BB3AC3784E0C5C70A1A9B5C8D625E6BCEFC8B55FC026B3EAD23", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", + "base": "ibc/9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C", + "name": "AIOZ", + "display": "aioz", + "symbol": "AIOZ", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png" }, + "coingecko_id": "aioz-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-113", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-0", + "base_denom": "attoaioz", + "chain_name": "aioz" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-567" } } ] }, { + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/57BD9171618351F7EED6D94B49967B46937241246913E5080075582DCADC27E4", + "denom": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "uakt" ] }, { - "denom": "stibcx", + "denom": "akt", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/57BD9171618351F7EED6D94B49967B46937241246913E5080075582DCADC27E4", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", + "base": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", + "name": "Akash Network", + "display": "akt", + "symbol": "AKT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + "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" }, + "coingecko_id": "akash-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-113", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-17", + "base_denom": "uakt", + "chain_name": "akash" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-184" } } ] }, { - "description": "The native token of Secret Network", + "description": "The native token of Archway network", "denom_units": [ { - "denom": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", + "denom": "ibc/98D08BB74578514C9A97A76A3470A09FCC3698821581621A984110D820FF478A", "exponent": 0, "aliases": [ - "uscrt" + "aarch" ] }, { - "denom": "scrt", - "exponent": 6 + "denom": "uarch", + "exponent": 12 + }, + { + "denom": "arch", + "exponent": 18 } ], - "base": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", + "base": "ibc/98D08BB74578514C9A97A76A3470A09FCC3698821581621A984110D820FF478A", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" }, - "coingecko_id": "secret", + "coingecko_id": "archway", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "uscrt", - "chain_name": "secretnetwork" + "channel_id": "channel-0", + "base_denom": "aarch", + "chain_name": "archway" }, "chain": { - "channel_id": "channel-16" + "channel_id": "channel-623" } } ] - } - ] - }, - { - "chain_name": "comdex", - "assets": [ + }, { - "description": "The native token of Crescent", + "description": "The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.", "denom_units": [ { - "denom": "ibc/126A5E90EBBBD9923D4A94C5D6D06E018286B4CFC764B3646F78BE9760DD6F1F", + "denom": "ibc/ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284", "exponent": 0, "aliases": [ - "ucre" + "ubcna" ] }, { - "denom": "cre", + "denom": "bcna", "exponent": 6 } ], - "base": "ibc/126A5E90EBBBD9923D4A94C5D6D06E018286B4CFC764B3646F78BE9760DD6F1F", - "name": "Crescent", - "display": "cre", - "symbol": "CRE", + "base": "ibc/ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284", + "display": "bcna", + "name": "BitCanna", + "symbol": "BCNA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" }, - "coingecko_id": "crescent-network", + "coingecko_id": "bitcanna", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ucre", - "chain_name": "crescent" + "channel_id": "channel-3", + "base_denom": "ubcna", + "chain_name": "bitcanna" }, "chain": { - "channel_id": "channel-26" + "channel_id": "channel-232" } } ] }, { - "description": "The bonded token of Crescent", + "description": "BitSong Native Token", "denom_units": [ { - "denom": "ibc/A2BEEB3ED0F33501551E70C31A4E2147F6DF517D23631AD7F639B01EE8E4E69D", + "denom": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", "exponent": 0, "aliases": [ - "ubcre" + "ubtsg" ] }, { - "denom": "bcre", + "denom": "btsg", "exponent": 6 } ], - "base": "ibc/A2BEEB3ED0F33501551E70C31A4E2147F6DF517D23631AD7F639B01EE8E4E69D", - "name": "Bonded Crescent", - "display": "bcre", - "symbol": "bCRE", + "base": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", + "name": "BitSong", + "display": "btsg", + "symbol": "BTSG", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" }, - "coingecko_id": "liquid-staking-crescent", + "type_asset": "sdk.coin", + "coingecko_id": "bitsong", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ubcre", - "chain_name": "crescent" + "channel_id": "channel-1", + "base_denom": "ubtsg", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-26" + "channel_id": "channel-229" } } ] }, { - "description": "The native token of JUNO Chain", + "description": "Adam Clay a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", + "denom": "ibc/02925FA909F79A4BD2361D851D2DFA56F2ABFD8DF2AF68E31DAD2F03AEC2B187", "exponent": 0, "aliases": [ - "ujuno" + "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" ] }, { - "denom": "juno", + "denom": "clay", "exponent": 6 } ], - "base": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", + "base": "ibc/02925FA909F79A4BD2361D851D2DFA56F2ABFD8DF2AF68E31DAD2F03AEC2B187", + "name": "Adam Clay FanToken", + "display": "clay", + "symbol": "CLAY", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" }, - "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-36", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-1", + "base_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-18" + "channel_id": "channel-229" } } ] }, { + "description": "Nicola Fasano a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/0F4E8E28F5E20104A392D5903587397002C551A8706F75A0B3470745FE44074F", + "denom": "ibc/C8B6B7030F6CA485E93AEF7A139191EFA29331BF991D0D8E3A95E7C8AF819D20", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" ] }, { - "denom": "atom", + "denom": "fasano", "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/0F4E8E28F5E20104A392D5903587397002C551A8706F75A0B3470745FE44074F", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/C8B6B7030F6CA485E93AEF7A139191EFA29331BF991D0D8E3A95E7C8AF819D20", + "name": "Nicola Fasano Fantoken", + "display": "fasano", + "symbol": "FASANO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-36", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-1", + "base_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-18" + "channel_id": "channel-229" } } ] }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "Delta 9 a BitSong Music FanToken", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/83A9BB18B9EEB7688915D5D1572E8559A6E8FBCE117CCE4C59D697439C4426F0", + "exponent": 0, + "aliases": [ + "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" + ] }, { - "denom": "banana", + "denom": "d9x", "exponent": 6 } ], - "base": "ibc/EAB874FF3F144AE61EEB8EAB6C42C126D692CD61BB0A7C69F21381737371CCBB", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", + "base": "ibc/83A9BB18B9EEB7688915D5D1572E8559A6E8FBCE117CCE4C59D697439C4426F0", + "name": "Delta 9 Fantoken", + "display": "d9x", + "symbol": "D9X", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-36", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-1", + "base_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-18" + "channel_id": "channel-229" } } ] }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "FONTI a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/3F9C47BCEB0E3A9F6DE537C4BEAA461240D85BAA6E5125B52EBB7A3B2EE39C27", + "denom": "ibc/206D54CBAE716A385B5EE6C4C49092AC3F4D4BBA68201CFB7AED3F6842A36264", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" ] }, { - "denom": "neta", + "denom": "fonti", "exponent": 6 } ], - "base": "ibc/3F9C47BCEB0E3A9F6DE537C4BEAA461240D85BAA6E5125B52EBB7A3B2EE39C27", - "name": "Neta", - "display": "neta", - "symbol": "NETA", + "base": "ibc/206D54CBAE716A385B5EE6C4C49092AC3F4D4BBA68201CFB7AED3F6842A36264", + "name": "FONTI Fantoken", + "display": "fonti", + "symbol": "FONTI", "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" }, - "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-36", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-1", + "base_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-18" + "channel_id": "channel-229" } } ] }, { - "description": "The native token of Migaloo Chain", + "description": "BlackJack a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/1A8D30507F3EAC6A99666EDCB8CD147D1453B35E68F4331B63848B2040E9A5E2", + "denom": "ibc/C92243825D7211BCB656C178679EC0CF8229417339B52633D5A6DD8FE7D063B9", "exponent": 0, "aliases": [ - "uwhale" + "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" ] }, { - "denom": "whale", + "denom": "bjks", "exponent": 6 } ], - "base": "ibc/1A8D30507F3EAC6A99666EDCB8CD147D1453B35E68F4331B63848B2040E9A5E2", - "name": "Whale", - "display": "whale", - "symbol": "WHALE", + "base": "ibc/C92243825D7211BCB656C178679EC0CF8229417339B52633D5A6DD8FE7D063B9", + "name": "BlackJack Fantoken", + "display": "bjks", + "symbol": "BJKS", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" }, - "coingecko_id": "white-whale", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "uwhale", - "chain_name": "migaloo" + "channel_id": "channel-1", + "base_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-229" } } ] }, { - "description": "ampWHALE", + "description": "Rawanne a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/412DE088BAD7A3AB5BF299E1AEEDDBA88E6F3E1BCFEC5EC0BDDEC2A5A062F278", + "denom": "ibc/2ED9AAF50E26251E98DD92847939E83D579C564EDAC0F65AEA3F1F1ED236404D", "exponent": 0, "aliases": [ - "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE" + "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" ] }, { - "denom": "ampWHALE", + "denom": "rwne", "exponent": 6 } ], - "base": "ibc/412DE088BAD7A3AB5BF299E1AEEDDBA88E6F3E1BCFEC5EC0BDDEC2A5A062F278", - "name": "ampWHALE", - "display": "ampWHALE", - "symbol": "ampWHALE", + "base": "ibc/2ED9AAF50E26251E98DD92847939E83D579C564EDAC0F65AEA3F1F1ED236404D", + "name": "Rawanne Fantoken", + "display": "rwne", + "symbol": "RWNE", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampWhale.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "chain_name": "migaloo" + "channel_id": "channel-1", + "base_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-229" } } ] }, { - "description": "boneWHALE", + "description": "Enmoda a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/BED9212E5BA494E6EA522D82D55972A3C148BB0232FE2B4366FF5356FB3E522C", + "denom": "ibc/F83584A98C5E92D36D4742CCDA815DACD55488A1FE735788AC917CA4ABE9B703", "exponent": 0, "aliases": [ - "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale" + "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" ] }, { - "denom": "boneWHALE", + "denom": "enmoda", "exponent": 6 } ], - "base": "ibc/BED9212E5BA494E6EA522D82D55972A3C148BB0232FE2B4366FF5356FB3E522C", - "name": "boneWHALE", - "display": "boneWHALE", - "symbol": "bWHALE", + "base": "ibc/F83584A98C5E92D36D4742CCDA815DACD55488A1FE735788AC917CA4ABE9B703", + "name": "Enmoda Fantoken", + "display": "enmoda", + "symbol": "ENMODA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "chain_name": "migaloo" + "channel_id": "channel-1", + "base_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-229" } } ] }, { - "description": "FABLE", + "description": "404Deep Records a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/637E2A174CCE98B9540AFDBB8C1633778A0BFEA3ED5935BD3E8D9C8E77EE9C63", + "denom": "ibc/AD19E86B98A0ECC15E73AF67F27D00A9F256FC57B016A60988ED50A679E9693B", "exponent": 0, "aliases": [ - "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable" + "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" ] }, { - "denom": "fable", + "denom": "404dr", "exponent": 6 } ], - "base": "ibc/637E2A174CCE98B9540AFDBB8C1633778A0BFEA3ED5935BD3E8D9C8E77EE9C63", - "name": "FABLE", - "display": "fable", - "symbol": "FABLE", + "base": "ibc/AD19E86B98A0ECC15E73AF67F27D00A9F256FC57B016A60988ED50A679E9693B", + "name": "404Deep Records Fantoken", + "display": "404dr", + "symbol": "404DR", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "chain_name": "migaloo" + "channel_id": "channel-1", + "base_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-229" } } ] }, { - "description": "boneLUNA are autocompounding LUNA tokens", + "description": "N43 a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/883F66BA984C37CF5E0232B6C99590D8A403BFF998ACAB7F3397F8282062F7D6", + "denom": "ibc/A64EF0C71844FBB72664844D9C099D7F7F0BCA0446062F4BD829C171EE2A3F9E", "exponent": 0, "aliases": [ - "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708" + "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" ] }, { - "denom": "bluna", + "denom": "n43", "exponent": 6 } ], - "base": "ibc/883F66BA984C37CF5E0232B6C99590D8A403BFF998ACAB7F3397F8282062F7D6", - "address": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "type_asset": "ics20", - "name": "boneLuna", - "display": "bluna", - "symbol": "bLUNA", + "base": "ibc/A64EF0C71844FBB72664844D9C099D7F7F0BCA0446062F4BD829C171EE2A3F9E", + "name": "N43 Fantoken", + "display": "n43", + "symbol": "N43", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", - "chain_name": "migaloo" + "channel_id": "channel-1", + "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-229" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" - } + ] }, { - "description": "The native token of Osmosis", + "description": "Puro Lobo a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/25A2D6BDCD4BE9A7B79555E85628A9F6C00C0F41E77264515DE88B58E299B267", "exponent": 0, "aliases": [ - "uosmo" + "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" ] }, { - "denom": "osmo", + "denom": "lobo", "exponent": 6 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/25A2D6BDCD4BE9A7B79555E85628A9F6C00C0F41E77264515DE88B58E299B267", + "name": "Puro Lobo Fantoken", + "display": "lobo", + "symbol": "LOBO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-87", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-1", + "base_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-229" } } ] }, { + "description": "Vibranium a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/8B7804652CCDF2ACF5F65F0C250CC21C92C41E5D17D17D25962063F0EA9E2906", "exponent": 0, "aliases": [ - "uion" + "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" ] }, { - "denom": "ion", + "denom": "vibra", "exponent": 6 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/8B7804652CCDF2ACF5F65F0C250CC21C92C41E5D17D17D25962063F0EA9E2906", + "name": "Vibranium Fantoken", + "display": "vibra", + "symbol": "VIBRA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-87", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-1", + "base_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-229" } } ] }, { + "description": "Karina a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/AA9B2B7AC80A96B71DFD067F4AFC17ADB7AC5D6A81F5D8DA02F6DD5D5EAD44F9", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" ] }, { - "denom": "ibcx", + "denom": "karina", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", + "base": "ibc/AA9B2B7AC80A96B71DFD067F4AFC17ADB7AC5D6A81F5D8DA02F6DD5D5EAD44F9", + "name": "Karina Fantoken", + "display": "karina", + "symbol": "KARINA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-87", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-1", + "base_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-229" } } ] }, { + "description": "Luca Testa a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/E9E3368E01B3927DC92C9570E0D0804BE6EF4DD904FBC90476F30FC81F917774", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" ] }, { - "denom": "stibcx", + "denom": "testa", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", + "base": "ibc/E9E3368E01B3927DC92C9570E0D0804BE6EF4DD904FBC90476F30FC81F917774", + "name": "Luca Testa Fantoken", + "display": "testa", + "symbol": "TESTA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-87", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-1", + "base_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-229" } } ] }, { - "description": "The native token of Secret Network", + "description": "Carolina Marquez a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", + "denom": "ibc/A1B164B4F51CEB4BE9BFD9D99FAABB9FBB212D37D5F0B8C90EE7C9CDDA6CB944", "exponent": 0, "aliases": [ - "uscrt" + "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" ] }, { - "denom": "scrt", + "denom": "cmqz", "exponent": 6 } ], - "base": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", + "base": "ibc/A1B164B4F51CEB4BE9BFD9D99FAABB9FBB212D37D5F0B8C90EE7C9CDDA6CB944", + "name": "Carolina Marquez Fantoken", + "display": "cmqz", + "symbol": "CMQZ", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" }, - "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-63", - "base_denom": "uscrt", - "chain_name": "secretnetwork" + "channel_id": "channel-1", + "base_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-65" + "channel_id": "channel-229" } } ] }, { - "description": "The native token of Stride", + "description": "L DON a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", + "denom": "ibc/CCD6B3BC22BFE64646189A7130B6124439970ED1D3707890D7F478B71005D3C7", "exponent": 0, "aliases": [ - "ustrd" + "ft347B1612A2B7659913679CF6CD45B8B130C50A00" ] }, { - "denom": "strd", + "denom": "ldon", "exponent": 6 } ], - "base": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", - "name": "Stride", - "display": "strd", - "symbol": "STRD", + "base": "ibc/CCD6B3BC22BFE64646189A7130B6124439970ED1D3707890D7F478B71005D3C7", + "name": "L DON Fantoken", + "display": "ldon", + "symbol": "LDON", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" }, - "coingecko_id": "stride", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ustrd", - "chain_name": "stride" + "channel_id": "channel-1", + "base_denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", + "chain_name": "bitsong" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-229" } } ] }, { + "description": "The native governance token of Carbon", "denom_units": [ { - "denom": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", + "denom": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", "exponent": 0, "aliases": [ - "stuatom" + "swth" ] }, { - "denom": "statom", - "exponent": 6 + "denom": "dswth", + "exponent": 8, + "aliases": [ + "SWTH" + ] } ], - "base": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", + "type_asset": "sdk.coin", + "base": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", + "name": "Carbon", + "display": "dswth", + "symbol": "SWTH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" + }, + "coingecko_id": "switcheo", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stuatom", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "swth", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" - }, - "coingecko_id": "stride-staked-atom" + ] }, { + "description": "The native stablecoin of Carbon", "denom_units": [ { - "denom": "ibc/5187A987A0A90BEEDE06B32ADBE4436EFA76577717561F33E6C7EDB5ADB21576", + "denom": "ibc/662F0E2BD31A7E120FE8F704211D262CB441DE101B5826D97B70F9FA96F65819", "exponent": 0, "aliases": [ - "stustars" + "usc" ] }, { - "denom": "ststars", - "exponent": 6 + "denom": "dusc", + "exponent": 8, + "aliases": [ + "USC" + ] } ], - "base": "ibc/5187A987A0A90BEEDE06B32ADBE4436EFA76577717561F33E6C7EDB5ADB21576", - "name": "stSTARS", - "display": "ststars", - "symbol": "stSTARS", + "type_asset": "sdk.coin", + "base": "ibc/662F0E2BD31A7E120FE8F704211D262CB441DE101B5826D97B70F9FA96F65819", + "name": "Carbon USD Coin", + "display": "dusc", + "symbol": "USC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.svg" + }, + "coingecko_id": "carbon-usd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stustars", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "usc", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" - } + ] }, { + "description": "BNB token on Carbon", "denom_units": [ { - "denom": "ibc/CC482813CC038C614C2615A997621EA5E605ADCCD4040B83B0468BD72533A165", + "denom": "ibc/665CA5C6B14EE87FF0892728883F3AFD9CB91796F4BA6970207EED070D34A26C", "exponent": 0, "aliases": [ - "stuosmo" + "bnb.1.6.773edb" ] }, { - "denom": "stosmo", - "exponent": 6 + "denom": "bnb", + "exponent": 18, + "aliases": [ + "BNB" + ] } ], - "base": "ibc/CC482813CC038C614C2615A997621EA5E605ADCCD4040B83B0468BD72533A165", - "name": "stOSMO", - "display": "stosmo", - "symbol": "stOSMO", + "base": "ibc/665CA5C6B14EE87FF0892728883F3AFD9CB91796F4BA6970207EED070D34A26C", + "name": "Binance Coin", + "display": "bnb", + "symbol": "BNB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stuosmo", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "bnb.1.6.773edb", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" } }, { + "description": "bNEO token on Carbon", "denom_units": [ { - "denom": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", + "denom": "ibc/D16CF59386EBEC908E5AAB8A7587C45FE2C54F5FEE5D32F61DE1A4399F43C98F", "exponent": 0, "aliases": [ - "stujuno" + "bneo.1.14.e2e5f6" ] }, { - "denom": "stjuno", - "exponent": 6 + "denom": "bneo", + "exponent": 8, + "aliases": [ + "bNEO" + ] } ], - "base": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", - "name": "stJUNO", - "display": "stjuno", - "symbol": "stJUNO", + "base": "ibc/D16CF59386EBEC908E5AAB8A7587C45FE2C54F5FEE5D32F61DE1A4399F43C98F", + "name": "BurgerNEO", + "display": "bneo", + "symbol": "bNEO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stujuno", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "bneo.1.14.e2e5f6", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" } }, { + "description": "BUSD (BEP-20) token on Carbon", "denom_units": [ { - "denom": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", + "denom": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", "exponent": 0, "aliases": [ - "stuluna" + "busd.1.6.754a80" ] }, { - "denom": "stluna", - "exponent": 6 + "denom": "busd", + "exponent": 18, + "aliases": [ + "BUSD" + ] } ], - "base": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", - "name": "stLUNA", - "display": "stluna", - "symbol": "stLUNA", + "base": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", + "name": "BUSD (BEP-20)", + "display": "busd", + "symbol": "BUSD", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stuluna", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "busd.1.6.754a80", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } }, { + "description": "Carbon Wrapped GLP on Carbon", "denom_units": [ { - "denom": "ibc/1D9CC07F68C002C715525763609236ECF955EFAA9619C1BD57060BB60C9203E0", + "denom": "ibc/846220E2D1DAC037C869891B80CCDC5B2D1C7E540E797DF02EEB71F0732FB6B6", "exponent": 0, "aliases": [ - "stinj" + "cglp.1.19.1698d3" ] }, { - "denom": "stINJ", - "exponent": 18 + "denom": "cglp", + "exponent": 18, + "aliases": [ + "CGLP" + ] } ], - "base": "ibc/1D9CC07F68C002C715525763609236ECF955EFAA9619C1BD57060BB60C9203E0", - "name": "stINJ", - "display": "stINJ", - "symbol": "stINJ", + "base": "ibc/846220E2D1DAC037C869891B80CCDC5B2D1C7E540E797DF02EEB71F0732FB6B6", + "name": "Carbon Wrapped GLP", + "display": "cglp", + "symbol": "CGLP", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stinj", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "cglp.1.19.1698d3", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" } }, { + "description": "Grouped USD on Carbon", "denom_units": [ { - "denom": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", + "denom": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", "exponent": 0, "aliases": [ - "staevmos" + "cgt/1" ] }, { - "denom": "stevmos", - "exponent": 18 + "denom": "usd", + "exponent": 18, + "aliases": [ + "USD" + ] } ], - "base": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", - "name": "stEVMOS", - "display": "stevmos", - "symbol": "stEVMOS", + "base": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", + "name": "Carbon Grouped USD", + "display": "usd", + "symbol": "USD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "staevmos", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "cgt/1", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" - } + ] }, { + "description": "ETH (Arbitrum) token on Carbon", "denom_units": [ { - "denom": "ibc/8D4E402467332F3A57F38C5EBAB87EAADBBFF78094F57FBCA2FF5196962A730F", + "denom": "ibc/CCB3344C854FFF199CA1F318742C2209CAC66A00403D5F784454AFFB86C72B90", "exponent": 0, "aliases": [ - "stuumee" + "eth.1.19.c3b805" ] }, { - "denom": "stumee", - "exponent": 6 + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] } ], - "base": "ibc/8D4E402467332F3A57F38C5EBAB87EAADBBFF78094F57FBCA2FF5196962A730F", - "name": "stUMEE", - "display": "stumee", - "symbol": "stUMEE", + "base": "ibc/CCB3344C854FFF199CA1F318742C2209CAC66A00403D5F784454AFFB86C72B90", + "name": "Ethereum (Arbitrum)", + "display": "eth", + "symbol": "ETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stuumee", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "eth.1.19.c3b805", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } }, { + "description": "ETH (ERC20) token on Carbon", "denom_units": [ { - "denom": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", + "denom": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", "exponent": 0, "aliases": [ - "stucmdx" + "eth.1.2.942d87" ] }, { - "denom": "stcmdx", - "exponent": 6 + "denom": "eth", + "exponent": 18, + "aliases": [ + "ETH" + ] } ], - "base": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", - "name": "stCMDX", - "display": "stcmdx", - "symbol": "stCMDX", + "base": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", + "name": "Ethereum (ERC20)", + "display": "eth", + "symbol": "ETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "stucmdx", - "chain_name": "stride" + "channel_id": "channel-3", + "base_denom": "eth.1.2.942d87", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-45" + "channel_id": "channel-342" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" } - } - ] - }, - { - "chain_name": "cosmoshub", - "assets": [ + }, { - "description": "The native EVM, governance and staking token of the Acrechain", + "description": "USDC (ERC20) token on Carbon", "denom_units": [ { - "denom": "ibc/1AA15279AD043C26508AF9FA8AD4A318A5688071397A350EA86807EDA7327720", + "denom": "ibc/4F1FE7BCA131EA773FC1744BE0D80B64B5B0913949D621E1313C613C457F88FA", "exponent": 0, "aliases": [ - "aacre" + "usdc.1.2.343151" ] }, { - "denom": "acre", - "exponent": 18 + "denom": "usdc", + "exponent": 6, + "aliases": [ + "USDC" + ] } ], - "base": "ibc/1AA15279AD043C26508AF9FA8AD4A318A5688071397A350EA86807EDA7327720", - "name": "Acre", - "display": "acre", - "symbol": "ACRE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png" - }, - "coingecko_id": "arable-protocol", + "base": "ibc/4F1FE7BCA131EA773FC1744BE0D80B64B5B0913949D621E1313C613C457F88FA", + "name": "Circle USD", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-8", - "base_denom": "aacre", - "chain_name": "acrechain" + "channel_id": "channel-3", + "base_denom": "usdc.1.2.343151", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-457" + "channel_id": "channel-342" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } }, { - "description": "Overcollateralized stable coin for Arable derivatives v1", + "description": "USD Coin (BEP-20) token on Carbon", "denom_units": [ { - "denom": "ibc/7ED89FB7AF5BB5791B424BAB0D17DAA793DD836D79C594DFEC690062D2EFB9E1", + "denom": "ibc/3AD3608AD7C26339B3704F34CD5A9DE25384AC9484CBBA39DE3C4FDC3A71E168", "exponent": 0, "aliases": [ - "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c" + "usdc.1.6.53ff75" ] }, { - "denom": "arusd", - "exponent": 18 + "denom": "usdc", + "exponent": 18, + "aliases": [ + "USDC" + ] } ], - "base": "ibc/7ED89FB7AF5BB5791B424BAB0D17DAA793DD836D79C594DFEC690062D2EFB9E1", - "name": "Arable USD", - "display": "arusd", - "symbol": "arUSD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg" - }, - "coingecko_id": "arable-usd", + "base": "ibc/3AD3608AD7C26339B3704F34CD5A9DE25384AC9484CBBA39DE3C4FDC3A71E168", + "name": "USD Coin (BEP-20)", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-8", - "base_denom": "erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c", - "chain_name": "acrechain" + "channel_id": "channel-3", + "base_denom": "usdc.1.6.53ff75", + "chain_name": "carbon" }, "chain": { - "channel_id": "channel-457" + "channel_id": "channel-342" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + } }, { - "description": "Ciento Exchange Token", + "description": "The native token of Crescent", "denom_units": [ { - "denom": "ibc/6C0C37FF4AD97EFF12388662B6DCD471319D7733673315905FFC3E08BF5C6912", + "denom": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", "exponent": 0, "aliases": [ - "erc20/0xAE6D3334989a22A65228732446731438672418F2" + "ucre" ] }, { - "denom": "cnto", - "exponent": 18 + "denom": "cre", + "exponent": 6 } ], - "base": "ibc/6C0C37FF4AD97EFF12388662B6DCD471319D7733673315905FFC3E08BF5C6912", - "name": "Ciento Token", - "display": "cnto", - "symbol": "CNTO", + "base": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", + "name": "Crescent", + "display": "cre", + "symbol": "CRE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" }, + "coingecko_id": "crescent-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-8", - "base_denom": "erc20/0xAE6D3334989a22A65228732446731438672418F2", - "chain_name": "acrechain" + "channel_id": "channel-1", + "base_denom": "ucre", + "chain_name": "crescent" }, "chain": { - "channel_id": "channel-457" + "channel_id": "channel-326" } } ] }, { - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "description": "The bonded token of Crescent", "denom_units": [ { - "denom": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", + "denom": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", "exponent": 0, "aliases": [ - "ubld" + "ubcre" ] }, { - "denom": "bld", + "denom": "bcre", "exponent": 6 } ], - "base": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", - "name": "Agoric", - "display": "bld", - "symbol": "BLD", + "base": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", + "name": "Bonded Crescent", + "display": "bcre", + "symbol": "bCRE", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.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" }, - "coingecko_id": "agoric", + "coingecko_id": "liquid-staking-crescent", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "ubld", - "chain_name": "agoric" + "channel_id": "channel-1", + "base_denom": "ubcre", + "chain_name": "crescent" }, "chain": { - "channel_id": "channel-405" + "channel_id": "channel-326" } } ] }, { - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "description": "CRO coin is the token for the Crypto.com platform.", "denom_units": [ { - "denom": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", + "denom": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", "exponent": 0, "aliases": [ - "uist" + "basecro" ] }, { - "denom": "ist", - "exponent": 6 + "denom": "cro", + "exponent": 8 } ], - "base": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", - "name": "Inter Stable Token", - "display": "ist", - "symbol": "IST", + "base": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" + "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" }, + "coingecko_id": "crypto-com-chain", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "uist", - "chain_name": "agoric" + "channel_id": "channel-27", + "base_denom": "basecro", + "chain_name": "cryptoorgchain" }, "chain": { - "channel_id": "channel-405" + "channel_id": "channel-187" } } ] }, { - "description": "The native staking and governance token of the AIOZ Network.", + "description": "e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.", "denom_units": [ { - "denom": "ibc/9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C", + "denom": "ibc/E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB", "exponent": 0, "aliases": [ - "attoaioz" + "ungm" ] }, { - "denom": "nanoaioz", - "exponent": 9 - }, - { - "denom": "aioz", - "exponent": 18 + "denom": "ngm", + "exponent": 6 } ], - "base": "ibc/9DFC3B38276E617E802EC8E05C85368D36836368795CE16A2A37B9942E29573C", - "name": "AIOZ", - "display": "aioz", - "symbol": "AIOZ", + "base": "ibc/E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB", + "name": "e-Money", + "display": "ngm", + "symbol": "NGM", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aioz/images/aioz.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png" }, - "coingecko_id": "aioz-network", + "coingecko_id": "e-money", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "attoaioz", - "chain_name": "aioz" + "channel_id": "channel-1", + "base_denom": "ungm", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-567" + "channel_id": "channel-202" } } ] }, { - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", "denom_units": [ { - "denom": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", + "denom": "ibc/B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C", "exponent": 0, "aliases": [ - "uakt" + "eeur" ] }, { - "denom": "akt", + "denom": "eur", "exponent": 6 } ], - "base": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", - "name": "Akash Network", - "display": "akt", - "symbol": "AKT", + "base": "ibc/B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C", + "name": "e-Money EUR", + "display": "eur", + "symbol": "EEUR", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png" }, - "coingecko_id": "akash-network", + "coingecko_id": "e-money-eur", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-17", - "base_denom": "uakt", - "chain_name": "akash" + "channel_id": "channel-1", + "base_denom": "eeur", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-184" + "channel_id": "channel-202" } } ] }, { - "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.", + "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", "denom_units": [ { - "denom": "ibc/ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284", + "denom": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", "exponent": 0, "aliases": [ - "ubcna" + "echf" ] }, { - "denom": "bcna", - "exponent": 6 + "denom": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", + "exponent": 6, + "aliases": [ + "echf" + ] } ], - "base": "ibc/ADBEC1A7AC2FEF73E06B066A1C94DAB6C27924EF7EA3F5A43378150009620284", - "display": "bcna", - "name": "BitCanna", - "symbol": "BCNA", + "base": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", + "name": "e-Money CHF", + "display": "chf", + "symbol": "ECHF", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png" }, - "coingecko_id": "bitcanna", + "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "ubcna", - "chain_name": "bitcanna" + "channel_id": "channel-1", + "base_denom": "echf", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-232" + "channel_id": "channel-202" } } ] }, { - "description": "BitSong Native Token", + "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", "denom_units": [ { - "denom": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", + "denom": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", "exponent": 0, "aliases": [ - "ubtsg" + "enok" ] }, { - "denom": "btsg", - "exponent": 6 + "denom": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", + "exponent": 6, + "aliases": [ + "enok" + ] } ], - "base": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", - "name": "BitSong", - "display": "btsg", - "symbol": "BTSG", + "base": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", + "name": "e-Money NOK", + "display": "nok", + "symbol": "ENOK", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png" }, - "type_asset": "sdk.coin", - "coingecko_id": "bitsong", + "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ubtsg", - "chain_name": "bitsong" + "base_denom": "enok", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-202" } } ] }, { - "description": "Adam Clay a BitSong Music FanToken", + "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", "denom_units": [ { - "denom": "ibc/02925FA909F79A4BD2361D851D2DFA56F2ABFD8DF2AF68E31DAD2F03AEC2B187", + "denom": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", "exponent": 0, "aliases": [ - "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" + "edkk" ] }, { - "denom": "clay", - "exponent": 6 + "denom": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", + "exponent": 6, + "aliases": [ + "edkk" + ] } ], - "base": "ibc/02925FA909F79A4BD2361D851D2DFA56F2ABFD8DF2AF68E31DAD2F03AEC2B187", - "name": "Adam Clay FanToken", - "display": "clay", - "symbol": "CLAY", + "base": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", + "name": "e-Money DKK", + "display": "dkk", + "symbol": "EDKK", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png" }, + "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "chain_name": "bitsong" + "base_denom": "edkk", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-202" } } ] }, { - "description": "Nicola Fasano a BitSong Music FanToken", + "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", "denom_units": [ { - "denom": "ibc/C8B6B7030F6CA485E93AEF7A139191EFA29331BF991D0D8E3A95E7C8AF819D20", + "denom": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", "exponent": 0, "aliases": [ - "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" + "esek" ] }, { - "denom": "fasano", - "exponent": 6 + "denom": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", + "exponent": 6, + "aliases": [ + "esek" + ] } ], - "base": "ibc/C8B6B7030F6CA485E93AEF7A139191EFA29331BF991D0D8E3A95E7C8AF819D20", - "name": "Nicola Fasano Fantoken", - "display": "fasano", - "symbol": "FASANO", + "base": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", + "name": "e-Money SEK", + "display": "sek", + "symbol": "ESEK", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png" }, + "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "chain_name": "bitsong" + "base_denom": "esek", + "chain_name": "emoney" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-202" } } ] }, { - "description": "Delta 9 a BitSong Music FanToken", + "description": "The native staking and governance token of Empower.", "denom_units": [ { - "denom": "ibc/83A9BB18B9EEB7688915D5D1572E8559A6E8FBCE117CCE4C59D697439C4426F0", + "denom": "ibc/F58D58F943FC243D4FE0CFE0A9E01DB420DDF994D18C9A7F2939FF1C4C278C31", "exponent": 0, "aliases": [ - "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" + "umpwr" ] }, { - "denom": "d9x", + "denom": "mpwr", "exponent": 6 } ], - "base": "ibc/83A9BB18B9EEB7688915D5D1572E8559A6E8FBCE117CCE4C59D697439C4426F0", - "name": "Delta 9 Fantoken", - "display": "d9x", - "symbol": "D9X", + "base": "ibc/F58D58F943FC243D4FE0CFE0A9E01DB420DDF994D18C9A7F2939FF1C4C278C31", + "name": "MPWR", + "display": "mpwr", + "symbol": "MPWR", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "chain_name": "bitsong" + "channel_id": "channel-0", + "base_denom": "umpwr", + "chain_name": "empowerchain" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-621" } } ] }, { - "description": "FONTI a BitSong Music FanToken", + "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ { - "denom": "ibc/206D54CBAE716A385B5EE6C4C49092AC3F4D4BBA68201CFB7AED3F6842A36264", + "denom": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", "exponent": 0, "aliases": [ - "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" + "aevmos" ] }, { - "denom": "fonti", - "exponent": 6 + "denom": "evmos", + "exponent": 18 } ], - "base": "ibc/206D54CBAE716A385B5EE6C4C49092AC3F4D4BBA68201CFB7AED3F6842A36264", - "name": "FONTI Fantoken", - "display": "fonti", - "symbol": "FONTI", + "base": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" }, + "coingecko_id": "evmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "chain_name": "bitsong" + "channel_id": "channel-3", + "base_denom": "aevmos", + "chain_name": "evmos" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-292" } } ] }, { - "description": "BlackJack a BitSong Music FanToken", + "description": "The native token of IXO Chain", "denom_units": [ { - "denom": "ibc/C92243825D7211BCB656C178679EC0CF8229417339B52633D5A6DD8FE7D063B9", + "denom": "ibc/B2B5AEE174062FA7804AC95223D8169852F8F58962C51C66391C272C838258B7", "exponent": 0, "aliases": [ - "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" + "uixo" ] }, { - "denom": "bjks", + "denom": "ixo", "exponent": 6 } ], - "base": "ibc/C92243825D7211BCB656C178679EC0CF8229417339B52633D5A6DD8FE7D063B9", - "name": "BlackJack Fantoken", - "display": "bjks", - "symbol": "BJKS", + "base": "ibc/B2B5AEE174062FA7804AC95223D8169852F8F58962C51C66391C272C838258B7", + "name": "IXO", + "display": "ixo", + "symbol": "IXO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png" }, + "coingecko_id": "ixo", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "chain_name": "bitsong" + "base_denom": "uixo", + "chain_name": "impacthub" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-204" } } ] }, { - "description": "Rawanne a BitSong Music FanToken", + "description": "The INJ token is the native governance token for the Injective chain.", "denom_units": [ { - "denom": "ibc/2ED9AAF50E26251E98DD92847939E83D579C564EDAC0F65AEA3F1F1ED236404D", + "denom": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", "exponent": 0, "aliases": [ - "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" + "inj" ] }, { - "denom": "rwne", - "exponent": 6 + "denom": "INJ", + "exponent": 18 } ], - "base": "ibc/2ED9AAF50E26251E98DD92847939E83D579C564EDAC0F65AEA3F1F1ED236404D", - "name": "Rawanne Fantoken", - "display": "rwne", - "symbol": "RWNE", + "base": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", + "name": "Injective", + "display": "INJ", + "symbol": "INJ", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" }, + "coingecko_id": "injective-protocol", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "chain_name": "bitsong" + "base_denom": "inj", + "chain_name": "injective" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-220" } } ] }, { - "description": "Enmoda a BitSong Music FanToken", + "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/F83584A98C5E92D36D4742CCDA815DACD55488A1FE735788AC917CA4ABE9B703", + "denom": "ibc/12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66", "exponent": 0, "aliases": [ - "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" + "uiris" ] }, { - "denom": "enmoda", + "denom": "iris", "exponent": 6 } ], - "base": "ibc/F83584A98C5E92D36D4742CCDA815DACD55488A1FE735788AC917CA4ABE9B703", - "name": "Enmoda Fantoken", - "display": "enmoda", - "symbol": "ENMODA", + "base": "ibc/12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66", + "name": "IRISnet", + "display": "iris", + "symbol": "IRIS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" }, + "coingecko_id": "iris-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "chain_name": "bitsong" + "channel_id": "channel-12", + "base_denom": "uiris", + "chain_name": "irisnet" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-182" } } ] }, { - "description": "404Deep Records a BitSong Music FanToken", + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/AD19E86B98A0ECC15E73AF67F27D00A9F256FC57B016A60988ED50A679E9693B", + "denom": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", "exponent": 0, "aliases": [ - "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" + "ujuno" ] }, { - "denom": "404dr", + "denom": "juno", "exponent": 6 } ], - "base": "ibc/AD19E86B98A0ECC15E73AF67F27D00A9F256FC57B016A60988ED50A679E9693B", - "name": "404Deep Records Fantoken", - "display": "404dr", - "symbol": "404DR", + "base": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.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" }, + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "chain_name": "bitsong" + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-207" } } ] }, { - "description": "N43 a BitSong Music FanToken", "denom_units": [ { - "denom": "ibc/A64EF0C71844FBB72664844D9C099D7F7F0BCA0446062F4BD829C171EE2A3F9E", + "denom": "ibc/469D8592C89B0E113A3F7E00207794D00CDF6C4E6B5D7401D61345FF98DC4101", "exponent": 0, "aliases": [ - "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "n43", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/A64EF0C71844FBB72664844D9C099D7F7F0BCA0446062F4BD829C171EE2A3F9E", - "name": "N43 Fantoken", - "display": "n43", - "symbol": "N43", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" - }, + "type_asset": "ics20", + "base": "ibc/469D8592C89B0E113A3F7E00207794D00CDF6C4E6B5D7401D61345FF98DC4101", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "chain_name": "bitsong" + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-207" } } ] }, { - "description": "Puro Lobo a BitSong Music FanToken", + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/25A2D6BDCD4BE9A7B79555E85628A9F6C00C0F41E77264515DE88B58E299B267", - "exponent": 0, - "aliases": [ - "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "lobo", + "denom": "banana", "exponent": 6 } ], - "base": "ibc/25A2D6BDCD4BE9A7B79555E85628A9F6C00C0F41E77264515DE88B58E299B267", - "name": "Puro Lobo Fantoken", - "display": "lobo", - "symbol": "LOBO", + "base": "ibc/DC637CCBF01148718D7EE21F304A38D84F2AABD826A18987B8F93AFE3DE643F9", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" }, "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "chain_name": "bitsong" + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-207" } } ] }, { - "description": "Vibranium a BitSong Music FanToken", + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/8B7804652CCDF2ACF5F65F0C250CC21C92C41E5D17D17D25962063F0EA9E2906", + "denom": "ibc/AB0F0423607049304D701996895606C1EC3094B91CFB58BEE508967CA96EF565", "exponent": 0, "aliases": [ - "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "vibra", + "denom": "neta", "exponent": 6 } ], - "base": "ibc/8B7804652CCDF2ACF5F65F0C250CC21C92C41E5D17D17D25962063F0EA9E2906", - "name": "Vibranium Fantoken", - "display": "vibra", - "symbol": "VIBRA", + "base": "ibc/AB0F0423607049304D701996895606C1EC3094B91CFB58BEE508967CA96EF565", + "name": "Neta", + "display": "neta", + "symbol": "NETA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" }, + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "chain_name": "bitsong" + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-207" } } ] }, { - "description": "Karina a BitSong Music FanToken", + "description": "The native staking and governance token of Kava", "denom_units": [ { - "denom": "ibc/AA9B2B7AC80A96B71DFD067F4AFC17ADB7AC5D6A81F5D8DA02F6DD5D5EAD44F9", + "denom": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", "exponent": 0, "aliases": [ - "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" + "ukava" ] }, { - "denom": "karina", + "denom": "kava", "exponent": 6 } ], - "base": "ibc/AA9B2B7AC80A96B71DFD067F4AFC17ADB7AC5D6A81F5D8DA02F6DD5D5EAD44F9", - "name": "Karina Fantoken", - "display": "karina", - "symbol": "KARINA", + "base": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", + "name": "Kava", + "display": "kava", + "symbol": "KAVA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png" }, + "coingecko_id": "kava", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "chain_name": "bitsong" + "channel_id": "channel-0", + "base_denom": "ukava", + "chain_name": "kava" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-277" } } ] }, { - "description": "Luca Testa a BitSong Music FanToken", + "description": "Governance token of Kava Lend Protocol", "denom_units": [ { - "denom": "ibc/E9E3368E01B3927DC92C9570E0D0804BE6EF4DD904FBC90476F30FC81F917774", + "denom": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", "exponent": 0, "aliases": [ - "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" + "hard" ] }, { - "denom": "testa", + "denom": "HARD", "exponent": 6 } ], - "base": "ibc/E9E3368E01B3927DC92C9570E0D0804BE6EF4DD904FBC90476F30FC81F917774", - "name": "Luca Testa Fantoken", - "display": "testa", - "symbol": "TESTA", + "base": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", + "name": "Hard", + "display": "HARD", + "symbol": "HARD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" }, + "coingecko_id": "kava-lend", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "chain_name": "bitsong" + "channel_id": "channel-0", + "base_denom": "hard", + "chain_name": "kava" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-277" } } ] }, { - "description": "Carolina Marquez a BitSong Music FanToken", + "description": "Governance token of Kava Swap Protocol", "denom_units": [ { - "denom": "ibc/A1B164B4F51CEB4BE9BFD9D99FAABB9FBB212D37D5F0B8C90EE7C9CDDA6CB944", + "denom": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", "exponent": 0, "aliases": [ - "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" + "swp" ] }, { - "denom": "cmqz", + "denom": "SWP", "exponent": 6 } ], - "base": "ibc/A1B164B4F51CEB4BE9BFD9D99FAABB9FBB212D37D5F0B8C90EE7C9CDDA6CB944", - "name": "Carolina Marquez Fantoken", - "display": "cmqz", - "symbol": "CMQZ", + "base": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", + "name": "Swap", + "display": "SWP", + "symbol": "SWP", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" }, + "coingecko_id": "kava-swap", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "chain_name": "bitsong" + "channel_id": "channel-0", + "base_denom": "swp", + "chain_name": "kava" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-277" } } ] }, { - "description": "L DON a BitSong Music FanToken", + "description": "The native stablecoin of Kava", "denom_units": [ { - "denom": "ibc/CCD6B3BC22BFE64646189A7130B6124439970ED1D3707890D7F478B71005D3C7", + "denom": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", "exponent": 0, "aliases": [ - "ft347B1612A2B7659913679CF6CD45B8B130C50A00" + "usdx" ] }, { - "denom": "ldon", + "denom": "USDX", "exponent": 6 } ], - "base": "ibc/CCD6B3BC22BFE64646189A7130B6124439970ED1D3707890D7F478B71005D3C7", - "name": "L DON Fantoken", - "display": "ldon", - "symbol": "LDON", + "base": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", + "name": "USDX", + "display": "USDX", + "symbol": "USDX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft347B1612A2B7659913679CF6CD45B8B130C50A00.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png" }, + "coingecko_id": "usdx", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ft347B1612A2B7659913679CF6CD45B8B130C50A00", - "chain_name": "bitsong" + "channel_id": "channel-0", + "base_denom": "usdx", + "chain_name": "kava" }, "chain": { - "channel_id": "channel-229" + "channel_id": "channel-277" } } ] }, { - "description": "The native governance token of Carbon", + "description": "The native token of Ki Chain", "denom_units": [ { - "denom": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", + "denom": "ibc/533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87", "exponent": 0, "aliases": [ - "swth" + "uxki" ] }, { - "denom": "dswth", - "exponent": 8, - "aliases": [ - "SWTH" - ] + "denom": "xki", + "exponent": 6 } ], - "type_asset": "sdk.coin", - "base": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", - "name": "Carbon", - "display": "dswth", - "symbol": "SWTH", + "base": "ibc/533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87", + "name": "Ki", + "display": "xki", + "symbol": "XKI", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" }, - "coingecko_id": "switcheo", + "coingecko_id": "ki", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "swth", - "chain_name": "carbon" + "channel_id": "channel-1", + "base_denom": "uxki", + "chain_name": "kichain" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-223" } } ] }, { - "description": "The native stablecoin of Carbon", + "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ { - "denom": "ibc/662F0E2BD31A7E120FE8F704211D262CB441DE101B5826D97B70F9FA96F65819", + "denom": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", "exponent": 0, "aliases": [ - "usc" + "ukuji" ] }, { - "denom": "dusc", - "exponent": 8, - "aliases": [ - "USC" - ] + "denom": "kuji", + "exponent": 6 } ], - "type_asset": "sdk.coin", - "base": "ibc/662F0E2BD31A7E120FE8F704211D262CB441DE101B5826D97B70F9FA96F65819", - "name": "Carbon USD Coin", - "display": "dusc", - "symbol": "USC", + "base": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.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" }, - "coingecko_id": "carbon-usd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "usc", - "chain_name": "carbon" + "channel_id": "channel-0", + "base_denom": "ukuji", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-343" } } ] }, { - "description": "BNB token on Carbon", + "description": "The native over-collateralized stablecoin from the Kujira chain.", "denom_units": [ { - "denom": "ibc/665CA5C6B14EE87FF0892728883F3AFD9CB91796F4BA6970207EED070D34A26C", + "denom": "ibc/1E2369271A93A19DC15AC7783C9C8AD5AA4AD71E975B3DCFCEBBF2172B68892C", "exponent": 0, "aliases": [ - "bnb.1.6.773edb" + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" ] }, { - "denom": "bnb", - "exponent": 18, - "aliases": [ - "BNB" - ] + "denom": "usk", + "exponent": 6 } ], - "base": "ibc/665CA5C6B14EE87FF0892728883F3AFD9CB91796F4BA6970207EED070D34A26C", - "name": "Binance Coin", - "display": "bnb", - "symbol": "BNB", + "base": "ibc/1E2369271A93A19DC15AC7783C9C8AD5AA4AD71E975B3DCFCEBBF2172B68892C", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "bnb.1.6.773edb", - "chain_name": "carbon" + "channel_id": "channel-0", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-343" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg" - } + ] }, { - "description": "bNEO token on Carbon", + "description": "ampKUJI", "denom_units": [ { - "denom": "ibc/D16CF59386EBEC908E5AAB8A7587C45FE2C54F5FEE5D32F61DE1A4399F43C98F", + "denom": "ibc/6DA0D6682BC9168C8F82F2E70150B23D863C569646F8D7BBB7CA4B33D6AD2F8E", "exponent": 0, "aliases": [ - "bneo.1.14.e2e5f6" + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" ] }, { - "denom": "bneo", - "exponent": 8, - "aliases": [ - "bNEO" - ] + "denom": "ampKUJI", + "exponent": 6 } ], - "base": "ibc/D16CF59386EBEC908E5AAB8A7587C45FE2C54F5FEE5D32F61DE1A4399F43C98F", - "name": "BurgerNEO", - "display": "bneo", - "symbol": "bNEO", + "base": "ibc/6DA0D6682BC9168C8F82F2E70150B23D863C569646F8D7BBB7CA4B33D6AD2F8E", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "bneo.1.14.e2e5f6", - "chain_name": "carbon" + "channel_id": "channel-0", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-343" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.svg" - } + ] }, { - "description": "BUSD (BEP-20) token on Carbon", + "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", + "denom": "ibc/17F1BD604B2D636FF52D778478A348CC2A4C0C82C8AA4E2D99C1EC2CB7989B78", "exponent": 0, "aliases": [ - "busd.1.6.754a80" + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" ] }, { - "denom": "busd", - "exponent": 18, - "aliases": [ - "BUSD" - ] + "denom": "mnta", + "exponent": 6 } ], - "base": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", - "name": "BUSD (BEP-20)", - "display": "busd", - "symbol": "BUSD", + "base": "ibc/17F1BD604B2D636FF52D778478A348CC2A4C0C82C8AA4E2D99C1EC2CB7989B78", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "busd.1.6.754a80", - "chain_name": "carbon" + "channel_id": "channel-0", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-343" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } + ] }, { - "description": "Carbon Wrapped GLP on Carbon", + "description": "The content house of Kujira", "denom_units": [ { - "denom": "ibc/846220E2D1DAC037C869891B80CCDC5B2D1C7E540E797DF02EEB71F0732FB6B6", + "denom": "ibc/5796047F694EDB8FB3C084384D9592EA116B9F08E0220D8AC2D1124CECCD1508", "exponent": 0, "aliases": [ - "cglp.1.19.1698d3" + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" ] }, { - "denom": "cglp", - "exponent": 18, - "aliases": [ - "CGLP" - ] + "denom": "wink", + "exponent": 6 } ], - "base": "ibc/846220E2D1DAC037C869891B80CCDC5B2D1C7E540E797DF02EEB71F0732FB6B6", - "name": "Carbon Wrapped GLP", - "display": "cglp", - "symbol": "CGLP", + "base": "ibc/5796047F694EDB8FB3C084384D9592EA116B9F08E0220D8AC2D1124CECCD1508", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "cglp.1.19.1698d3", - "chain_name": "carbon" + "channel_id": "channel-0", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-343" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.svg" - } + ] }, { - "description": "Grouped USD on Carbon", + "description": "LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.", "denom_units": [ { - "denom": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", + "denom": "ibc/1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F", "exponent": 0, "aliases": [ - "cgt/1" + "nanolike" ] }, { - "denom": "usd", - "exponent": 18, - "aliases": [ - "USD" - ] + "denom": "like", + "exponent": 9 } ], - "base": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", - "name": "Carbon Grouped USD", - "display": "usd", - "symbol": "USD", + "base": "ibc/1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F", + "name": "LikeCoin", + "display": "like", + "symbol": "LIKE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.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" }, + "coingecko_id": "likecoin", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "cgt/1", - "chain_name": "carbon" + "channel_id": "channel-5", + "base_denom": "nanolike", + "chain_name": "likecoin" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-217" } } ] }, { - "description": "ETH (Arbitrum) token on Carbon", + "description": "Native token of the Lum Network", "denom_units": [ { - "denom": "ibc/CCB3344C854FFF199CA1F318742C2209CAC66A00403D5F784454AFFB86C72B90", + "denom": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", "exponent": 0, "aliases": [ - "eth.1.19.c3b805" + "ulum" ] }, { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] + "denom": "lum", + "exponent": 6 } ], - "base": "ibc/CCB3344C854FFF199CA1F318742C2209CAC66A00403D5F784454AFFB86C72B90", - "name": "Ethereum (Arbitrum)", - "display": "eth", - "symbol": "ETH", + "base": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", + "name": "Lum", + "display": "lum", + "symbol": "LUM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" + }, + "coingecko_id": "lum-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "eth.1.19.c3b805", - "chain_name": "carbon" + "channel_id": "channel-12", + "base_denom": "ulum", + "chain_name": "lumnetwork" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-566" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } + ] }, { - "description": "ETH (ERC20) token on Carbon", + "description": "The native token of Neutron chain.", "denom_units": [ { - "denom": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", + "denom": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", "exponent": 0, "aliases": [ - "eth.1.2.942d87" + "untrn" ] }, { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ETH" - ] + "denom": "ntrn", + "exponent": 6 } ], - "base": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", - "name": "Ethereum (ERC20)", - "display": "eth", - "symbol": "ETH", + "base": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", + "name": "Neutron", + "display": "ntrn", + "symbol": "NTRN", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" + }, + "coingecko_id": "neutron", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "eth.1.2.942d87", - "chain_name": "carbon" + "channel_id": "channel-1", + "base_denom": "untrn", + "chain_name": "neutron" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-569" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" - } + ] }, { - "description": "USDC (ERC20) token on Carbon", + "description": "The permissioned staking asset for Noble Chain", "denom_units": [ { - "denom": "ibc/4F1FE7BCA131EA773FC1744BE0D80B64B5B0913949D621E1313C613C457F88FA", + "denom": "ibc/7AED338D55DDE4CECFD35253E6349D7571B66897C590F75B6420C854B20DA692", "exponent": 0, "aliases": [ - "usdc.1.2.343151" + "ustake" ] }, { - "denom": "usdc", - "exponent": 6, - "aliases": [ - "USDC" - ] + "denom": "stake", + "exponent": 6 } ], - "base": "ibc/4F1FE7BCA131EA773FC1744BE0D80B64B5B0913949D621E1313C613C457F88FA", - "name": "Circle USD", - "display": "usdc", - "symbol": "USDC", + "base": "ibc/7AED338D55DDE4CECFD35253E6349D7571B66897C590F75B6420C854B20DA692", + "name": "Stake", + "display": "stake", + "symbol": "STAKE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" + }, "traces": [ { "type": "ibc", - "counterparty": { - "channel_id": "channel-3", - "base_denom": "usdc.1.2.343151", - "chain_name": "carbon" + "counterparty": { + "channel_id": "channel-4", + "base_denom": "ustake", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-536" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + ] }, { - "description": "USD Coin (BEP-20) token on Carbon", + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", "denom_units": [ { - "denom": "ibc/3AD3608AD7C26339B3704F34CD5A9DE25384AC9484CBBA39DE3C4FDC3A71E168", + "denom": "ibc/63B7FB38B505DE63FC5F031B9E4AD6BF9FED63A36655F83E115A86CDEEA66826", "exponent": 0, "aliases": [ - "usdc.1.6.53ff75" + "ufrienzies" ] }, { - "denom": "usdc", - "exponent": 18, - "aliases": [ - "USDC" - ] + "denom": "frienzies", + "exponent": 6 } ], - "base": "ibc/3AD3608AD7C26339B3704F34CD5A9DE25384AC9484CBBA39DE3C4FDC3A71E168", - "name": "USD Coin (BEP-20)", - "display": "usdc", - "symbol": "USDC", + "base": "ibc/63B7FB38B505DE63FC5F031B9E4AD6BF9FED63A36655F83E115A86CDEEA66826", + "display": "frienzies", + "name": "Frienzies", + "symbol": "FRNZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "usdc.1.6.53ff75", - "chain_name": "carbon" + "channel_id": "channel-4", + "base_denom": "ufrienzies", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-342" + "channel_id": "channel-536" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - } + ] }, { - "description": "The native token of Crescent", + "description": "ATOM token on Noble", "denom_units": [ { - "denom": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", + "denom": "ibc/4BE8E6FDB955D8DE17DA7D8E5BB1F13F4E0565FC96F8B7CA0AEE07087FA1F2E2", "exponent": 0, "aliases": [ - "ucre" + "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0" ] }, { - "denom": "cre", - "exponent": 6 + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] } ], - "base": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", - "name": "Crescent", - "display": "cre", - "symbol": "CRE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" - }, - "coingecko_id": "crescent-network", + "type_asset": "ics20", + "base": "ibc/4BE8E6FDB955D8DE17DA7D8E5BB1F13F4E0565FC96F8B7CA0AEE07087FA1F2E2", + "name": "Atom Staking Coin", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ucre", - "chain_name": "crescent" + "channel_id": "channel-4", + "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-326" + "channel_id": "channel-536" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } }, { - "description": "The bonded token of Crescent", + "description": "USD Coin", "denom_units": [ { - "denom": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", + "denom": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", "exponent": 0, "aliases": [ - "ubcre" + "uusdc" ] }, { - "denom": "bcre", + "denom": "usdc", "exponent": 6 } ], - "base": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", - "name": "Bonded Crescent", - "display": "bcre", - "symbol": "bCRE", + "base": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" }, - "coingecko_id": "liquid-staking-crescent", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ubcre", - "chain_name": "crescent" + "channel_id": "channel-4", + "base_denom": "uusdc", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-326" + "channel_id": "channel-536" } } ] }, { - "description": "CRO coin is the token for the Crypto.com platform.", + "description": "The native staking token of OmniFlix Hub.", "denom_units": [ { - "denom": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", + "denom": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", "exponent": 0, "aliases": [ - "basecro" + "uflix" ] }, { - "denom": "cro", - "exponent": 8 + "denom": "flix", + "exponent": 6 } ], - "base": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", + "base": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", + "name": "Flix", + "display": "flix", + "symbol": "FLIX", "logo_URIs": { - "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/omniflixhub/images/flix.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" }, - "coingecko_id": "crypto-com-chain", + "coingecko_id": "omniflix-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-27", - "base_denom": "basecro", - "chain_name": "cryptoorgchain" + "channel_id": "channel-12", + "base_denom": "uflix", + "chain_name": "omniflixhub" }, "chain": { - "channel_id": "channel-187" + "channel_id": "channel-306" } } ] }, { - "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.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB", + "denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", "exponent": 0, "aliases": [ - "ungm" + "uosmo" ] }, { - "denom": "ngm", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/E070CE91CC4BD15AEC9B5788C0826755AAD35052A3037E9AC62BE70B4C9A7DBB", - "name": "e-Money", - "display": "ngm", - "symbol": "NGM", + "base": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, - "coingecko_id": "e-money", + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "ungm", - "chain_name": "emoney" + "channel_id": "channel-0", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-141" } } ] }, { - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", "denom_units": [ { - "denom": "ibc/B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C", + "denom": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", "exponent": 0, "aliases": [ - "eeur" + "uion" ] }, { - "denom": "eur", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/B93F321238F7BB15AB5B882660AAE72286C8E9035DE34E2B30F60E54C623C63C", - "name": "e-Money EUR", - "display": "eur", - "symbol": "EEUR", + "base": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, - "coingecko_id": "e-money-eur", + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "eeur", - "chain_name": "emoney" + "channel_id": "channel-0", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-141" } } ] }, { - "description": "e-Money CHF stablecoin. Audited and backed by fiat CHF deposits and government bonds.", "denom_units": [ { - "denom": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", + "denom": "ibc/B1D06428046A3773DB6D32FB7182A88160254C4791707F1F62422AB0B2B6BBFA", "exponent": 0, "aliases": [ - "echf" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", - "exponent": 6, - "aliases": [ - "echf" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/96344D426100A0885D84F1C588E3C2C2A8CB2A82B446FC8F63B91E4B70BF33EB", - "name": "e-Money CHF", - "display": "chf", - "symbol": "ECHF", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/B1D06428046A3773DB6D32FB7182A88160254C4791707F1F62422AB0B2B6BBFA", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/echf.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "echf", - "chain_name": "emoney" + "channel_id": "channel-0", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-141" } } ] }, { - "description": "e-Money NOK stablecoin. Audited and backed by fiat NOK deposits and government bonds.", "denom_units": [ { - "denom": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", + "denom": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", "exponent": 0, "aliases": [ - "enok" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", - "exponent": 6, - "aliases": [ - "enok" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/F998631ADCB33376AB66126D8BF5212314F15A960C215180D06ECFA9FA7F48E6", - "name": "e-Money NOK", - "display": "nok", - "symbol": "ENOK", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/enok.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "enok", - "chain_name": "emoney" + "channel_id": "channel-0", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-141" } } ] }, { - "description": "e-Money DKK stablecoin. Audited and backed by fiat DKK deposits and government bonds.", + "description": "The XPRT token is primarily a governance token for the Persistence chain.", "denom_units": [ { - "denom": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", + "denom": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", "exponent": 0, "aliases": [ - "edkk" + "uxprt" ] }, { - "denom": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", - "exponent": 6, - "aliases": [ - "edkk" - ] + "denom": "xprt", + "exponent": 6 } ], - "base": "ibc/6EC3B085692C4507A2365E88E82CBCB32DD58E0099056CBC16824D2EE99C5E00", - "name": "e-Money DKK", - "display": "dkk", - "symbol": "EDKK", + "base": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", + "name": "Persistence", + "display": "xprt", + "symbol": "XPRT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/edkk.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" }, - "coingecko_id": "", + "coingecko_id": "persistence", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "edkk", - "chain_name": "emoney" + "channel_id": "channel-24", + "base_denom": "uxprt", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-190" } } ] }, { - "description": "e-Money SEK stablecoin. Audited and backed by fiat SEK deposits and government bonds.", + "description": "PSTAKE Liquid-Staked ATOM", "denom_units": [ { - "denom": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", + "denom": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", "exponent": 0, "aliases": [ - "esek" + "stk/uatom" ] }, { - "denom": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", + "denom": "stkatom", "exponent": 6, "aliases": [ - "esek" + "stk/atom" ] } ], - "base": "ibc/178B678FFA6991C1064332FBA0C9A4FC954E3DD66DD5B692761172DB5559F6D2", - "name": "e-Money SEK", - "display": "sek", - "symbol": "ESEK", + "base": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", + "name": "PSTAKE staked ATOM", + "display": "stkatom", + "symbol": "stkATOM", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/esek.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" }, - "coingecko_id": "", + "coingecko_id": "stkatom", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "esek", - "chain_name": "emoney" + "channel_id": "channel-24", + "base_denom": "stk/uatom", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-202" + "channel_id": "channel-190" } } ] }, { - "description": "The native EVM, governance and staking token of the Evmos Hub", + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", "denom_units": [ { - "denom": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", + "denom": "ibc/560D0E725FEDF81B11B89FCA67CB18460AFB9D355B136CF9880259ADD0B3341A", "exponent": 0, "aliases": [ - "aevmos" + "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" ] }, { - "denom": "evmos", + "denom": "pstake", "exponent": 18 } ], - "base": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", - "name": "Evmos", - "display": "evmos", - "symbol": "EVMOS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" - }, - "coingecko_id": "evmos", + "type_asset": "ics20", + "base": "ibc/560D0E725FEDF81B11B89FCA67CB18460AFB9D355B136CF9880259ADD0B3341A", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "aevmos", - "chain_name": "evmos" + "channel_id": "channel-24", + "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-292" + "channel_id": "channel-190" } } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" + }, + "keywords": [ + "canon" ] }, { - "description": "The native token of IXO Chain", + "description": "The native EVM, governance and staking token of the Planq Network", "denom_units": [ { - "denom": "ibc/B2B5AEE174062FA7804AC95223D8169852F8F58962C51C66391C272C838258B7", + "denom": "ibc/1452F322F7B459CB7EC111AD5BD2404552B011375002C8C85BA615A95B9121CF", "exponent": 0, "aliases": [ - "uixo" + "aplanq" ] }, { - "denom": "ixo", - "exponent": 6 + "denom": "planq", + "exponent": 18 } ], - "base": "ibc/B2B5AEE174062FA7804AC95223D8169852F8F58962C51C66391C272C838258B7", - "name": "IXO", - "display": "ixo", - "symbol": "IXO", + "base": "ibc/1452F322F7B459CB7EC111AD5BD2404552B011375002C8C85BA615A95B9121CF", + "name": "Planq", + "display": "planq", + "symbol": "PLQ", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png" }, - "coingecko_id": "ixo", + "coingecko_id": "planq", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uixo", - "chain_name": "impacthub" + "channel_id": "channel-2", + "base_denom": "aplanq", + "chain_name": "planq" }, "chain": { - "channel_id": "channel-204" + "channel_id": "channel-446" } } ] }, { - "description": "The INJ token is the native governance token for the Injective chain.", + "description": "The native governance and staking token of the Point network", "denom_units": [ { - "denom": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", + "denom": "ibc/72132A48050500C99EDE86468719A5CE729A295F5F785E8E40049ACE6DA4F8B9", "exponent": 0, "aliases": [ - "inj" + "apoint" ] }, { - "denom": "INJ", + "denom": "point", "exponent": 18 } ], - "base": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", - "name": "Injective", - "display": "INJ", - "symbol": "INJ", + "base": "ibc/72132A48050500C99EDE86468719A5CE729A295F5F785E8E40049ACE6DA4F8B9", + "name": "Point", + "display": "point", + "symbol": "POINT", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png" }, - "coingecko_id": "injective-protocol", + "coingecko_id": "point-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "inj", - "chain_name": "injective" + "channel_id": "channel-0", + "base_denom": "apoint", + "chain_name": "point" }, "chain": { - "channel_id": "channel-220" + "channel_id": "channel-404" } } ] }, { - "description": "The IRIS token is the native governance token for the IrisNet chain.", + "description": "QCK - native token of Quicksilver", "denom_units": [ { - "denom": "ibc/12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66", + "denom": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", "exponent": 0, "aliases": [ - "uiris" + "uqck" ] }, { - "denom": "iris", - "exponent": 6 + "denom": "qck", + "exponent": 6, + "aliases": [] } ], - "base": "ibc/12DA42304EE1CE96071F712AA4D58186AD11C3165C0DCDA71E017A54F3935E66", - "name": "IRISnet", - "display": "iris", - "symbol": "IRIS", + "base": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", + "name": "Quicksilver", + "display": "qck", + "symbol": "QCK", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" }, - "coingecko_id": "iris-network", + "coingecko_id": "quicksilver", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "uiris", - "chain_name": "irisnet" + "channel_id": "channel-1", + "base_denom": "uqck", + "chain_name": "quicksilver" }, "chain": { - "channel_id": "channel-182" + "channel_id": "channel-467" } } ] }, { - "description": "The native token of JUNO Chain", + "description": "Quicksilver Liquid Staked STARS", "denom_units": [ { - "denom": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", + "denom": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", "exponent": 0, "aliases": [ - "ujuno" + "uqstars" ] }, { - "denom": "juno", - "exponent": 6 + "denom": "qstars", + "exponent": 6, + "aliases": [] } ], - "base": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", + "base": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", + "name": "Quicksilver Liquid Staked STARS", + "display": "qstars", + "symbol": "qSTARS", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ujuno", - "chain_name": "juno" + "base_denom": "uqstars", + "chain_name": "quicksilver" }, "chain": { - "channel_id": "channel-207" + "channel_id": "channel-467" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" + } }, { + "description": "Quicksilver Liquid Staked ATOM", "denom_units": [ { - "denom": "ibc/469D8592C89B0E113A3F7E00207794D00CDF6C4E6B5D7401D61345FF98DC4101", + "denom": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "uqatom" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "qatom", + "exponent": 6, + "aliases": [] } ], - "type_asset": "ics20", - "base": "ibc/469D8592C89B0E113A3F7E00207794D00CDF6C4E6B5D7401D61345FF98DC4101", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", + "name": "Quicksilver Liquid Staked ATOM", + "display": "qatom", + "symbol": "qATOM", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "base_denom": "uqatom", + "chain_name": "quicksilver" }, "chain": { - "channel_id": "channel-207" + "channel_id": "channel-467" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" + } }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "Quicksilver Liquid Staked REGEN", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", + "exponent": 0, + "aliases": [ + "uqregen" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "qregen", + "exponent": 6, + "aliases": [] } ], - "base": "ibc/DC637CCBF01148718D7EE21F304A38D84F2AABD826A18987B8F93AFE3DE643F9", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", + "name": "Quicksilver Liquid Staked Regen", + "display": "qregen", + "symbol": "qREGEN", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "base_denom": "uqregen", + "chain_name": "quicksilver" }, "chain": { - "channel_id": "channel-207" + "channel_id": "channel-467" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" + } }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "Quicksilver Liquid Staked OSMO", "denom_units": [ { - "denom": "ibc/AB0F0423607049304D701996895606C1EC3094B91CFB58BEE508967CA96EF565", + "denom": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "uqosmo" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "qosmo", + "exponent": 6, + "aliases": [] } ], - "base": "ibc/AB0F0423607049304D701996895606C1EC3094B91CFB58BEE508967CA96EF565", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", + "base": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", + "name": "Quicksilver Liquid Staked OSMO", + "display": "qosmo", + "symbol": "qOSMO", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-1", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "base_denom": "uqosmo", + "chain_name": "quicksilver" }, "chain": { - "channel_id": "channel-207" + "channel_id": "channel-467" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" + } }, { - "description": "The native staking and governance token of Kava", + "description": "REGEN coin is the token for the Regen Network Platform", "denom_units": [ { - "denom": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", + "denom": "ibc/1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399", "exponent": 0, "aliases": [ - "ukava" + "uregen" ] }, { - "denom": "kava", + "denom": "regen", "exponent": 6 } ], - "base": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", - "name": "Kava", - "display": "kava", - "symbol": "KAVA", + "base": "ibc/1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399", + "name": "Regen Network", + "display": "regen", + "symbol": "REGEN", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" }, - "coingecko_id": "kava", + "coingecko_id": "regen", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ukava", - "chain_name": "kava" + "channel_id": "channel-11", + "base_denom": "uregen", + "chain_name": "regen" }, "chain": { - "channel_id": "channel-277" + "channel_id": "channel-185" } } ] }, { - "description": "Governance token of Kava Lend Protocol", + "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", "denom_units": [ { - "denom": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", + "denom": "ibc/7854965E064D606B35FC42E7208A2CF97FE63EB2C539D1FFF12DDC85BCFB7621", "exponent": 0, "aliases": [ - "hard" + "eco.uC.NCT" ] }, { - "denom": "HARD", + "denom": "nct", "exponent": 6 } ], - "base": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", - "name": "Hard", - "display": "HARD", - "symbol": "HARD", + "base": "ibc/7854965E064D606B35FC42E7208A2CF97FE63EB2C539D1FFF12DDC85BCFB7621", + "name": "Nature Carbon Ton", + "display": "nct", + "symbol": "NCT", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png" }, - "coingecko_id": "kava-lend", + "coingecko_id": "toucan-protocol-nature-carbon-tonne", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "hard", - "chain_name": "kava" + "channel_id": "channel-11", + "base_denom": "eco.uC.NCT", + "chain_name": "regen" }, "chain": { - "channel_id": "channel-277" + "channel_id": "channel-185" } } ] }, { - "description": "Governance token of Kava Swap Protocol", + "description": "The native token of Secret Network", "denom_units": [ { - "denom": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", + "denom": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", "exponent": 0, "aliases": [ - "swp" + "uscrt" ] }, { - "denom": "SWP", + "denom": "scrt", "exponent": 6 } ], - "base": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", - "name": "Swap", - "display": "SWP", - "symbol": "SWP", + "base": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" }, - "coingecko_id": "kava-swap", + "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "swp", - "chain_name": "kava" + "base_denom": "uscrt", + "chain_name": "secretnetwork" }, "chain": { - "channel_id": "channel-277" + "channel_id": "channel-235" } } ] }, { - "description": "The native stablecoin of Kava", + "description": "DVPN is the native token of the Sentinel Hub.", "denom_units": [ { - "denom": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", + "denom": "ibc/42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E", "exponent": 0, "aliases": [ - "usdx" + "udvpn" ] }, { - "denom": "USDX", + "denom": "dvpn", "exponent": 6 } ], - "base": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", - "name": "USDX", - "display": "USDX", - "symbol": "USDX", + "base": "ibc/42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E", + "name": "Sentinel", + "display": "dvpn", + "symbol": "DVPN", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" }, - "coingecko_id": "usdx", + "coingecko_id": "sentinel", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "usdx", - "chain_name": "kava" + "channel_id": "channel-12", + "base_denom": "udvpn", + "chain_name": "sentinel" }, "chain": { - "channel_id": "channel-277" + "channel_id": "channel-186" } } ] }, { - "description": "The native token of Ki Chain", + "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87", + "denom": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", "exponent": 0, "aliases": [ - "uxki" + "rowan" ] }, { - "denom": "xki", - "exponent": 6 + "denom": "ROWAN", + "exponent": 18 } ], - "base": "ibc/533E5FFC606FD11B8DCA309C66AFD6A1F046EF784A73F323A332CF6823F0EA87", - "name": "Ki", - "display": "xki", - "symbol": "XKI", + "base": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", + "name": "Sifchain Rowan", + "display": "ROWAN", + "symbol": "ROWAN", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png" }, - "coingecko_id": "ki", + "coingecko_id": "sifchain", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uxki", - "chain_name": "kichain" + "channel_id": "channel-0", + "base_denom": "rowan", + "chain_name": "sifchain" }, "chain": { - "channel_id": "channel-223" + "channel_id": "channel-192" } } ] }, { - "description": "The native staking and governance token of the Kujira chain.", + "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", "denom_units": [ { - "denom": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", + "denom": "ibc/68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7", "exponent": 0, "aliases": [ - "ukuji" + "uiov" ] }, { - "denom": "kuji", + "denom": "iov", "exponent": 6 } ], - "base": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", - "name": "Kuji", - "display": "kuji", - "symbol": "KUJI", - "coingecko_id": "kujira", + "base": "ibc/68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7", + "name": "Starname", + "display": "iov", + "symbol": "IOV", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" }, + "coingecko_id": "starname", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "ukuji", - "chain_name": "kujira" + "base_denom": "uiov", + "chain_name": "starname" }, "chain": { - "channel_id": "channel-343" + "channel_id": "channel-158" } } ] }, { - "description": "The native over-collateralized stablecoin from the Kujira chain.", + "description": "The native token of Stride", "denom_units": [ { - "denom": "ibc/1E2369271A93A19DC15AC7783C9C8AD5AA4AD71E975B3DCFCEBBF2172B68892C", + "denom": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", "exponent": 0, "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + "ustrd" ] }, { - "denom": "usk", + "denom": "strd", "exponent": 6 } ], - "base": "ibc/1E2369271A93A19DC15AC7783C9C8AD5AA4AD71E975B3DCFCEBBF2172B68892C", - "name": "USK", - "display": "USK", - "symbol": "USK", - "coingecko_id": "usk", + "base": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", + "name": "Stride", + "display": "strd", + "symbol": "STRD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, + "coingecko_id": "stride", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira" + "base_denom": "ustrd", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-343" + "channel_id": "channel-391" } } ] }, { - "description": "ampKUJI", "denom_units": [ { - "denom": "ibc/6DA0D6682BC9168C8F82F2E70150B23D863C569646F8D7BBB7CA4B33D6AD2F8E", + "denom": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", "exponent": 0, "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + "stuatom" ] }, { - "denom": "ampKUJI", + "denom": "statom", "exponent": 6 } ], - "base": "ibc/6DA0D6682BC9168C8F82F2E70150B23D863C569646F8D7BBB7CA4B33D6AD2F8E", - "name": "ampKUJI", - "display": "ampKUJI", - "symbol": "ampKUJI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" - }, + "base": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira" + "base_denom": "stuatom", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-343" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + }, + "coingecko_id": "stride-staked-atom" }, { - "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/17F1BD604B2D636FF52D778478A348CC2A4C0C82C8AA4E2D99C1EC2CB7989B78", + "denom": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", "exponent": 0, "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + "stustars" ] }, { - "denom": "mnta", + "denom": "ststars", "exponent": 6 } ], - "base": "ibc/17F1BD604B2D636FF52D778478A348CC2A4C0C82C8AA4E2D99C1EC2CB7989B78", - "name": "MNTA", - "display": "MNTA", - "symbol": "MNTA", - "coingecko_id": "mantadao", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" - }, + "base": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", + "name": "stSTARS", + "display": "ststars", + "symbol": "stSTARS", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira" + "base_denom": "stustars", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-343" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + } }, { - "description": "The content house of Kujira", "denom_units": [ { - "denom": "ibc/5796047F694EDB8FB3C084384D9592EA116B9F08E0220D8AC2D1124CECCD1508", + "denom": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", "exponent": 0, "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + "stuosmo" ] }, { - "denom": "wink", + "denom": "stosmo", "exponent": 6 } ], - "base": "ibc/5796047F694EDB8FB3C084384D9592EA116B9F08E0220D8AC2D1124CECCD1508", - "name": "WINK", - "display": "wink", - "symbol": "WINK", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" - }, + "base": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-0", - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira" + "base_denom": "stuosmo", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-343" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } }, { - "description": "LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.", "denom_units": [ { - "denom": "ibc/1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F", + "denom": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", "exponent": 0, "aliases": [ - "nanolike" + "stujuno" ] }, { - "denom": "like", - "exponent": 9 + "denom": "stjuno", + "exponent": 6 } ], - "base": "ibc/1D5826F7EDE6E3B13009FEF994DC9CAAF15CC24CA7A9FF436FFB2E56FD72F54F", - "name": "LikeCoin", - "display": "like", - "symbol": "LIKE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg" - }, - "coingecko_id": "likecoin", + "base": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", + "name": "stJUNO", + "display": "stjuno", + "symbol": "stJUNO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", - "base_denom": "nanolike", - "chain_name": "likecoin" + "channel_id": "channel-0", + "base_denom": "stujuno", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-217" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + } }, { - "description": "Native token of the Lum Network", "denom_units": [ { - "denom": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", + "denom": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", "exponent": 0, "aliases": [ - "ulum" + "stuluna" ] }, { - "denom": "lum", + "denom": "stluna", "exponent": 6 } ], - "base": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", - "name": "Lum", - "display": "lum", - "symbol": "LUM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg" - }, - "coingecko_id": "lum-network", + "base": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", + "name": "stLUNA", + "display": "stluna", + "symbol": "stLUNA", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "ulum", - "chain_name": "lumnetwork" + "channel_id": "channel-0", + "base_denom": "stuluna", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-566" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + } }, { - "description": "The native token of Neutron chain.", "denom_units": [ { - "denom": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", + "denom": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", "exponent": 0, "aliases": [ - "untrn" + "stinj" ] }, { - "denom": "ntrn", - "exponent": 6 + "denom": "stINJ", + "exponent": 18 } ], - "base": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", - "name": "Neutron", - "display": "ntrn", - "symbol": "NTRN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg" - }, - "coingecko_id": "neutron", + "base": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", + "name": "stINJ", + "display": "stINJ", + "symbol": "stINJ", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "untrn", - "chain_name": "neutron" + "channel_id": "channel-0", + "base_denom": "stinj", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-569" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + } }, { - "description": "The permissioned staking asset for Noble Chain", "denom_units": [ { - "denom": "ibc/7AED338D55DDE4CECFD35253E6349D7571B66897C590F75B6420C854B20DA692", + "denom": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", "exponent": 0, "aliases": [ - "ustake" + "staevmos" ] }, { - "denom": "stake", - "exponent": 6 + "denom": "stevmos", + "exponent": 18 } ], - "base": "ibc/7AED338D55DDE4CECFD35253E6349D7571B66897C590F75B6420C854B20DA692", - "name": "Stake", - "display": "stake", - "symbol": "STAKE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" - }, + "base": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", + "name": "stEVMOS", + "display": "stevmos", + "symbol": "stEVMOS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "ustake", - "chain_name": "noble" + "channel_id": "channel-0", + "base_denom": "staevmos", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-536" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" + } }, { - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", "denom_units": [ { - "denom": "ibc/63B7FB38B505DE63FC5F031B9E4AD6BF9FED63A36655F83E115A86CDEEA66826", + "denom": "ibc/D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8", "exponent": 0, "aliases": [ - "ufrienzies" + "stuumee" ] }, { - "denom": "frienzies", + "denom": "stumee", "exponent": 6 } ], - "base": "ibc/63B7FB38B505DE63FC5F031B9E4AD6BF9FED63A36655F83E115A86CDEEA66826", - "display": "frienzies", - "name": "Frienzies", - "symbol": "FRNZ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" - }, + "base": "ibc/D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8", + "name": "stUMEE", + "display": "stumee", + "symbol": "stUMEE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "ufrienzies", - "chain_name": "noble" + "channel_id": "channel-0", + "base_denom": "stuumee", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-536" + "channel_id": "channel-391" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + } }, { - "description": "ATOM token on Noble", "denom_units": [ { - "denom": "ibc/4BE8E6FDB955D8DE17DA7D8E5BB1F13F4E0565FC96F8B7CA0AEE07087FA1F2E2", + "denom": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", "exponent": 0, "aliases": [ - "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0" + "stucmdx" ] }, { - "denom": "atom", - "exponent": 6, - "aliases": [ - "ATOM" - ] + "denom": "stcmdx", + "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/4BE8E6FDB955D8DE17DA7D8E5BB1F13F4E0565FC96F8B7CA0AEE07087FA1F2E2", - "name": "Atom Staking Coin", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", + "name": "stCMDX", + "display": "stcmdx", + "symbol": "stCMDX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", - "chain_name": "noble" + "channel_id": "channel-0", + "base_denom": "stucmdx", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-536" + "channel_id": "channel-391" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" } }, { - "description": "USD Coin", + "description": "The native token of Umee", "denom_units": [ { - "denom": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", + "denom": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", "exponent": 0, "aliases": [ - "uusdc" + "uumee" ] }, { - "denom": "usdc", + "denom": "umee", "exponent": 6 } ], - "base": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", - "display": "usdc", - "name": "USD Coin", - "symbol": "USDC", + "base": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", + "name": "Umee", + "display": "umee", + "symbol": "UMEE", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" }, + "coingecko_id": "umee", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-4", - "base_denom": "uusdc", - "chain_name": "noble" + "channel_id": "channel-1", + "base_denom": "uumee", + "chain_name": "umee" }, "chain": { - "channel_id": "channel-536" + "channel_id": "channel-288" } } ] }, { - "description": "The native staking token of OmniFlix Hub.", + "description": "The native token of Uptick", "denom_units": [ { - "denom": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", + "denom": "ibc/437D75DE90D857540013EB4BFAA57D600CC78A0D6233FF7C8E3204F066CA0C09", "exponent": 0, "aliases": [ - "uflix" + "auptick" ] }, { - "denom": "flix", - "exponent": 6 + "denom": "uptick", + "exponent": 18 } ], - "base": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", - "name": "Flix", - "display": "flix", - "symbol": "FLIX", + "base": "ibc/437D75DE90D857540013EB4BFAA57D600CC78A0D6233FF7C8E3204F066CA0C09", + "name": "Uptick", + "display": "uptick", + "symbol": "UPTICK", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" }, - "coingecko_id": "omniflix-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "uflix", - "chain_name": "omniflixhub" + "channel_id": "channel-1", + "base_denom": "auptick", + "chain_name": "uptick" }, "chain": { - "channel_id": "channel-306" + "channel_id": "channel-535" } } ] - }, + } + ] + }, + { + "chain_name": "crescent", + "assets": [ { - "description": "The native token of Osmosis", + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", "denom_units": [ { - "denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", + "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", "exponent": 0, "aliases": [ - "uosmo" + "ubld" ] }, { - "denom": "osmo", + "denom": "bld", "exponent": 6 } ], - "base": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", + "name": "Agoric", + "display": "bld", + "symbol": "BLD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "coingecko_id": "agoric", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-2", + "base_denom": "ubld", + "chain_name": "agoric" }, "chain": { - "channel_id": "channel-141" + "channel_id": "channel-11" } } ] }, { + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", "denom_units": [ { - "denom": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", + "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", "exponent": 0, "aliases": [ - "uion" + "uist" ] }, { - "denom": "ion", + "denom": "ist", "exponent": 6 } ], - "base": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "name": "Inter Stable Token", + "display": "ist", + "symbol": "IST", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-2", + "base_denom": "uist", + "chain_name": "agoric" }, "chain": { - "channel_id": "channel-141" + "channel_id": "channel-11" } } ] }, { + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/B1D06428046A3773DB6D32FB7182A88160254C4791707F1F62422AB0B2B6BBFA", + "denom": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "uakt" ] }, { - "denom": "ibcx", + "denom": "akt", "exponent": 6 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/B1D06428046A3773DB6D32FB7182A88160254C4791707F1F62422AB0B2B6BBFA", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", + "base": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", + "name": "Akash Network", + "display": "akt", + "symbol": "AKT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.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" }, + "coingecko_id": "akash-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-70", + "base_denom": "uakt", + "chain_name": "akash" }, "chain": { - "channel_id": "channel-141" + "channel_id": "channel-44" } } ] }, { + "description": "The native token of Axelar", "denom_units": [ { - "denom": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", + "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "uaxl" ] }, { - "denom": "stibcx", + "denom": "axl", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", + "base": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "name": "Axelar", + "display": "axl", + "symbol": "AXL", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" }, + "coingecko_id": "axelar", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-7", + "base_denom": "uaxl", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-141" + "channel_id": "channel-4" } } ] }, { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "description": "Circle's stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", + "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", "exponent": 0, "aliases": [ - "uxprt" + "uusdc" ] }, { - "denom": "xprt", + "denom": "usdc", "exponent": 6 } ], - "base": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", - "name": "Persistence", - "display": "xprt", - "symbol": "XPRT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" - }, - "coingecko_id": "persistence", + "base": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-24", - "base_denom": "uxprt", - "chain_name": "persistence" + "channel_id": "channel-7", + "base_denom": "uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-190" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + }, + "coingecko_id": "axlusdc" }, { - "description": "PSTAKE Liquid-Staked ATOM", + "description": "Frax's fractional-algorithmic stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", + "denom": "ibc/21DB3093824F38A29399E7466B5870559AEC683D0D09D746F9EC47BB8505CBF7", "exponent": 0, "aliases": [ - "stk/uatom" + "frax-wei" ] }, { - "denom": "stkatom", - "exponent": 6, - "aliases": [ - "stk/atom" - ] + "denom": "frax", + "exponent": 18 } ], - "base": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", - "name": "PSTAKE staked ATOM", - "display": "stkatom", - "symbol": "stkATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" - }, - "coingecko_id": "stkatom", + "base": "ibc/21DB3093824F38A29399E7466B5870559AEC683D0D09D746F9EC47BB8505CBF7", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-24", - "base_denom": "stk/uatom", - "chain_name": "persistence" + "channel_id": "channel-7", + "base_denom": "frax-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-190" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "description": "Dai stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/560D0E725FEDF81B11B89FCA67CB18460AFB9D355B136CF9880259ADD0B3341A", + "denom": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", "exponent": 0, "aliases": [ - "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + "dai-wei" ] }, { - "denom": "pstake", + "denom": "dai", "exponent": 18 } ], - "type_asset": "ics20", - "base": "ibc/560D0E725FEDF81B11B89FCA67CB18460AFB9D355B136CF9880259ADD0B3341A", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", + "base": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-24", - "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "chain_name": "persistence" + "channel_id": "channel-7", + "base_denom": "dai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-190" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" - }, - "keywords": [ - "canon" - ] + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" + } }, { - "description": "The native EVM, governance and staking token of the Planq Network", + "description": "Tether's USD stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/1452F322F7B459CB7EC111AD5BD2404552B011375002C8C85BA615A95B9121CF", + "denom": "ibc/11FB4C0BC2FCCFF2B01976C0070F468D82DAE8D1F565F80E64063BFDBEE4A5BD", "exponent": 0, "aliases": [ - "aplanq" + "uusdt" ] }, { - "denom": "planq", - "exponent": 18 + "denom": "usdt", + "exponent": 6 } ], - "base": "ibc/1452F322F7B459CB7EC111AD5BD2404552B011375002C8C85BA615A95B9121CF", - "name": "Planq", - "display": "planq", - "symbol": "PLQ", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png" - }, - "coingecko_id": "planq", + "base": "ibc/11FB4C0BC2FCCFF2B01976C0070F468D82DAE8D1F565F80E64063BFDBEE4A5BD", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-2", - "base_denom": "aplanq", - "chain_name": "planq" + "channel_id": "channel-7", + "base_denom": "uusdt", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-446" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png" + } }, { - "description": "The native governance and staking token of the Point network", + "description": "Wrapped Ether on Axelar", "denom_units": [ { - "denom": "ibc/72132A48050500C99EDE86468719A5CE729A295F5F785E8E40049ACE6DA4F8B9", + "denom": "ibc/F1806958CA98757B91C3FA1573ECECD24F6FA3804F074A6977658914A49E65A3", "exponent": 0, "aliases": [ - "apoint" + "weth-wei" ] }, { - "denom": "point", + "denom": "weth", "exponent": 18 } ], - "base": "ibc/72132A48050500C99EDE86468719A5CE729A295F5F785E8E40049ACE6DA4F8B9", - "name": "Point", - "display": "point", - "symbol": "POINT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/point/images/point-logo.png" - }, - "coingecko_id": "point-network", + "base": "ibc/F1806958CA98757B91C3FA1573ECECD24F6FA3804F074A6977658914A49E65A3", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "apoint", - "chain_name": "point" + "channel_id": "channel-7", + "base_denom": "weth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-404" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } }, { - "description": "QCK - native token of Quicksilver", + "description": "Wrapped Bitcoin on Axelar", "denom_units": [ { - "denom": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", + "denom": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", "exponent": 0, "aliases": [ - "uqck" + "wbtc-satoshi" ] }, { - "denom": "qck", - "exponent": 6, - "aliases": [] + "denom": "wbtc", + "exponent": 8 } ], - "base": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", - "name": "Quicksilver", - "display": "qck", - "symbol": "QCK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png" - }, - "coingecko_id": "quicksilver", + "base": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uqck", - "chain_name": "quicksilver" + "channel_id": "channel-7", + "base_denom": "wbtc-satoshi", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-467" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } }, { - "description": "Quicksilver Liquid Staked STARS", + "description": "Aave on Axelar", "denom_units": [ { - "denom": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", + "denom": "ibc/84303A70A7808C9FE1F53CC7480CBD42D888F8643671E6E7C43701B1D866D04A", "exponent": 0, "aliases": [ - "uqstars" + "aave-wei" ] }, { - "denom": "qstars", - "exponent": 6, - "aliases": [] + "denom": "aave", + "exponent": 18 } ], - "base": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", - "name": "Quicksilver Liquid Staked STARS", - "display": "qstars", - "symbol": "qSTARS", + "base": "ibc/84303A70A7808C9FE1F53CC7480CBD42D888F8643671E6E7C43701B1D866D04A", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uqstars", - "chain_name": "quicksilver" + "channel_id": "channel-7", + "base_denom": "aave-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-467" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" } }, { - "description": "Quicksilver Liquid Staked ATOM", + "description": "ApeCoin on Axelar", "denom_units": [ { - "denom": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", + "denom": "ibc/F5B57795805E9F11B06F0B12BF016980093A97F0782A5700EFE4DAE89A0DB9B7", "exponent": 0, "aliases": [ - "uqatom" + "ape-wei" ] }, { - "denom": "qatom", - "exponent": 6, - "aliases": [] + "denom": "ape", + "exponent": 18 } ], - "base": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", - "name": "Quicksilver Liquid Staked ATOM", - "display": "qatom", - "symbol": "qATOM", + "base": "ibc/F5B57795805E9F11B06F0B12BF016980093A97F0782A5700EFE4DAE89A0DB9B7", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uqatom", - "chain_name": "quicksilver" + "channel_id": "channel-7", + "base_denom": "ape-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-467" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" } }, { - "description": "Quicksilver Liquid Staked REGEN", + "description": "Axie Infinity Shard on Axelar", "denom_units": [ { - "denom": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", + "denom": "ibc/D34DC22F291BC5E508968530D0E5DA46A694C1515FA940533858CB9470E8A846", "exponent": 0, "aliases": [ - "uqregen" + "axs-wei" ] }, { - "denom": "qregen", - "exponent": 6, - "aliases": [] + "denom": "axs", + "exponent": 18 } ], - "base": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", - "name": "Quicksilver Liquid Staked Regen", - "display": "qregen", - "symbol": "qREGEN", + "base": "ibc/D34DC22F291BC5E508968530D0E5DA46A694C1515FA940533858CB9470E8A846", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uqregen", - "chain_name": "quicksilver" + "channel_id": "channel-7", + "base_denom": "axs-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-467" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" } }, { - "description": "Quicksilver Liquid Staked OSMO", + "description": "Chainlink on Axelar", "denom_units": [ { - "denom": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", + "denom": "ibc/1AD2DD08D1AADAE7F667F82767425FEC119BAFEA5F514FCEA22E6E4E446BEADA", "exponent": 0, "aliases": [ - "uqosmo" + "link-wei" ] }, { - "denom": "qosmo", - "exponent": 6, - "aliases": [] + "denom": "link", + "exponent": 18 } ], - "base": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", - "name": "Quicksilver Liquid Staked OSMO", - "display": "qosmo", - "symbol": "qOSMO", + "base": "ibc/1AD2DD08D1AADAE7F667F82767425FEC119BAFEA5F514FCEA22E6E4E446BEADA", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uqosmo", - "chain_name": "quicksilver" + "channel_id": "channel-7", + "base_denom": "link-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-467" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" } }, { - "description": "REGEN coin is the token for the Regen Network Platform", + "description": "Maker on Axelar", "denom_units": [ { - "denom": "ibc/1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399", + "denom": "ibc/1E8149AC74041CF61448A57858887B2D2C221B9B194509120BD3AD6E4278AAB0", "exponent": 0, "aliases": [ - "uregen" + "mkr-wei" ] }, { - "denom": "regen", - "exponent": 6 + "denom": "mkr", + "exponent": 18 } ], - "base": "ibc/1FBDD58D438B4D04D26CBFB2E722C18984A0F1A52468C4F42F37D102F3D3F399", - "name": "Regen Network", - "display": "regen", - "symbol": "REGEN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" - }, - "coingecko_id": "regen", + "base": "ibc/1E8149AC74041CF61448A57858887B2D2C221B9B194509120BD3AD6E4278AAB0", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "uregen", - "chain_name": "regen" + "channel_id": "channel-7", + "base_denom": "mkr-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-185" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } }, { - "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", + "description": "Rai Reflex Index on Axelar", "denom_units": [ { - "denom": "ibc/7854965E064D606B35FC42E7208A2CF97FE63EB2C539D1FFF12DDC85BCFB7621", + "denom": "ibc/A1F1BAE8D0CF9F8080C22FE2B0C60DFD25E96F4F985AC27C7E11F5A597CEE83D", "exponent": 0, "aliases": [ - "eco.uC.NCT" + "rai-wei" ] }, { - "denom": "nct", - "exponent": 6 + "denom": "rai", + "exponent": 18 } ], - "base": "ibc/7854965E064D606B35FC42E7208A2CF97FE63EB2C539D1FFF12DDC85BCFB7621", - "name": "Nature Carbon Ton", - "display": "nct", - "symbol": "NCT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png" - }, - "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "base": "ibc/A1F1BAE8D0CF9F8080C22FE2B0C60DFD25E96F4F985AC27C7E11F5A597CEE83D", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "eco.uC.NCT", - "chain_name": "regen" + "channel_id": "channel-7", + "base_denom": "rai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-185" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + } }, { - "description": "The native token of Secret Network", + "description": "Shiba Inu on Axelar", "denom_units": [ { - "denom": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", + "denom": "ibc/D1F6A3A1A3C2E25A7039B4537E8D1B08490B6A3F57D758AB8C08AA512CE3E51A", "exponent": 0, "aliases": [ - "uscrt" + "shib-wei" ] }, { - "denom": "scrt", - "exponent": 6 + "denom": "shib", + "exponent": 18 } ], - "base": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" - }, - "coingecko_id": "secret", + "base": "ibc/D1F6A3A1A3C2E25A7039B4537E8D1B08490B6A3F57D758AB8C08AA512CE3E51A", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "uscrt", - "chain_name": "secretnetwork" + "channel_id": "channel-7", + "base_denom": "shib-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-235" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + } }, { - "description": "DVPN is the native token of the Sentinel Hub.", + "description": "Lido Staked Ether on Axelar", "denom_units": [ { - "denom": "ibc/42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E", + "denom": "ibc/B74E78325EB51CABBA812618947F04941B564F137C6A9C19E2626CE3EB5E1F8D", "exponent": 0, "aliases": [ - "udvpn" + "steth-wei" ] }, { - "denom": "dvpn", - "exponent": 6 + "denom": "steth", + "exponent": 18 } ], - "base": "ibc/42E47A5BA708EBE6E0C227006254F2784E209F4DBD3C6BB77EDC4B29EF875E8E", - "name": "Sentinel", - "display": "dvpn", - "symbol": "DVPN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" - }, - "coingecko_id": "sentinel", + "base": "ibc/B74E78325EB51CABBA812618947F04941B564F137C6A9C19E2626CE3EB5E1F8D", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "udvpn", - "chain_name": "sentinel" + "channel_id": "channel-7", + "base_denom": "steth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-186" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } }, { - "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "description": "Uniswap on Axelar", "denom_units": [ { - "denom": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", + "denom": "ibc/392F7936508B675F7F794504F4829D6F459C0E7488EDE6B2C4E9192037E3F03F", "exponent": 0, "aliases": [ - "rowan" + "uni-wei" ] }, { - "denom": "ROWAN", + "denom": "uni", "exponent": 18 } ], - "base": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", - "name": "Sifchain Rowan", - "display": "ROWAN", - "symbol": "ROWAN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png" - }, - "coingecko_id": "sifchain", + "base": "ibc/392F7936508B675F7F794504F4829D6F459C0E7488EDE6B2C4E9192037E3F03F", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "rowan", - "chain_name": "sifchain" + "channel_id": "channel-7", + "base_denom": "uni-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-192" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + } }, { - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", + "description": "Chain on Axelar", "denom_units": [ { - "denom": "ibc/68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7", + "denom": "ibc/40EDD0D8ECA8053AAEA9FCE600817E701F9BD7DB429DF99CD3C49B12F691DB03", "exponent": 0, "aliases": [ - "uiov" + "xcn-wei" ] }, { - "denom": "iov", - "exponent": 6 + "denom": "xcn", + "exponent": 18 } ], - "base": "ibc/68A333688E5B07451F95555F8FE510E43EF9D3D44DF0909964F92081EF9BE5A7", - "name": "Starname", - "display": "iov", - "symbol": "IOV", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" - }, - "coingecko_id": "starname", + "base": "ibc/40EDD0D8ECA8053AAEA9FCE600817E701F9BD7DB429DF99CD3C49B12F691DB03", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "uiov", - "chain_name": "starname" + "channel_id": "channel-7", + "base_denom": "xcn-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-158" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + } }, { - "description": "The native token of Stride", + "description": "Wrapped Polkadot on Axelar", "denom_units": [ { - "denom": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", + "denom": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", "exponent": 0, "aliases": [ - "ustrd" + "dot-planck" ] }, { - "denom": "strd", - "exponent": 6 + "denom": "dot", + "exponent": 10 } ], - "base": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", - "name": "Stride", - "display": "strd", - "symbol": "STRD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" - }, - "coingecko_id": "stride", + "base": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ustrd", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "dot-planck", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" + } }, { + "description": "Wrapped Moonbeam on Axelar", "denom_units": [ { - "denom": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", + "denom": "ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673", "exponent": 0, "aliases": [ - "stuatom" + "wglmr-wei" ] }, { - "denom": "statom", - "exponent": 6 + "denom": "wglmr", + "exponent": 18 } ], - "base": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", + "base": "ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stuatom", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wglmr-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" - }, - "coingecko_id": "stride-staked-atom" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" + } }, { + "description": "Wrapped Matic on Axelar", "denom_units": [ { - "denom": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", + "denom": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", "exponent": 0, "aliases": [ - "stustars" + "wmatic-wei" ] }, { - "denom": "ststars", - "exponent": 6 + "denom": "wmatic", + "exponent": 18 } ], - "base": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", - "name": "stSTARS", - "display": "ststars", - "symbol": "stSTARS", + "base": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stustars", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wmatic-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" } }, { + "description": "Wrapped BNB on Axelar", "denom_units": [ { - "denom": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", + "denom": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", "exponent": 0, "aliases": [ - "stuosmo" + "wbnb-wei" ] }, { - "denom": "stosmo", - "exponent": 6 + "denom": "wbnb", + "exponent": 18 } ], - "base": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", - "name": "stOSMO", - "display": "stosmo", - "symbol": "stOSMO", + "base": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stuosmo", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wbnb-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" } }, { + "description": "Binance USD on Axelar.", "denom_units": [ { - "denom": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", + "denom": "ibc/A7A2B8871CD2E999EB1D9E901B4F744617C80816CE94DE84CA1200109651C903", "exponent": 0, "aliases": [ - "stujuno" + "busd-wei" ] }, { - "denom": "stjuno", - "exponent": 6 + "denom": "busd", + "exponent": 18 } ], - "base": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", - "name": "stJUNO", - "display": "stjuno", - "symbol": "stJUNO", + "base": "ibc/A7A2B8871CD2E999EB1D9E901B4F744617C80816CE94DE84CA1200109651C903", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stujuno", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "busd-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" } }, { + "description": "Wrapped AVAX on Axelar.", "denom_units": [ { - "denom": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", + "denom": "ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453", "exponent": 0, "aliases": [ - "stuluna" + "wavax-wei" ] }, { - "denom": "stluna", - "exponent": 6 + "denom": "avax", + "exponent": 18 } ], - "base": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", - "name": "stLUNA", - "display": "stluna", - "symbol": "stLUNA", + "base": "ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stuluna", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wavax-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" } }, { + "description": "Wrapped FTM on Axelar.", "denom_units": [ { - "denom": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", + "denom": "ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B", "exponent": 0, "aliases": [ - "stinj" + "wftm-wei" ] }, { - "denom": "stINJ", + "denom": "ftm", "exponent": 18 } ], - "base": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", - "name": "stINJ", - "display": "stINJ", - "symbol": "stINJ", + "base": "ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stinj", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wftm-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" } }, { + "description": "Circle's stablecoin from Polygon on Axelar", "denom_units": [ { - "denom": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", + "denom": "ibc/9D2271E5FC0595866E844D566F14BC937E90FF7CF701326AFAD9ADB1C4876F4A", "exponent": 0, "aliases": [ - "staevmos" + "polygon-uusdc" ] }, { - "denom": "stevmos", - "exponent": 18 + "denom": "polygon-usdc", + "exponent": 6 } ], - "base": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", - "name": "stEVMOS", - "display": "stevmos", - "symbol": "stEVMOS", + "base": "ibc/9D2271E5FC0595866E844D566F14BC937E90FF7CF701326AFAD9ADB1C4876F4A", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "staevmos", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "polygon-uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" } }, { + "description": "Circle's stablecoin from Avalanche on Axelar", "denom_units": [ { - "denom": "ibc/D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8", + "denom": "ibc/9DDA11BB46B704CAA36E6FDDB01F2388480B2460D2064960639FC81C625FF574", "exponent": 0, "aliases": [ - "stuumee" + "avalanche-uusdc" ] }, { - "denom": "stumee", + "denom": "avalanche-usdc", "exponent": 6 } ], - "base": "ibc/D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8", - "name": "stUMEE", - "display": "stumee", - "symbol": "stUMEE", + "base": "ibc/9DDA11BB46B704CAA36E6FDDB01F2388480B2460D2064960639FC81C625FF574", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stuumee", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "avalanche-uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" } }, { + "description": "Wrapped FIL on Axelar", "denom_units": [ { - "denom": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", + "denom": "ibc/E2422AEF428C089CD74169065BF478C26499FAEE1FE936B87A95905BCFDB6E33", "exponent": 0, "aliases": [ - "stucmdx" + "wfil-wei" ] }, { - "denom": "stcmdx", - "exponent": 6 + "denom": "fil", + "exponent": 18 } ], - "base": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", - "name": "stCMDX", - "display": "stcmdx", - "symbol": "stCMDX", + "base": "ibc/E2422AEF428C089CD74169065BF478C26499FAEE1FE936B87A95905BCFDB6E33", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "stucmdx", - "chain_name": "stride" + "channel_id": "channel-7", + "base_denom": "wfil-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-391" + "channel_id": "channel-4" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" } }, { - "description": "The native token of Umee", + "description": "Arbitrum on Axelar", "denom_units": [ { - "denom": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", + "denom": "ibc/BAF32343C8B21CCEB63BA035621B6ED86CFA883AC71B8217D9F9DA32CDA2E3B4", "exponent": 0, "aliases": [ - "uumee" + "arb-wei" ] }, { - "denom": "umee", - "exponent": 6 + "denom": "arb", + "exponent": 18 } ], - "base": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", - "name": "Umee", - "display": "umee", - "symbol": "UMEE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" - }, - "coingecko_id": "umee", + "base": "ibc/BAF32343C8B21CCEB63BA035621B6ED86CFA883AC71B8217D9F9DA32CDA2E3B4", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "uumee", - "chain_name": "umee" + "channel_id": "channel-7", + "base_denom": "arb-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-288" + "channel_id": "channel-4" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + } }, { - "description": "The native token of Uptick", "denom_units": [ { - "denom": "ibc/437D75DE90D857540013EB4BFAA57D600CC78A0D6233FF7C8E3204F066CA0C09", + "denom": "ibc/796FAF4E82B4EB778E18F4E0A2C67C9CF55D5ACD176F3B6FD6DC420ABDDBABC1", "exponent": 0, "aliases": [ - "auptick" + "pepe-wei" ] }, { - "denom": "uptick", + "denom": "pepe", "exponent": 18 } ], - "base": "ibc/437D75DE90D857540013EB4BFAA57D600CC78A0D6233FF7C8E3204F066CA0C09", - "name": "Uptick", - "display": "uptick", - "symbol": "UPTICK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/uptick/images/uptick.svg" - }, + "base": "ibc/796FAF4E82B4EB778E18F4E0A2C67C9CF55D5ACD176F3B6FD6DC420ABDDBABC1", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-1", - "base_denom": "auptick", - "chain_name": "uptick" + "channel_id": "channel-7", + "base_denom": "pepe-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-535" + "channel_id": "channel-4" } } ] - } - ] - }, - { - "chain_name": "crescent", - "assets": [ + }, { - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", "denom_units": [ { - "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", + "denom": "ibc/CBBAAEAB4BD5DDD23E38311BA333E519EFC66116BB6E5338AF51DA59A606F015", "exponent": 0, "aliases": [ - "ubld" + "cbeth-wei" ] }, { - "denom": "bld", - "exponent": 6 + "denom": "cbeth", + "exponent": 18 } ], - "base": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", - "name": "Agoric", - "display": "bld", - "symbol": "BLD", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" - }, - "coingecko_id": "agoric", + "base": "ibc/CBBAAEAB4BD5DDD23E38311BA333E519EFC66116BB6E5338AF51DA59A606F015", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-2", - "base_denom": "ubld", - "chain_name": "agoric" + "channel_id": "channel-7", + "base_denom": "cbeth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-4" } } ] }, { - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", "denom_units": [ { - "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "denom": "ibc/6026097599D36D6882664C0FC14A67A5DDA0AE76EDCC07062A8E7B74FA8A8D59", "exponent": 0, "aliases": [ - "uist" + "reth-wei" ] }, { - "denom": "ist", - "exponent": 6 + "denom": "reth", + "exponent": 18 } ], - "base": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", - "name": "Inter Stable Token", - "display": "ist", - "symbol": "IST", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png" - }, + "base": "ibc/6026097599D36D6882664C0FC14A67A5DDA0AE76EDCC07062A8E7B74FA8A8D59", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-2", - "base_denom": "uist", - "chain_name": "agoric" + "channel_id": "channel-7", + "base_denom": "reth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-4" } } ] }, { - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", + "denom": "ibc/11261571EB3E679315BA19C51F42F143113A139F598729D97624B45043C4D7C0", "exponent": 0, "aliases": [ - "uakt" + "sfrxeth-wei" ] }, { - "denom": "akt", - "exponent": 6 + "denom": "sfrxeth", + "exponent": 18 } ], - "base": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", - "name": "Akash Network", - "display": "akt", - "symbol": "AKT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" - }, - "coingecko_id": "akash-network", + "base": "ibc/11261571EB3E679315BA19C51F42F143113A139F598729D97624B45043C4D7C0", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-70", - "base_denom": "uakt", - "chain_name": "akash" + "channel_id": "channel-7", + "base_denom": "sfrxeth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-44" + "channel_id": "channel-4" } } ] }, { - "description": "The native token of Axelar", "denom_units": [ { - "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "denom": "ibc/F5BBAD34906B6ED73EB17652C47F7F34D2FFB8AC06712E0396F2F28E69DB40C0", "exponent": 0, "aliases": [ - "uaxl" + "wsteth-wei" ] }, { - "denom": "axl", - "exponent": 6 + "denom": "wsteth", + "exponent": 18 } ], - "base": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", - "name": "Axelar", - "display": "axl", - "symbol": "AXL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" - }, - "coingecko_id": "axelar", + "base": "ibc/F5BBAD34906B6ED73EB17652C47F7F34D2FFB8AC06712E0396F2F28E69DB40C0", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-7", - "base_denom": "uaxl", + "base_denom": "wsteth-wei", "chain_name": "axelar" }, "chain": { @@ -19377,1082 +22624,1126 @@ const asset_lists: AssetList[] = [ ] }, { - "description": "Circle's stablecoin on Axelar", + "description": "Native Token of Comdex Protocol", "denom_units": [ { - "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "denom": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", "exponent": 0, "aliases": [ - "uusdc" + "ucmdx" ] }, { - "denom": "usdc", + "denom": "cmdx", "exponent": 6 } ], - "base": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", + "base": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", + "name": "Comdex", + "display": "cmdx", + "symbol": "CMDX", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" + }, + "coingecko_id": "comdex", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "uusdc", - "chain_name": "axelar" + "channel_id": "channel-26", + "base_denom": "ucmdx", + "chain_name": "comdex" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-49" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - }, - "coingecko_id": "axlusdc" + ] }, { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", + "description": "Governance Token of Harbor protocol on Comdex network", "denom_units": [ { - "denom": "ibc/21DB3093824F38A29399E7466B5870559AEC683D0D09D746F9EC47BB8505CBF7", + "denom": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", "exponent": 0, "aliases": [ - "frax-wei" + "uharbor" ] }, { - "denom": "frax", - "exponent": 18 + "denom": "harbor", + "exponent": 6 } ], - "base": "ibc/21DB3093824F38A29399E7466B5870559AEC683D0D09D746F9EC47BB8505CBF7", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", + "base": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", + "name": "Harbor", + "display": "harbor", + "symbol": "HARBOR", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg" + }, + "coingecko_id": "", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "frax-wei", - "chain_name": "axelar" + "channel_id": "channel-26", + "base_denom": "uharbor", + "chain_name": "comdex" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-49" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" - } + ] }, { - "description": "Dai stablecoin on Axelar", + "description": "Stable Token of Harbor protocol on Comdex network", "denom_units": [ { - "denom": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", + "denom": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", "exponent": 0, "aliases": [ - "dai-wei" + "ucmst" ] }, { - "denom": "dai", - "exponent": 18 + "denom": "cmst", + "exponent": 6 } ], - "base": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", + "base": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", + "name": "CMST", + "display": "cmst", + "symbol": "CMST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg" + }, + "coingecko_id": "composite", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "dai-wei", - "chain_name": "axelar" + "channel_id": "channel-26", + "base_denom": "ucmst", + "chain_name": "comdex" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-49" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" - } + ] }, { - "description": "Tether's USD stablecoin on Axelar", + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/11FB4C0BC2FCCFF2B01976C0070F468D82DAE8D1F565F80E64063BFDBEE4A5BD", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "exponent": 0, "aliases": [ - "uusdt" + "uatom" ] }, { - "denom": "usdt", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/11FB4C0BC2FCCFF2B01976C0070F468D82DAE8D1F565F80E64063BFDBEE4A5BD", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", + "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "uusdt", - "chain_name": "axelar" + "channel_id": "channel-326", + "base_denom": "uatom", + "chain_name": "cosmoshub" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-1" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png" - } + ] }, { - "description": "Wrapped Ether on Axelar", + "description": "CRO coin is the token for the Crypto.com platform.", "denom_units": [ { - "denom": "ibc/F1806958CA98757B91C3FA1573ECECD24F6FA3804F074A6977658914A49E65A3", + "denom": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", "exponent": 0, "aliases": [ - "weth-wei" + "basecro" ] }, { - "denom": "weth", - "exponent": 18 + "denom": "cro", + "exponent": 8 } ], - "base": "ibc/F1806958CA98757B91C3FA1573ECECD24F6FA3804F074A6977658914A49E65A3", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", + "base": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", + "name": "Cronos", + "display": "cro", + "symbol": "CRO", + "logo_URIs": { + "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" + }, + "coingecko_id": "crypto-com-chain", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "weth-wei", - "chain_name": "axelar" + "channel_id": "channel-61", + "base_denom": "basecro", + "chain_name": "cryptoorgchain" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-40" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" - } + ] }, { - "description": "Wrapped Bitcoin on Axelar", + "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ { - "denom": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", + "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", "exponent": 0, "aliases": [ - "wbtc-satoshi" + "aevmos" ] }, { - "denom": "wbtc", - "exponent": 8 + "denom": "evmos", + "exponent": 18 } ], - "base": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", + "base": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" + }, + "coingecko_id": "evmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wbtc-satoshi", - "chain_name": "axelar" + "channel_id": "channel-11", + "base_denom": "aevmos", + "chain_name": "evmos" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-7" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" - } + ] }, { - "description": "Aave on Axelar", + "description": "The native token of Gravity Bridge", "denom_units": [ { - "denom": "ibc/84303A70A7808C9FE1F53CC7480CBD42D888F8643671E6E7C43701B1D866D04A", + "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", "exponent": 0, "aliases": [ - "aave-wei" + "ugraviton" ] }, { - "denom": "aave", - "exponent": 18 + "denom": "graviton", + "exponent": 6 } ], - "base": "ibc/84303A70A7808C9FE1F53CC7480CBD42D888F8643671E6E7C43701B1D866D04A", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", + "base": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "name": "Graviton", + "display": "graviton", + "symbol": "GRAV", + "coingecko_id": "graviton", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "aave-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "ugraviton", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" - } + ] }, { - "description": "ApeCoin on Axelar", + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", "denom_units": [ { - "denom": "ibc/F5B57795805E9F11B06F0B12BF016980093A97F0782A5700EFE4DAE89A0DB9B7", + "denom": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", "exponent": 0, "aliases": [ - "ape-wei" + "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" ] }, { - "denom": "ape", + "denom": "pstake", "exponent": 18 } ], - "base": "ibc/F5B57795805E9F11B06F0B12BF016980093A97F0782A5700EFE4DAE89A0DB9B7", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", + "base": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "ape-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } ], "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" } }, { - "description": "Axie Infinity Shard on Axelar", + "description": "Gravity Bridge WETH", "denom_units": [ { - "denom": "ibc/D34DC22F291BC5E508968530D0E5DA46A694C1515FA940533858CB9470E8A846", + "denom": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", "exponent": 0, "aliases": [ - "axs-wei" + "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" ] }, { - "denom": "axs", + "denom": "gweth", "exponent": 18 } ], - "base": "ibc/D34DC22F291BC5E508968530D0E5DA46A694C1515FA940533858CB9470E8A846", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", + "base": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", + "name": "Wrapped Ethereum", + "display": "gweth", + "symbol": "WETH", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "axs-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" - } + ] }, { - "description": "Chainlink on Axelar", + "description": "Gravity Bridge USDC", "denom_units": [ { - "denom": "ibc/1AD2DD08D1AADAE7F667F82767425FEC119BAFEA5F514FCEA22E6E4E446BEADA", + "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", "exponent": 0, "aliases": [ - "link-wei" + "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" ] }, { - "denom": "link", - "exponent": 18 + "denom": "gusdc", + "exponent": 6 } ], - "base": "ibc/1AD2DD08D1AADAE7F667F82767425FEC119BAFEA5F514FCEA22E6E4E446BEADA", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", + "base": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", + "name": "USD Coin", + "display": "gusdc", + "symbol": "USDC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "link-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" - } + ] }, { - "description": "Maker on Axelar", + "description": "Gravity Bridge USDT", "denom_units": [ { - "denom": "ibc/1E8149AC74041CF61448A57858887B2D2C221B9B194509120BD3AD6E4278AAB0", + "denom": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", "exponent": 0, "aliases": [ - "mkr-wei" + "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7" ] }, { - "denom": "mkr", - "exponent": 18 + "denom": "gusdt", + "exponent": 6 } ], - "base": "ibc/1E8149AC74041CF61448A57858887B2D2C221B9B194509120BD3AD6E4278AAB0", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", + "base": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", + "name": "Tether USD", + "display": "gusdt", + "symbol": "USDT", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "mkr-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" - } + ] }, { - "description": "Rai Reflex Index on Axelar", + "description": "Gravity Bridge WBTC", "denom_units": [ { - "denom": "ibc/A1F1BAE8D0CF9F8080C22FE2B0C60DFD25E96F4F985AC27C7E11F5A597CEE83D", + "denom": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", "exponent": 0, "aliases": [ - "rai-wei" + "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" ] }, { - "denom": "rai", - "exponent": 18 + "denom": "gwbtc", + "exponent": 8 } ], - "base": "ibc/A1F1BAE8D0CF9F8080C22FE2B0C60DFD25E96F4F985AC27C7E11F5A597CEE83D", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", + "base": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", + "name": "Wrapped Bitcoin", + "display": "gwbtc", + "symbol": "WBTC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "rai-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" - } + ] }, { - "description": "Shiba Inu on Axelar", + "description": "Gravity Bridge DAI", "denom_units": [ { - "denom": "ibc/D1F6A3A1A3C2E25A7039B4537E8D1B08490B6A3F57D758AB8C08AA512CE3E51A", + "denom": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", "exponent": 0, "aliases": [ - "shib-wei" + "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F" ] }, { - "denom": "shib", + "denom": "gdai", "exponent": 18 } ], - "base": "ibc/D1F6A3A1A3C2E25A7039B4537E8D1B08490B6A3F57D758AB8C08AA512CE3E51A", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", + "base": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", + "name": "Dai Stablecoin", + "display": "gdai", + "symbol": "DAI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "shib-wei", - "chain_name": "axelar" + "channel_id": "channel-62", + "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "chain_name": "gravitybridge" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-2" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" - } + ] }, { - "description": "Lido Staked Ether on Axelar", + "description": "The INJ token is the native governance token for the Injective chain.", "denom_units": [ { - "denom": "ibc/B74E78325EB51CABBA812618947F04941B564F137C6A9C19E2626CE3EB5E1F8D", + "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", "exponent": 0, "aliases": [ - "steth-wei" + "inj" ] }, { - "denom": "steth", + "denom": "INJ", "exponent": 18 } ], - "base": "ibc/B74E78325EB51CABBA812618947F04941B564F137C6A9C19E2626CE3EB5E1F8D", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", + "base": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", + "name": "Injective", + "display": "INJ", + "symbol": "INJ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + }, + "coingecko_id": "injective-protocol", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "steth-wei", - "chain_name": "axelar" + "channel_id": "channel-90", + "base_denom": "inj", + "chain_name": "injective" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-23" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" - } + ] }, { - "description": "Uniswap on Axelar", + "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/392F7936508B675F7F794504F4829D6F459C0E7488EDE6B2C4E9192037E3F03F", + "denom": "ibc/65CE3A1EC2EE4CAAC202494AE4E857D60704C46CE4770AD8BD80E41429618D58", "exponent": 0, "aliases": [ - "uni-wei" + "uiris" ] }, { - "denom": "uni", - "exponent": 18 + "denom": "iris", + "exponent": 6 } ], - "base": "ibc/392F7936508B675F7F794504F4829D6F459C0E7488EDE6B2C4E9192037E3F03F", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", + "base": "ibc/65CE3A1EC2EE4CAAC202494AE4E857D60704C46CE4770AD8BD80E41429618D58", + "name": "IRISnet", + "display": "iris", + "symbol": "IRIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + }, + "coingecko_id": "iris-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "uni-wei", - "chain_name": "axelar" + "channel_id": "channel-37", + "base_denom": "uiris", + "chain_name": "irisnet" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-37" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" - } + ] }, { - "description": "Chain on Axelar", + "description": "The native staking and governance token of Jackal.", "denom_units": [ { - "denom": "ibc/40EDD0D8ECA8053AAEA9FCE600817E701F9BD7DB429DF99CD3C49B12F691DB03", + "denom": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", "exponent": 0, "aliases": [ - "xcn-wei" + "ujkl" ] }, { - "denom": "xcn", - "exponent": 18 + "denom": "jkl", + "exponent": 6 } ], - "base": "ibc/40EDD0D8ECA8053AAEA9FCE600817E701F9BD7DB429DF99CD3C49B12F691DB03", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", + "base": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", + "name": "Jackal", + "display": "jkl", + "symbol": "JKL", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" + }, + "coingecko_id": "jackal-protocol", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "xcn-wei", - "chain_name": "axelar" + "channel_id": "channel-38", + "base_denom": "ujkl", + "chain_name": "jackal" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-63" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" - } + ] }, { - "description": "Wrapped Polkadot on Axelar", + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", + "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", "exponent": 0, "aliases": [ - "dot-planck" + "ujuno" ] }, { - "denom": "dot", - "exponent": 10 + "denom": "juno", + "exponent": 6 } ], - "base": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", + "base": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + }, + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "dot-planck", - "chain_name": "axelar" + "channel_id": "channel-81", + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-3" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" - } + ] }, { - "description": "Wrapped Moonbeam on Axelar", "denom_units": [ { - "denom": "ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673", + "denom": "ibc/2E935FE009C5499B9EF05DA9DBA83E0132F3D1CB99409068579ECC1A0B02A3D6", "exponent": 0, "aliases": [ - "wglmr-wei" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "wglmr", - "exponent": 18 + "denom": "atom", + "exponent": 6 } ], - "base": "ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", + "type_asset": "ics20", + "base": "ibc/2E935FE009C5499B9EF05DA9DBA83E0132F3D1CB99409068579ECC1A0B02A3D6", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wglmr-wei", - "chain_name": "axelar" + "channel_id": "channel-81", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-3" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" - } + ] }, { - "description": "Wrapped Matic on Axelar", + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", - "exponent": 0, - "aliases": [ - "wmatic-wei" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "wmatic", - "exponent": 18 + "denom": "banana", + "exponent": 6 } ], - "base": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", + "base": "ibc/3A9FCE4CF7D3669F13F3BF441A6086ABA75A2F255609CD57823CA8286AAF97BA", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wmatic-wei", - "chain_name": "axelar" + "channel_id": "channel-81", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-3" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" - } + ] }, { - "description": "Wrapped BNB on Axelar", + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", + "denom": "ibc/9EACB208CE92F1DEEF850C5AFF168876395A6D3ED8841EC4504B37BCF8CDFFB6", "exponent": 0, "aliases": [ - "wbnb-wei" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "wbnb", - "exponent": 18 + "denom": "neta", + "exponent": 6 } ], - "base": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", - "name": "Wrapped BNB", - "display": "wbnb", - "symbol": "WBNB", + "base": "ibc/9EACB208CE92F1DEEF850C5AFF168876395A6D3ED8841EC4504B37BCF8CDFFB6", + "name": "Neta", + "display": "neta", + "symbol": "NETA", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + }, + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wbnb-wei", - "chain_name": "axelar" + "channel_id": "channel-81", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-3" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" - } + ] }, { - "description": "Binance USD on Axelar.", + "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ { - "denom": "ibc/A7A2B8871CD2E999EB1D9E901B4F744617C80816CE94DE84CA1200109651C903", + "denom": "ibc/E94962A16BEAF54C780B83AB334B55E3AE8E636CC711E7E4499EDD2FBF420BDA", "exponent": 0, "aliases": [ - "busd-wei" + "ukuji" ] }, { - "denom": "busd", - "exponent": 18 + "denom": "kuji", + "exponent": 6 } ], - "base": "ibc/A7A2B8871CD2E999EB1D9E901B4F744617C80816CE94DE84CA1200109651C903", - "name": "Binance USD", - "display": "busd", - "symbol": "BUSD", + "base": "ibc/E94962A16BEAF54C780B83AB334B55E3AE8E636CC711E7E4499EDD2FBF420BDA", + "name": "Kuji", + "display": "kuji", + "symbol": "KUJI", + "coingecko_id": "kujira", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "busd-wei", - "chain_name": "axelar" + "channel_id": "channel-67", + "base_denom": "ukuji", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-42" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" - } + ] }, { - "description": "Wrapped AVAX on Axelar.", + "description": "The native over-collateralized stablecoin from the Kujira chain.", "denom_units": [ { - "denom": "ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453", + "denom": "ibc/7E1008481BC492C7F02131291EA28289ADDCE6921DE1B354274EE28DA3574FAF", "exponent": 0, "aliases": [ - "wavax-wei" + "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" ] }, { - "denom": "avax", - "exponent": 18 + "denom": "usk", + "exponent": 6 } ], - "base": "ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453", - "name": "Wrapped AVAX", - "display": "avax", - "symbol": "WAVAX", + "base": "ibc/7E1008481BC492C7F02131291EA28289ADDCE6921DE1B354274EE28DA3574FAF", + "name": "USK", + "display": "USK", + "symbol": "USK", + "coingecko_id": "usk", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wavax-wei", - "chain_name": "axelar" + "channel_id": "channel-67", + "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-42" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" - } + ] }, { - "description": "Wrapped FTM on Axelar.", + "description": "ampKUJI", "denom_units": [ { - "denom": "ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B", + "denom": "ibc/BA0B283A127E4BAC6B99B1E9B7B88CA06952C5D79BBC5CBCAC2DC7DD3C280980", "exponent": 0, "aliases": [ - "wftm-wei" + "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" ] }, { - "denom": "ftm", - "exponent": 18 + "denom": "ampKUJI", + "exponent": 6 } ], - "base": "ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B", - "name": "Wrapped FTM", - "display": "ftm", - "symbol": "WFTM", + "base": "ibc/BA0B283A127E4BAC6B99B1E9B7B88CA06952C5D79BBC5CBCAC2DC7DD3C280980", + "name": "ampKUJI", + "display": "ampKUJI", + "symbol": "ampKUJI", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wftm-wei", - "chain_name": "axelar" + "channel_id": "channel-67", + "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-42" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" - } + ] }, { - "description": "Circle's stablecoin from Polygon on Axelar", + "description": "MantaDAO Governance Token", "denom_units": [ { - "denom": "ibc/9D2271E5FC0595866E844D566F14BC937E90FF7CF701326AFAD9ADB1C4876F4A", + "denom": "ibc/875A638F561ED9370692AEE74353941979F9F53A8DE02C2BF80CEF1FD37921FA", "exponent": 0, "aliases": [ - "polygon-uusdc" + "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" ] }, { - "denom": "polygon-usdc", + "denom": "mnta", "exponent": 6 } ], - "base": "ibc/9D2271E5FC0595866E844D566F14BC937E90FF7CF701326AFAD9ADB1C4876F4A", - "name": "USD Coin from Polygon", - "display": "polygon-usdc", - "symbol": "USDC", + "base": "ibc/875A638F561ED9370692AEE74353941979F9F53A8DE02C2BF80CEF1FD37921FA", + "name": "MNTA", + "display": "MNTA", + "symbol": "MNTA", + "coingecko_id": "mantadao", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "polygon-uusdc", - "chain_name": "axelar" + "channel_id": "channel-67", + "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-42" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - } + ] }, { - "description": "Circle's stablecoin from Avalanche on Axelar", + "description": "The content house of Kujira", "denom_units": [ { - "denom": "ibc/9DDA11BB46B704CAA36E6FDDB01F2388480B2460D2064960639FC81C625FF574", + "denom": "ibc/55757499DA6A2A6271B5977B761B1B989066CC891BA6412FEF1750B0A0FF0DA8", "exponent": 0, "aliases": [ - "avalanche-uusdc" + "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" ] }, { - "denom": "avalanche-usdc", + "denom": "wink", "exponent": 6 } ], - "base": "ibc/9DDA11BB46B704CAA36E6FDDB01F2388480B2460D2064960639FC81C625FF574", - "name": "USD Coin from Avalanche", - "display": "avalanche-usdc", - "symbol": "USDC", + "base": "ibc/55757499DA6A2A6271B5977B761B1B989066CC891BA6412FEF1750B0A0FF0DA8", + "name": "WINK", + "display": "wink", + "symbol": "WINK", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "avalanche-uusdc", - "chain_name": "axelar" + "channel_id": "channel-67", + "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_name": "kujira" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-42" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" - } + ] }, { - "description": "Wrapped FIL on Axelar", + "description": "The permissioned staking asset for Noble Chain", "denom_units": [ { - "denom": "ibc/E2422AEF428C089CD74169065BF478C26499FAEE1FE936B87A95905BCFDB6E33", + "denom": "ibc/673673DBDCEF31EB60A4CA24A7BBD56D769FA46EB092D459C3823064C933BF3B", "exponent": 0, "aliases": [ - "wfil-wei" + "ustake" ] }, { - "denom": "fil", - "exponent": 18 + "denom": "stake", + "exponent": 6 } ], - "base": "ibc/E2422AEF428C089CD74169065BF478C26499FAEE1FE936B87A95905BCFDB6E33", - "name": "Wrapped FIL from Filecoin", - "display": "fil", - "symbol": "axlFIL", + "base": "ibc/673673DBDCEF31EB60A4CA24A7BBD56D769FA46EB092D459C3823064C933BF3B", + "name": "Stake", + "display": "stake", + "symbol": "STAKE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wfil-wei", - "chain_name": "axelar" + "channel_id": "channel-0", + "base_denom": "ustake", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-38" } } - ], - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" - } + ] }, { - "description": "Arbitrum on Axelar", + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", "denom_units": [ { - "denom": "ibc/BAF32343C8B21CCEB63BA035621B6ED86CFA883AC71B8217D9F9DA32CDA2E3B4", + "denom": "ibc/C8597ECBB1156C89A9CCEA8B3704F9E196926030371BE919BB9167FE3E6BAE29", "exponent": 0, "aliases": [ - "arb-wei" + "ufrienzies" ] }, { - "denom": "arb", - "exponent": 18 + "denom": "frienzies", + "exponent": 6 } ], - "base": "ibc/BAF32343C8B21CCEB63BA035621B6ED86CFA883AC71B8217D9F9DA32CDA2E3B4", - "name": "Arbitrum", - "display": "arb", - "symbol": "ARB", + "base": "ibc/C8597ECBB1156C89A9CCEA8B3704F9E196926030371BE919BB9167FE3E6BAE29", + "display": "frienzies", + "name": "Frienzies", + "symbol": "FRNZ", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "arb-wei", - "chain_name": "axelar" + "channel_id": "channel-0", + "base_denom": "ufrienzies", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-38" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" - } + ] }, { + "description": "ATOM token on Noble", "denom_units": [ { - "denom": "ibc/796FAF4E82B4EB778E18F4E0A2C67C9CF55D5ACD176F3B6FD6DC420ABDDBABC1", + "denom": "ibc/43472CC5DA44B2B7401A878513AB8D44B84F67ED9EECEF2AF922FC7A08B687FA", "exponent": 0, "aliases": [ - "pepe-wei" + "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0" ] }, { - "denom": "pepe", - "exponent": 18 + "denom": "atom", + "exponent": 6, + "aliases": [ + "ATOM" + ] } ], - "base": "ibc/796FAF4E82B4EB778E18F4E0A2C67C9CF55D5ACD176F3B6FD6DC420ABDDBABC1", - "name": "Pepe", - "display": "pepe", - "symbol": "PEPE", + "type_asset": "ics20", + "base": "ibc/43472CC5DA44B2B7401A878513AB8D44B84F67ED9EECEF2AF922FC7A08B687FA", + "name": "Atom Staking Coin", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "pepe-wei", - "chain_name": "axelar" + "channel_id": "channel-0", + "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-38" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + } }, { + "description": "USD Coin", "denom_units": [ { - "denom": "ibc/CBBAAEAB4BD5DDD23E38311BA333E519EFC66116BB6E5338AF51DA59A606F015", + "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", "exponent": 0, "aliases": [ - "cbeth-wei" + "uusdc" ] }, { - "denom": "cbeth", - "exponent": 18 + "denom": "usdc", + "exponent": 6 } ], - "base": "ibc/CBBAAEAB4BD5DDD23E38311BA333E519EFC66116BB6E5338AF51DA59A606F015", - "name": "Coinbase Wrapped Staked ETH", - "display": "cbeth", - "symbol": "cbETH", + "base": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", + "display": "usdc", + "name": "USD Coin", + "symbol": "USDC", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "cbeth-wei", - "chain_name": "axelar" + "channel_id": "channel-0", + "base_denom": "uusdc", + "chain_name": "noble" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-38" } } ] }, { + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/6026097599D36D6882664C0FC14A67A5DDA0AE76EDCC07062A8E7B74FA8A8D59", + "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", "exponent": 0, "aliases": [ - "reth-wei" + "uosmo" ] }, { - "denom": "reth", - "exponent": 18 + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/6026097599D36D6882664C0FC14A67A5DDA0AE76EDCC07062A8E7B74FA8A8D59", - "name": "Rocket Pool Ether", - "display": "reth", - "symbol": "rETH", + "base": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "reth-wei", - "chain_name": "axelar" + "channel_id": "channel-297", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-9" } } ] @@ -20460,31 +23751,39 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/11261571EB3E679315BA19C51F42F143113A139F598729D97624B45043C4D7C0", + "denom": "ibc/AAFAD8AC1A29CDA9985742B9DE3C32C1163798919C0B3A4C339A70D5F49D1E15", "exponent": 0, "aliases": [ - "sfrxeth-wei" + "uion" ] }, { - "denom": "sfrxeth", - "exponent": 18 + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/11261571EB3E679315BA19C51F42F143113A139F598729D97624B45043C4D7C0", - "name": "Staked Frax Ether", - "display": "sfrxeth", - "symbol": "sfrxETH", + "base": "ibc/AAFAD8AC1A29CDA9985742B9DE3C32C1163798919C0B3A4C339A70D5F49D1E15", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "sfrxeth-wei", - "chain_name": "axelar" + "channel_id": "channel-297", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-9" } } ] @@ -20492,3110 +23791,3168 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/F5BBAD34906B6ED73EB17652C47F7F34D2FFB8AC06712E0396F2F28E69DB40C0", + "denom": "ibc/D27521906D27F663AE7B5420ED2D288BF5E25C3BC41F66C7611866CE3EC333F0", "exponent": 0, "aliases": [ - "wsteth-wei" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "wsteth", - "exponent": 18 + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/F5BBAD34906B6ED73EB17652C47F7F34D2FFB8AC06712E0396F2F28E69DB40C0", - "name": "Wrapped Lido Staked Ether", - "display": "wsteth", - "symbol": "wstETH", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/D27521906D27F663AE7B5420ED2D288BF5E25C3BC41F66C7611866CE3EC333F0", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "wsteth-wei", - "chain_name": "axelar" + "channel_id": "channel-297", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-4" + "channel_id": "channel-9" } } ] }, { - "description": "Native Token of Comdex Protocol", "denom_units": [ { - "denom": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", + "denom": "ibc/8D58A4E9F3A964BB52AD4A1D3AFD2A78E38F3D4748D0F04DE89DE33EF091B40A", "exponent": 0, "aliases": [ - "ucmdx" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "cmdx", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", - "name": "Comdex", - "display": "cmdx", - "symbol": "CMDX", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/8D58A4E9F3A964BB52AD4A1D3AFD2A78E38F3D4748D0F04DE89DE33EF091B40A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "comdex", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-26", - "base_denom": "ucmdx", - "chain_name": "comdex" + "channel_id": "channel-297", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-49" + "channel_id": "channel-9" } } ] }, { - "description": "Governance Token of Harbor protocol on Comdex network", + "description": "The native token of Secret Network", "denom_units": [ { - "denom": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", "exponent": 0, "aliases": [ - "uharbor" + "uscrt" ] }, { - "denom": "harbor", + "denom": "scrt", "exponent": 6 } ], - "base": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", - "name": "Harbor", - "display": "harbor", - "symbol": "HARBOR", + "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "name": "Secret Network", + "display": "scrt", + "symbol": "SCRT", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" }, - "coingecko_id": "", + "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-26", - "base_denom": "uharbor", - "chain_name": "comdex" + "channel_id": "channel-24", + "base_denom": "uscrt", + "chain_name": "secretnetwork" }, "chain": { - "channel_id": "channel-49" + "channel_id": "channel-10" } } ] }, { - "description": "Stable Token of Harbor protocol on Comdex network", + "description": "The native token of Stargaze", "denom_units": [ { - "denom": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", + "denom": "ibc/8541877AC9CBC962B57532D445B57AF815C6BEF66C610F8D16F546EF65DF4B5C", "exponent": 0, "aliases": [ - "ucmst" + "ustars" ] }, { - "denom": "cmst", + "denom": "stars", "exponent": 6 } ], - "base": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", - "name": "CMST", - "display": "cmst", - "symbol": "CMST", + "base": "ibc/8541877AC9CBC962B57532D445B57AF815C6BEF66C610F8D16F546EF65DF4B5C", + "name": "Stargaze", + "display": "stars", + "symbol": "STARS", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" }, - "coingecko_id": "composite", + "coingecko_id": "stargaze", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-26", - "base_denom": "ucmst", - "chain_name": "comdex" + "channel_id": "channel-51", + "base_denom": "ustars", + "chain_name": "stargaze" }, "chain": { - "channel_id": "channel-49" + "channel_id": "channel-21" } } ] }, { - "description": "The native staking and governance token of the Cosmos Hub.", + "description": "The native token of Stride", "denom_units": [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/2A77A6AA536FC1D505B29C61CC41FEF4058C4ED0CE9D8C48178263087A985B22", "exponent": 0, "aliases": [ - "uatom" + "ustrd" ] }, { - "denom": "atom", + "denom": "strd", "exponent": 6 } ], - "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/2A77A6AA536FC1D505B29C61CC41FEF4058C4ED0CE9D8C48178263087A985B22", + "name": "Stride", + "display": "strd", + "symbol": "STRD", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" }, - "coingecko_id": "cosmos", + "coingecko_id": "stride", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-326", - "base_denom": "uatom", - "chain_name": "cosmoshub" + "channel_id": "channel-51", + "base_denom": "ustrd", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-29" } } ] }, { - "description": "CRO coin is the token for the Crypto.com platform.", "denom_units": [ { - "denom": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", + "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", "exponent": 0, "aliases": [ - "basecro" + "stuatom" ] }, - { - "denom": "cro", - "exponent": 8 + { + "denom": "statom", + "exponent": 6 } ], - "base": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", - "logo_URIs": { - "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" - }, - "coingecko_id": "crypto-com-chain", + "base": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "name": "stATOM", + "display": "statom", + "symbol": "stATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-61", - "base_denom": "basecro", - "chain_name": "cryptoorgchain" + "channel_id": "channel-51", + "base_denom": "stuatom", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-40" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" + }, + "coingecko_id": "stride-staked-atom" }, { - "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ { - "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", + "denom": "ibc/7E915EBCCF1D81F25E83AFEC1554E4BF058A6D7958CD7029E69F8E2E428EF55D", "exponent": 0, "aliases": [ - "aevmos" + "stustars" ] }, { - "denom": "evmos", - "exponent": 18 + "denom": "ststars", + "exponent": 6 } ], - "base": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", - "name": "Evmos", - "display": "evmos", - "symbol": "EVMOS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" - }, - "coingecko_id": "evmos", + "base": "ibc/7E915EBCCF1D81F25E83AFEC1554E4BF058A6D7958CD7029E69F8E2E428EF55D", + "name": "stSTARS", + "display": "ststars", + "symbol": "stSTARS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "aevmos", - "chain_name": "evmos" + "channel_id": "channel-51", + "base_denom": "stustars", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-7" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" + } }, { - "description": "The native token of Gravity Bridge", "denom_units": [ { - "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "denom": "ibc/AF34CA94D4149F62B253F9154C35A5ECD3A9910018FBC1011982C56E7E235D15", "exponent": 0, "aliases": [ - "ugraviton" + "stuosmo" ] }, { - "denom": "graviton", + "denom": "stosmo", "exponent": 6 } ], - "base": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", - "name": "Graviton", - "display": "graviton", - "symbol": "GRAV", - "coingecko_id": "graviton", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png" - }, + "base": "ibc/AF34CA94D4149F62B253F9154C35A5ECD3A9910018FBC1011982C56E7E235D15", + "name": "stOSMO", + "display": "stosmo", + "symbol": "stOSMO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "ugraviton", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stuosmo", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" + } }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", "denom_units": [ { - "denom": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", + "denom": "ibc/EF22798DBD1EF38058A7918AD86EEBC305A4C9C5EEE5C6A15F8D257962FABCB9", "exponent": 0, "aliases": [ - "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + "stujuno" ] }, { - "denom": "pstake", - "exponent": 18 + "denom": "stjuno", + "exponent": 6 } ], - "base": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", + "base": "ibc/EF22798DBD1EF38058A7918AD86EEBC305A4C9C5EEE5C6A15F8D257962FABCB9", + "name": "stJUNO", + "display": "stjuno", + "symbol": "stJUNO", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stujuno", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" } }, { - "description": "Gravity Bridge WETH", "denom_units": [ { - "denom": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", + "denom": "ibc/13D4099B0255ED8C8F9265930376E0703E506E707F078F024CC49C594BF87672", "exponent": 0, "aliases": [ - "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" + "stuluna" ] }, { - "denom": "gweth", - "exponent": 18 + "denom": "stluna", + "exponent": 6 } ], - "base": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", - "name": "Wrapped Ethereum", - "display": "gweth", - "symbol": "WETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" - }, + "base": "ibc/13D4099B0255ED8C8F9265930376E0703E506E707F078F024CC49C594BF87672", + "name": "stLUNA", + "display": "stluna", + "symbol": "stLUNA", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stuluna", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" + } }, { - "description": "Gravity Bridge USDC", "denom_units": [ { - "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", + "denom": "ibc/90EB14F1294E90405A80EEB4A2733A1E8A99FDB1F7E82BE6AF6E12708CCE8F91", "exponent": 0, "aliases": [ - "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" + "stinj" ] }, { - "denom": "gusdc", - "exponent": 6 + "denom": "stINJ", + "exponent": 18 } ], - "base": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", - "name": "USD Coin", - "display": "gusdc", - "symbol": "USDC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" - }, + "base": "ibc/90EB14F1294E90405A80EEB4A2733A1E8A99FDB1F7E82BE6AF6E12708CCE8F91", + "name": "stINJ", + "display": "stINJ", + "symbol": "stINJ", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stinj", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" + } }, { - "description": "Gravity Bridge USDT", "denom_units": [ { - "denom": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", + "denom": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", "exponent": 0, "aliases": [ - "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7" + "staevmos" ] }, { - "denom": "gusdt", - "exponent": 6 + "denom": "stevmos", + "exponent": 18 } ], - "base": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", - "name": "Tether USD", - "display": "gusdt", - "symbol": "USDT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" - }, + "base": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", + "name": "stEVMOS", + "display": "stevmos", + "symbol": "stEVMOS", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "staevmos", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" + } }, { - "description": "Gravity Bridge WBTC", "denom_units": [ { - "denom": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", + "denom": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", "exponent": 0, "aliases": [ - "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + "stuumee" ] }, { - "denom": "gwbtc", - "exponent": 8 + "denom": "stumee", + "exponent": 6 } ], - "base": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", - "name": "Wrapped Bitcoin", - "display": "gwbtc", - "symbol": "WBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg" - }, + "base": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", + "name": "stUMEE", + "display": "stumee", + "symbol": "stUMEE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stuumee", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" + } }, { - "description": "Gravity Bridge DAI", "denom_units": [ { - "denom": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", + "denom": "ibc/7834A3D3CBB38333AEB4293E17B7242DEC38E277A31A87C6B0A5A87C177B43B0", "exponent": 0, "aliases": [ - "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F" + "stucmdx" ] }, { - "denom": "gdai", - "exponent": 18 + "denom": "stcmdx", + "exponent": 6 } ], - "base": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", - "name": "Dai Stablecoin", - "display": "gdai", - "symbol": "DAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" - }, + "base": "ibc/7834A3D3CBB38333AEB4293E17B7242DEC38E277A31A87C6B0A5A87C177B43B0", + "name": "stCMDX", + "display": "stcmdx", + "symbol": "stCMDX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-62", - "base_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "chain_name": "gravitybridge" + "channel_id": "channel-51", + "base_denom": "stucmdx", + "chain_name": "stride" }, "chain": { - "channel_id": "channel-2" + "channel_id": "channel-29" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" + } }, { - "description": "The INJ token is the native governance token for the Injective chain.", + "description": "The native staking token of Terra Classic.", "denom_units": [ { - "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", + "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", "exponent": 0, "aliases": [ - "inj" + "uluna" ] }, { - "denom": "INJ", - "exponent": 18 + "denom": "mluna", + "exponent": 3, + "aliases": [ + "milliluna" + ] + }, + { + "denom": "luna", + "exponent": 6, + "aliases": [ + "lunc" + ] } ], - "base": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", - "name": "Injective", - "display": "INJ", - "symbol": "INJ", + "base": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "name": "Luna Classic", + "display": "luna", + "symbol": "LUNC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png" }, - "coingecko_id": "injective-protocol", + "coingecko_id": "terra-luna", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-90", - "base_denom": "inj", - "chain_name": "injective" + "channel_id": "channel-49", + "base_denom": "uluna", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-23" + "channel_id": "channel-0" } } ] }, { - "description": "The IRIS token is the native governance token for the IrisNet chain.", + "description": "The USD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/65CE3A1EC2EE4CAAC202494AE4E857D60704C46CE4770AD8BD80E41429618D58", + "denom": "ibc/6F4968A73F90CF7DE6394BF937D6DF7C7D162D74D839C13F53B41157D315E05F", "exponent": 0, "aliases": [ - "uiris" + "uusd" ] }, { - "denom": "iris", - "exponent": 6 + "denom": "musd", + "exponent": 3, + "aliases": [ + "milliusd" + ] + }, + { + "denom": "ust", + "exponent": 6, + "aliases": [ + "ustc" + ] } ], - "base": "ibc/65CE3A1EC2EE4CAAC202494AE4E857D60704C46CE4770AD8BD80E41429618D58", - "name": "IRISnet", - "display": "iris", - "symbol": "IRIS", + "base": "ibc/6F4968A73F90CF7DE6394BF937D6DF7C7D162D74D839C13F53B41157D315E05F", + "name": "TerraClassicUSD", + "display": "ust", + "symbol": "USTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png" }, - "coingecko_id": "iris-network", + "coingecko_id": "terrausd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "uiris", - "chain_name": "irisnet" + "channel_id": "channel-49", + "base_denom": "uusd", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-37" + "channel_id": "channel-0" } } ] }, { - "description": "The native staking and governance token of Jackal.", + "description": "The KRW stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", + "denom": "ibc/00E92D34B818C0415E60DF07071FCE9222890E888876B814F9DF0DE7372823D2", "exponent": 0, "aliases": [ - "ujkl" + "ukrw" ] }, { - "denom": "jkl", - "exponent": 6 + "denom": "mkrw", + "exponent": 3, + "aliases": [ + "millikrw" + ] + }, + { + "denom": "krt", + "exponent": 6, + "aliases": [ + "krtc" + ] } ], - "base": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", - "name": "Jackal", - "display": "jkl", - "symbol": "JKL", + "base": "ibc/00E92D34B818C0415E60DF07071FCE9222890E888876B814F9DF0DE7372823D2", + "name": "TerraClassicKRW", + "display": "krt", + "symbol": "KRTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png" }, - "coingecko_id": "jackal-protocol", + "coingecko_id": "terrakrw", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-38", - "base_denom": "ujkl", - "chain_name": "jackal" + "channel_id": "channel-49", + "base_denom": "ukrw", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-63" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of JUNO Chain", + "description": "The AUD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "denom": "ibc/FD3F18CCF6ACF00E523B0B15C83B26417053A69D223E12A957711DC6CA35510A", "exponent": 0, "aliases": [ - "ujuno" + "uaud" ] }, { - "denom": "juno", - "exponent": 6 + "denom": "maud", + "exponent": 3, + "aliases": [ + "milliaud" + ] + }, + { + "denom": "aut", + "exponent": 6, + "aliases": [ + "autc" + ] } ], - "base": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", + "base": "ibc/FD3F18CCF6ACF00E523B0B15C83B26417053A69D223E12A957711DC6CA35510A", + "display": "aut", + "name": "TerraClassicAUD", + "symbol": "AUTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png" }, - "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-81", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-49", + "base_denom": "uaud", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-0" } } ] }, { + "description": "The CAD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/2E935FE009C5499B9EF05DA9DBA83E0132F3D1CB99409068579ECC1A0B02A3D6", + "denom": "ibc/32C7F10562A3EDAFFB53ED94266C0F1502B5204AD80F91C85326CCF56BBD2067", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "ucad" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "mcad", + "exponent": 3, + "aliases": [ + "millicad" + ] + }, + { + "denom": "cat", + "exponent": 6, + "aliases": [ + "catc" + ] } ], - "type_asset": "ics20", - "base": "ibc/2E935FE009C5499B9EF05DA9DBA83E0132F3D1CB99409068579ECC1A0B02A3D6", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/32C7F10562A3EDAFFB53ED94266C0F1502B5204AD80F91C85326CCF56BBD2067", + "display": "cat", + "name": "TerraClassicCAD", + "symbol": "CATC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-81", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-49", + "base_denom": "ucad", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-0" } } ] }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "The CHF stablecoin of Terra Classic.", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/D92C7F51010363894ECBFA1CC2D8FEF2C3108E2DAF9AB66ECEA55D14B8E5499C", + "exponent": 0, + "aliases": [ + "uchf" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "mchf", + "exponent": 3, + "aliases": [ + "millichf" + ] + }, + { + "denom": "cht", + "exponent": 6, + "aliases": [ + "chtc" + ] } ], - "base": "ibc/3A9FCE4CF7D3669F13F3BF441A6086ABA75A2F255609CD57823CA8286AAF97BA", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", + "base": "ibc/D92C7F51010363894ECBFA1CC2D8FEF2C3108E2DAF9AB66ECEA55D14B8E5499C", + "display": "cht", + "name": "TerraClassicCHF", + "symbol": "CHTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-81", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-49", + "base_denom": "uchf", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-0" } } ] }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "The CNY stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/9EACB208CE92F1DEEF850C5AFF168876395A6D3ED8841EC4504B37BCF8CDFFB6", + "denom": "ibc/078B744A32EF27C4002CA2087F8506EE1B1416C680B46AB491FEC79180438458", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "ucny" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "mcny", + "exponent": 3, + "aliases": [ + "millicny" + ] + }, + { + "denom": "cnt", + "exponent": 6, + "aliases": [ + "cntc" + ] } ], - "base": "ibc/9EACB208CE92F1DEEF850C5AFF168876395A6D3ED8841EC4504B37BCF8CDFFB6", - "name": "Neta", - "display": "neta", - "symbol": "NETA", + "base": "ibc/078B744A32EF27C4002CA2087F8506EE1B1416C680B46AB491FEC79180438458", + "display": "cnt", + "name": "TerraClassicCNY", + "symbol": "CNTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png" }, - "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-81", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-49", + "base_denom": "ucny", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-3" + "channel_id": "channel-0" } } ] }, { - "description": "The native staking and governance token of the Kujira chain.", + "description": "The DKK stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/E94962A16BEAF54C780B83AB334B55E3AE8E636CC711E7E4499EDD2FBF420BDA", + "denom": "ibc/96D10B2EB423C550E8673E1C476B95A1120059CAF4FEA83D9A96DFDB21A18657", "exponent": 0, "aliases": [ - "ukuji" + "udkk" ] }, { - "denom": "kuji", - "exponent": 6 + "denom": "mdkk", + "exponent": 3, + "aliases": [ + "millidkk" + ] + }, + { + "denom": "dkt", + "exponent": 6, + "aliases": [ + "dktc" + ] } ], - "base": "ibc/E94962A16BEAF54C780B83AB334B55E3AE8E636CC711E7E4499EDD2FBF420BDA", - "name": "Kuji", - "display": "kuji", - "symbol": "KUJI", - "coingecko_id": "kujira", + "base": "ibc/96D10B2EB423C550E8673E1C476B95A1120059CAF4FEA83D9A96DFDB21A18657", + "display": "dkt", + "name": "TerraClassicDKK", + "symbol": "DKTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-67", - "base_denom": "ukuji", - "chain_name": "kujira" + "channel_id": "channel-49", + "base_denom": "udkk", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-0" } } ] }, { - "description": "The native over-collateralized stablecoin from the Kujira chain.", + "description": "The EUR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/7E1008481BC492C7F02131291EA28289ADDCE6921DE1B354274EE28DA3574FAF", + "denom": "ibc/EA4DBD2C5F2B9701950741645F8F68AF66B6E52CA8C46C2E5440579491BEA36A", "exponent": 0, "aliases": [ - "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk" + "ueur" ] }, { - "denom": "usk", - "exponent": 6 + "denom": "meur", + "exponent": 3, + "aliases": [ + "millieur" + ] + }, + { + "denom": "eut", + "exponent": 6, + "aliases": [ + "eutc" + ] } ], - "base": "ibc/7E1008481BC492C7F02131291EA28289ADDCE6921DE1B354274EE28DA3574FAF", - "name": "USK", - "display": "USK", - "symbol": "USK", - "coingecko_id": "usk", + "base": "ibc/EA4DBD2C5F2B9701950741645F8F68AF66B6E52CA8C46C2E5440579491BEA36A", + "display": "eut", + "name": "TerraClassicEUR", + "symbol": "EUTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-67", - "base_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_name": "kujira" + "channel_id": "channel-49", + "base_denom": "ueur", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-0" } } ] }, { - "description": "ampKUJI", + "description": "The GBP stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/BA0B283A127E4BAC6B99B1E9B7B88CA06952C5D79BBC5CBCAC2DC7DD3C280980", + "denom": "ibc/A24984EAB6D891AEA458A2C6A39305AC9F81F8C5519700F4CE2E1D28EA20B933", "exponent": 0, "aliases": [ - "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI" + "ugbp" ] }, { - "denom": "ampKUJI", - "exponent": 6 + "denom": "mgbp", + "exponent": 3, + "aliases": [ + "milligbp" + ] + }, + { + "denom": "gbt", + "exponent": 6, + "aliases": [ + "gbtc" + ] } ], - "base": "ibc/BA0B283A127E4BAC6B99B1E9B7B88CA06952C5D79BBC5CBCAC2DC7DD3C280980", - "name": "ampKUJI", - "display": "ampKUJI", - "symbol": "ampKUJI", + "base": "ibc/A24984EAB6D891AEA458A2C6A39305AC9F81F8C5519700F4CE2E1D28EA20B933", + "display": "gbt", + "name": "TerraClassicGBP", + "symbol": "GBTC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampKUJI.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-67", - "base_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "chain_name": "kujira" + "channel_id": "channel-49", + "base_denom": "ugbp", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-0" } } ] }, { - "description": "MantaDAO Governance Token", + "description": "The HKD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/875A638F561ED9370692AEE74353941979F9F53A8DE02C2BF80CEF1FD37921FA", + "denom": "ibc/B3E15BFC25E174BB2126060DC433464B26A7092DF91184BA7C22C0438BC593F3", "exponent": 0, "aliases": [ - "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta" + "uhkd" ] }, { - "denom": "mnta", - "exponent": 6 + "denom": "mhkd", + "exponent": 3, + "aliases": [ + "millihkd" + ] + }, + { + "denom": "hkt", + "exponent": 6, + "aliases": [ + "hktc" + ] } ], - "base": "ibc/875A638F561ED9370692AEE74353941979F9F53A8DE02C2BF80CEF1FD37921FA", - "name": "MNTA", - "display": "MNTA", - "symbol": "MNTA", - "coingecko_id": "mantadao", + "base": "ibc/B3E15BFC25E174BB2126060DC433464B26A7092DF91184BA7C22C0438BC593F3", + "display": "hkt", + "name": "TerraClassicHKD", + "symbol": "HKTC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-67", - "base_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "chain_name": "kujira" + "channel_id": "channel-49", + "base_denom": "uhkd", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-0" } } ] }, { - "description": "The content house of Kujira", + "description": "The IDR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/55757499DA6A2A6271B5977B761B1B989066CC891BA6412FEF1750B0A0FF0DA8", + "denom": "ibc/94C3391B988DAEE7778057D2C6458297EA06F71A5D9D8D3F0058007B57455DEC", "exponent": 0, "aliases": [ - "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink" + "uidr" ] }, { - "denom": "wink", - "exponent": 6 + "denom": "midr", + "exponent": 3, + "aliases": [ + "milliidr" + ] + }, + { + "denom": "idt", + "exponent": 6, + "aliases": [ + "idtc" + ] } ], - "base": "ibc/55757499DA6A2A6271B5977B761B1B989066CC891BA6412FEF1750B0A0FF0DA8", - "name": "WINK", - "display": "wink", - "symbol": "WINK", + "base": "ibc/94C3391B988DAEE7778057D2C6458297EA06F71A5D9D8D3F0058007B57455DEC", + "display": "idt", + "name": "TerraClassicIDR", + "symbol": "IDTC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-67", - "base_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "chain_name": "kujira" + "channel_id": "channel-49", + "base_denom": "uidr", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-42" + "channel_id": "channel-0" } } ] }, { - "description": "The permissioned staking asset for Noble Chain", + "description": "The INR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/673673DBDCEF31EB60A4CA24A7BBD56D769FA46EB092D459C3823064C933BF3B", + "denom": "ibc/65605010603CF3BCD9E8BB07AADEF26469BCA0271A3BA2049B1D508B79B082AB", "exponent": 0, "aliases": [ - "ustake" + "uinr" ] }, { - "denom": "stake", - "exponent": 6 + "denom": "minr", + "exponent": 3, + "aliases": [ + "milliinr" + ] + }, + { + "denom": "int", + "exponent": 6, + "aliases": [ + "intc" + ] } ], - "base": "ibc/673673DBDCEF31EB60A4CA24A7BBD56D769FA46EB092D459C3823064C933BF3B", - "name": "Stake", - "display": "stake", - "symbol": "STAKE", + "base": "ibc/65605010603CF3BCD9E8BB07AADEF26469BCA0271A3BA2049B1D508B79B082AB", + "display": "int", + "name": "TerraClassicINR", + "symbol": "INTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ustake", - "chain_name": "noble" + "channel_id": "channel-49", + "base_denom": "uinr", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-38" + "channel_id": "channel-0" } } ] }, { - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "description": "The JPY stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/C8597ECBB1156C89A9CCEA8B3704F9E196926030371BE919BB9167FE3E6BAE29", + "denom": "ibc/0C4845EAEE72957A6FBEDD863AFFE3D666D392E6D58D3ACBA0679AE54B7952B4", "exponent": 0, "aliases": [ - "ufrienzies" + "ujpy" ] }, { - "denom": "frienzies", - "exponent": 6 + "denom": "mjpy", + "exponent": 3, + "aliases": [ + "millijpy" + ] + }, + { + "denom": "jpt", + "exponent": 6, + "aliases": [ + "jptc" + ] } ], - "base": "ibc/C8597ECBB1156C89A9CCEA8B3704F9E196926030371BE919BB9167FE3E6BAE29", - "display": "frienzies", - "name": "Frienzies", - "symbol": "FRNZ", + "base": "ibc/0C4845EAEE72957A6FBEDD863AFFE3D666D392E6D58D3ACBA0679AE54B7952B4", + "display": "jpt", + "name": "TerraClassicJPY", + "symbol": "JPTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ufrienzies", - "chain_name": "noble" + "channel_id": "channel-49", + "base_denom": "ujpy", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-38" + "channel_id": "channel-0" } } ] }, { - "description": "ATOM token on Noble", + "description": "The MNT stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/43472CC5DA44B2B7401A878513AB8D44B84F67ED9EECEF2AF922FC7A08B687FA", + "denom": "ibc/C208EDD01D9F6A79EADBFF5782B75A72D3FABEB669B65BB86A602AB5A6C0453F", "exponent": 0, "aliases": [ - "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0" + "umnt" ] }, { - "denom": "atom", + "denom": "mmnt", + "exponent": 3, + "aliases": [ + "millimnt" + ] + }, + { + "denom": "mnt", "exponent": 6, "aliases": [ - "ATOM" + "mntc" ] } ], - "type_asset": "ics20", - "base": "ibc/43472CC5DA44B2B7401A878513AB8D44B84F67ED9EECEF2AF922FC7A08B687FA", - "name": "Atom Staking Coin", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/C208EDD01D9F6A79EADBFF5782B75A72D3FABEB669B65BB86A602AB5A6C0453F", + "display": "mnt", + "name": "TerraClassicMNT", + "symbol": "MNTC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", - "chain_name": "noble" + "channel_id": "channel-49", + "base_denom": "umnt", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-38" + "channel_id": "channel-0" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - } + ] }, { - "description": "USD Coin", + "description": "The MYR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", + "denom": "ibc/A0D93C7C70F7C5E7FCBBCD7D8BA026A1F5DB92C4DAA708D6EF2413238AD4F38A", "exponent": 0, "aliases": [ - "uusdc" + "umyr" ] }, { - "denom": "usdc", - "exponent": 6 + "denom": "mmyr", + "exponent": 3, + "aliases": [ + "millimyr" + ] + }, + { + "denom": "myt", + "exponent": 6, + "aliases": [ + "mytc" + ] } ], - "base": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", - "display": "usdc", - "name": "USD Coin", - "symbol": "USDC", + "base": "ibc/A0D93C7C70F7C5E7FCBBCD7D8BA026A1F5DB92C4DAA708D6EF2413238AD4F38A", + "display": "myt", + "name": "TerraClassicMYR", + "symbol": "MYTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-0", - "base_denom": "uusdc", - "chain_name": "noble" + "channel_id": "channel-49", + "base_denom": "umyr", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-38" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of Osmosis", + "description": "The NOK stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", + "denom": "ibc/9A66AAE35F333CD15C82C4F8C7049AAF1A38B2D5886E875581585CF4620D9C16", "exponent": 0, "aliases": [ - "uosmo" + "unok" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "mnok", + "exponent": 3, + "aliases": [ + "millinok" + ] + }, + { + "denom": "not", + "exponent": 6, + "aliases": [ + "notc" + ] } ], - "base": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/9A66AAE35F333CD15C82C4F8C7049AAF1A38B2D5886E875581585CF4620D9C16", + "display": "not", + "name": "TerraClassicNOK", + "symbol": "NOTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-297", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "unok", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-0" } } ] }, { + "description": "The PHP stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/AAFAD8AC1A29CDA9985742B9DE3C32C1163798919C0B3A4C339A70D5F49D1E15", + "denom": "ibc/6DBE7C1F82FD1332A04126D3BC7AF51A3FA01CF248AF4F13EB44F89492C16067", "exponent": 0, "aliases": [ - "uion" + "uphp" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "mphp", + "exponent": 3, + "aliases": [ + "milliphp" + ] + }, + { + "denom": "pht", + "exponent": 6, + "aliases": [ + "phtc" + ] } ], - "base": "ibc/AAFAD8AC1A29CDA9985742B9DE3C32C1163798919C0B3A4C339A70D5F49D1E15", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/6DBE7C1F82FD1332A04126D3BC7AF51A3FA01CF248AF4F13EB44F89492C16067", + "display": "pht", + "name": "TerraClassicPHP", + "symbol": "PHTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-297", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "uphp", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-0" } } ] }, { + "description": "The SDR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/D27521906D27F663AE7B5420ED2D288BF5E25C3BC41F66C7611866CE3EC333F0", + "denom": "ibc/732643A3C24C5B7DD4E2C6D612AFD435860B34BAB1D703E08508473FE3D779EC", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "usdr" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "msdr", + "exponent": 3, + "aliases": [ + "millisdr" + ] + }, + { + "denom": "sdt", + "exponent": 6, + "aliases": [ + "sdtc" + ] } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/D27521906D27F663AE7B5420ED2D288BF5E25C3BC41F66C7611866CE3EC333F0", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", + "base": "ibc/732643A3C24C5B7DD4E2C6D612AFD435860B34BAB1D703E08508473FE3D779EC", + "display": "sdt", + "name": "TerraClassicSDR", + "symbol": "SDTC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-297", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "usdr", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-0" } } ] }, { + "description": "The SEK stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/8D58A4E9F3A964BB52AD4A1D3AFD2A78E38F3D4748D0F04DE89DE33EF091B40A", + "denom": "ibc/9E7C88F6ADD212189B4562B0CB8CE400513FF11AFCF97D9A959C3CD891FF4006", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "usek" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "msek", + "exponent": 3, + "aliases": [ + "millisek" + ] + }, + { + "denom": "set", + "exponent": 6, + "aliases": [ + "setc" + ] } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/8D58A4E9F3A964BB52AD4A1D3AFD2A78E38F3D4748D0F04DE89DE33EF091B40A", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", + "base": "ibc/9E7C88F6ADD212189B4562B0CB8CE400513FF11AFCF97D9A959C3CD891FF4006", + "display": "set", + "name": "TerraClassicSEK", + "symbol": "SETC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-297", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-49", + "base_denom": "usek", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-9" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of Secret Network", + "description": "The SGD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "denom": "ibc/A8D7E0C24321051A92BDF3454A751C8E519370AE70834B24CD5DDC1B6489D655", "exponent": 0, "aliases": [ - "uscrt" + "usgd" ] }, { - "denom": "scrt", - "exponent": 6 + "denom": "msgd", + "exponent": 3, + "aliases": [ + "millisgd" + ] + }, + { + "denom": "sgt", + "exponent": 6, + "aliases": [ + "sgtc" + ] } ], - "base": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", - "name": "Secret Network", - "display": "scrt", - "symbol": "SCRT", + "base": "ibc/A8D7E0C24321051A92BDF3454A751C8E519370AE70834B24CD5DDC1B6489D655", + "display": "sgt", + "name": "TerraClassicSGD", + "symbol": "SGTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png" }, - "coingecko_id": "secret", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-24", - "base_denom": "uscrt", - "chain_name": "secretnetwork" + "channel_id": "channel-49", + "base_denom": "usgd", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of Stargaze", + "description": "The THB stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/8541877AC9CBC962B57532D445B57AF815C6BEF66C610F8D16F546EF65DF4B5C", + "denom": "ibc/8738E60AA82FB8B790A8AEA5454ECF0EE7631E9D6663C5804D62DDCE3727EC70", "exponent": 0, "aliases": [ - "ustars" + "uthb" ] }, { - "denom": "stars", - "exponent": 6 + "denom": "mthb", + "exponent": 3, + "aliases": [ + "millithb" + ] + }, + { + "denom": "tht", + "exponent": 6, + "aliases": [ + "thtc" + ] } ], - "base": "ibc/8541877AC9CBC962B57532D445B57AF815C6BEF66C610F8D16F546EF65DF4B5C", - "name": "Stargaze", - "display": "stars", - "symbol": "STARS", + "base": "ibc/8738E60AA82FB8B790A8AEA5454ECF0EE7631E9D6663C5804D62DDCE3727EC70", + "display": "tht", + "name": "TerraClassicTHB", + "symbol": "THTC", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png" }, - "coingecko_id": "stargaze", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "ustars", - "chain_name": "stargaze" + "channel_id": "channel-49", + "base_denom": "uthb", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-21" + "channel_id": "channel-0" } } ] }, { - "description": "The native token of Stride", + "description": "The TWD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/2A77A6AA536FC1D505B29C61CC41FEF4058C4ED0CE9D8C48178263087A985B22", + "denom": "ibc/75C01C4C632D2AE30F4D301F3AC784F13582738AFD5610EBF8FC2961372231A1", "exponent": 0, "aliases": [ - "ustrd" + "utwd" ] }, { - "denom": "strd", - "exponent": 6 + "denom": "mtwd", + "exponent": 3, + "aliases": [ + "millitwd" + ] + }, + { + "denom": "twt", + "exponent": 6, + "aliases": [ + "twtc" + ] } ], - "base": "ibc/2A77A6AA536FC1D505B29C61CC41FEF4058C4ED0CE9D8C48178263087A985B22", - "name": "Stride", - "display": "strd", - "symbol": "STRD", + "base": "ibc/75C01C4C632D2AE30F4D301F3AC784F13582738AFD5610EBF8FC2961372231A1", + "display": "twt", + "name": "TerraClassicTWD", + "symbol": "TWTC", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png" }, - "coingecko_id": "stride", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "ustrd", - "chain_name": "stride" + "channel_id": "channel-49", + "base_denom": "utwd", + "chain_name": "terra" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-0" } } ] }, { + "description": "The native staking token of Terra.", "denom_units": [ { - "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", "exponent": 0, "aliases": [ - "stuatom" + "uluna" ] }, { - "denom": "statom", + "denom": "luna", "exponent": 6 } ], - "base": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", - "name": "stATOM", - "display": "statom", - "symbol": "stATOM", + "base": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", + "name": "Luna", + "display": "luna", + "symbol": "LUNA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png" + }, + "coingecko_id": "terra-luna-2", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stuatom", - "chain_name": "stride" + "channel_id": "channel-37", + "base_denom": "uluna", + "chain_name": "terra2" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-27" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg" - }, - "coingecko_id": "stride-staked-atom" + ] }, { + "description": "The native token of Umee", "denom_units": [ { - "denom": "ibc/7E915EBCCF1D81F25E83AFEC1554E4BF058A6D7958CD7029E69F8E2E428EF55D", + "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", "exponent": 0, "aliases": [ - "stustars" + "uumee" ] }, { - "denom": "ststars", + "denom": "umee", "exponent": 6 } ], - "base": "ibc/7E915EBCCF1D81F25E83AFEC1554E4BF058A6D7958CD7029E69F8E2E428EF55D", - "name": "stSTARS", - "display": "ststars", - "symbol": "stSTARS", + "base": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", + "name": "Umee", + "display": "umee", + "symbol": "UMEE", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" + }, + "coingecko_id": "umee", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stustars", - "chain_name": "stride" + "channel_id": "channel-49", + "base_denom": "uumee", + "chain_name": "umee" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-36" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg" - } - }, + ] + } + ] + }, + { + "chain_name": "cryptoorgchain", + "assets": [ { + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/AF34CA94D4149F62B253F9154C35A5ECD3A9910018FBC1011982C56E7E235D15", + "denom": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", "exponent": 0, "aliases": [ - "stuosmo" + "uakt" ] }, { - "denom": "stosmo", + "denom": "akt", "exponent": 6 } ], - "base": "ibc/AF34CA94D4149F62B253F9154C35A5ECD3A9910018FBC1011982C56E7E235D15", - "name": "stOSMO", - "display": "stosmo", - "symbol": "stOSMO", + "base": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", + "name": "Akash Network", + "display": "akt", + "symbol": "AKT", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" + }, + "coingecko_id": "akash-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stuosmo", - "chain_name": "stride" + "channel_id": "channel-14", + "base_denom": "uakt", + "chain_name": "akash" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-21" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg" - } + ] }, { + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/EF22798DBD1EF38058A7918AD86EEBC305A4C9C5EEE5C6A15F8D257962FABCB9", + "denom": "ibc/B5919B1B65A79F595F71D2E8306FD1FB70B969A268230E745A6DBE86F1060D58", "exponent": 0, "aliases": [ - "stujuno" + "uatom" ] }, { - "denom": "stjuno", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/EF22798DBD1EF38058A7918AD86EEBC305A4C9C5EEE5C6A15F8D257962FABCB9", - "name": "stJUNO", - "display": "stjuno", - "symbol": "stJUNO", + "base": "ibc/B5919B1B65A79F595F71D2E8306FD1FB70B969A268230E745A6DBE86F1060D58", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + }, + "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stujuno", - "chain_name": "stride" + "channel_id": "channel-187", + "base_denom": "uatom", + "chain_name": "cosmoshub" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-27" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg" - } + ] }, { + "description": "The native token of Crescent", "denom_units": [ { - "denom": "ibc/13D4099B0255ED8C8F9265930376E0703E506E707F078F024CC49C594BF87672", + "denom": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", "exponent": 0, "aliases": [ - "stuluna" + "ucre" ] }, { - "denom": "stluna", + "denom": "cre", "exponent": 6 } ], - "base": "ibc/13D4099B0255ED8C8F9265930376E0703E506E707F078F024CC49C594BF87672", - "name": "stLUNA", - "display": "stluna", - "symbol": "stLUNA", + "base": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", + "name": "Crescent", + "display": "cre", + "symbol": "CRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + }, + "coingecko_id": "crescent-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stuluna", - "chain_name": "stride" + "channel_id": "channel-40", + "base_denom": "ucre", + "chain_name": "crescent" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-61" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg" - } + ] }, { + "description": "The bonded token of Crescent", "denom_units": [ { - "denom": "ibc/90EB14F1294E90405A80EEB4A2733A1E8A99FDB1F7E82BE6AF6E12708CCE8F91", + "denom": "ibc/30F8A8A47FDA18325D9CB43B65EC221568AF05EF39D8384225002768C8F4F4FA", "exponent": 0, "aliases": [ - "stinj" + "ubcre" ] }, { - "denom": "stINJ", - "exponent": 18 + "denom": "bcre", + "exponent": 6 } ], - "base": "ibc/90EB14F1294E90405A80EEB4A2733A1E8A99FDB1F7E82BE6AF6E12708CCE8F91", - "name": "stINJ", - "display": "stINJ", - "symbol": "stINJ", + "base": "ibc/30F8A8A47FDA18325D9CB43B65EC221568AF05EF39D8384225002768C8F4F4FA", + "name": "Bonded Crescent", + "display": "bcre", + "symbol": "bCRE", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + }, + "coingecko_id": "liquid-staking-crescent", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stinj", - "chain_name": "stride" + "channel_id": "channel-40", + "base_denom": "ubcre", + "chain_name": "crescent" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-61" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg" - } + ] }, { + "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ { - "denom": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", + "denom": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", "exponent": 0, "aliases": [ - "staevmos" + "aevmos" ] }, { - "denom": "stevmos", + "denom": "evmos", "exponent": 18 } ], - "base": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", - "name": "stEVMOS", - "display": "stevmos", - "symbol": "stEVMOS", + "base": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" + }, + "coingecko_id": "evmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "staevmos", - "chain_name": "stride" + "channel_id": "channel-31", + "base_denom": "aevmos", + "chain_name": "evmos" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-57" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg" - } + ] }, { + "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", + "denom": "ibc/9E7B7E495831F4E64D5E9105059EEF61FB8DFFB9CE28E2AD7C4B50192DE491B0", "exponent": 0, "aliases": [ - "stuumee" + "uiris" ] }, { - "denom": "stumee", + "denom": "iris", "exponent": 6 } ], - "base": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", - "name": "stUMEE", - "display": "stumee", - "symbol": "stUMEE", + "base": "ibc/9E7B7E495831F4E64D5E9105059EEF61FB8DFFB9CE28E2AD7C4B50192DE491B0", + "name": "IRISnet", + "display": "iris", + "symbol": "IRIS", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + }, + "coingecko_id": "iris-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stuumee", - "chain_name": "stride" + "channel_id": "channel-13", + "base_denom": "uiris", + "chain_name": "irisnet" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-23" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg" - } + ] }, { + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/7834A3D3CBB38333AEB4293E17B7242DEC38E277A31A87C6B0A5A87C177B43B0", + "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", "exponent": 0, "aliases": [ - "stucmdx" + "uosmo" ] }, { - "denom": "stcmdx", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/7834A3D3CBB38333AEB4293E17B7242DEC38E277A31A87C6B0A5A87C177B43B0", - "name": "stCMDX", - "display": "stcmdx", - "symbol": "stCMDX", + "base": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-51", - "base_denom": "stucmdx", - "chain_name": "stride" + "channel_id": "channel-5", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-29" + "channel_id": "channel-10" } } - ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg" - } + ] }, { - "description": "The native staking token of Terra Classic.", "denom_units": [ { - "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "denom": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", "exponent": 0, "aliases": [ - "uluna" - ] - }, - { - "denom": "mluna", - "exponent": 3, - "aliases": [ - "milliluna" + "uion" ] }, { - "denom": "luna", - "exponent": 6, - "aliases": [ - "lunc" - ] + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", - "name": "Luna Classic", - "display": "luna", - "symbol": "LUNC", + "base": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, - "coingecko_id": "terra-luna", + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uluna", - "chain_name": "terra" + "channel_id": "channel-5", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-10" } } ] }, { - "description": "The USD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/6F4968A73F90CF7DE6394BF937D6DF7C7D162D74D839C13F53B41157D315E05F", + "denom": "ibc/AC67AF39FCD2E3E935909EF017B8F667F67EF689A431ACAC7BCB872D5E4B4D22", "exponent": 0, "aliases": [ - "uusd" - ] - }, - { - "denom": "musd", - "exponent": 3, - "aliases": [ - "milliusd" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "ust", - "exponent": 6, - "aliases": [ - "ustc" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/6F4968A73F90CF7DE6394BF937D6DF7C7D162D74D839C13F53B41157D315E05F", - "name": "TerraClassicUSD", - "display": "ust", - "symbol": "USTC", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/AC67AF39FCD2E3E935909EF017B8F667F67EF689A431ACAC7BCB872D5E4B4D22", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - "coingecko_id": "terrausd", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uusd", - "chain_name": "terra" + "channel_id": "channel-5", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-10" } } ] }, { - "description": "The KRW stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/00E92D34B818C0415E60DF07071FCE9222890E888876B814F9DF0DE7372823D2", + "denom": "ibc/E92CD020751E93DF431B5B1ED8950F7BFF07646D33C49CEA96D991FB6C322403", "exponent": 0, "aliases": [ - "ukrw" - ] - }, - { - "denom": "mkrw", - "exponent": 3, - "aliases": [ - "millikrw" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "krt", - "exponent": 6, - "aliases": [ - "krtc" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/00E92D34B818C0415E60DF07071FCE9222890E888876B814F9DF0DE7372823D2", - "name": "TerraClassicKRW", - "display": "krt", - "symbol": "KRTC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/E92CD020751E93DF431B5B1ED8950F7BFF07646D33C49CEA96D991FB6C322403", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "terrakrw", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ukrw", - "chain_name": "terra" + "channel_id": "channel-5", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-10" } } ] }, { - "description": "The AUD stablecoin of Terra Classic.", + "description": "The XPRT token is primarily a governance token for the Persistence chain.", "denom_units": [ { - "denom": "ibc/FD3F18CCF6ACF00E523B0B15C83B26417053A69D223E12A957711DC6CA35510A", + "denom": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", "exponent": 0, "aliases": [ - "uaud" - ] - }, - { - "denom": "maud", - "exponent": 3, - "aliases": [ - "milliaud" + "uxprt" ] }, { - "denom": "aut", - "exponent": 6, - "aliases": [ - "autc" - ] + "denom": "xprt", + "exponent": 6 } ], - "base": "ibc/FD3F18CCF6ACF00E523B0B15C83B26417053A69D223E12A957711DC6CA35510A", - "display": "aut", - "name": "TerraClassicAUD", - "symbol": "AUTC", + "base": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", + "name": "Persistence", + "display": "xprt", + "symbol": "XPRT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" }, + "coingecko_id": "persistence", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uaud", - "chain_name": "terra" + "channel_id": "channel-11", + "base_denom": "uxprt", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-17" } } ] }, { - "description": "The CAD stablecoin of Terra Classic.", + "description": "PSTAKE Liquid-Staked ATOM", "denom_units": [ { - "denom": "ibc/32C7F10562A3EDAFFB53ED94266C0F1502B5204AD80F91C85326CCF56BBD2067", + "denom": "ibc/F596D425ED062FF586E9F74EA67E663BEB602EAD18F3388FB6DF57E127552BFD", "exponent": 0, "aliases": [ - "ucad" - ] - }, - { - "denom": "mcad", - "exponent": 3, - "aliases": [ - "millicad" + "stk/uatom" ] }, { - "denom": "cat", + "denom": "stkatom", "exponent": 6, "aliases": [ - "catc" + "stk/atom" ] } ], - "base": "ibc/32C7F10562A3EDAFFB53ED94266C0F1502B5204AD80F91C85326CCF56BBD2067", - "display": "cat", - "name": "TerraClassicCAD", - "symbol": "CATC", + "base": "ibc/F596D425ED062FF586E9F74EA67E663BEB602EAD18F3388FB6DF57E127552BFD", + "name": "PSTAKE staked ATOM", + "display": "stkatom", + "symbol": "stkATOM", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" }, + "coingecko_id": "stkatom", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ucad", - "chain_name": "terra" + "channel_id": "channel-11", + "base_denom": "stk/uatom", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-17" } } ] }, { - "description": "The CHF stablecoin of Terra Classic.", + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", "denom_units": [ { - "denom": "ibc/D92C7F51010363894ECBFA1CC2D8FEF2C3108E2DAF9AB66ECEA55D14B8E5499C", + "denom": "ibc/008701C2C16FAC15372A91612C5D4F032E22C48455978BC6A51B8C8267E67A8C", "exponent": 0, "aliases": [ - "uchf" - ] - }, - { - "denom": "mchf", - "exponent": 3, - "aliases": [ - "millichf" + "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" ] }, { - "denom": "cht", - "exponent": 6, - "aliases": [ - "chtc" - ] + "denom": "pstake", + "exponent": 18 } ], - "base": "ibc/D92C7F51010363894ECBFA1CC2D8FEF2C3108E2DAF9AB66ECEA55D14B8E5499C", - "display": "cht", - "name": "TerraClassicCHF", - "symbol": "CHTC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png" - }, + "type_asset": "ics20", + "base": "ibc/008701C2C16FAC15372A91612C5D4F032E22C48455978BC6A51B8C8267E67A8C", + "name": "pSTAKE Finance", + "display": "pstake", + "symbol": "PSTAKE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uchf", - "chain_name": "terra" + "channel_id": "channel-11", + "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "chain_name": "persistence" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-17" } } + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg" + }, + "keywords": [ + "canon" ] }, { - "description": "The CNY stablecoin of Terra Classic.", + "description": "REGEN coin is the token for the Regen Network Platform", "denom_units": [ { - "denom": "ibc/078B744A32EF27C4002CA2087F8506EE1B1416C680B46AB491FEC79180438458", + "denom": "ibc/3FB46732B9C1F6867ADF6F0BE4FAFFA1271BB2B7E5A4A14E2DAACBAE05BD0A0E", "exponent": 0, "aliases": [ - "ucny" - ] - }, - { - "denom": "mcny", - "exponent": 3, - "aliases": [ - "millicny" + "uregen" ] }, { - "denom": "cnt", - "exponent": 6, - "aliases": [ - "cntc" - ] + "denom": "regen", + "exponent": 6 } ], - "base": "ibc/078B744A32EF27C4002CA2087F8506EE1B1416C680B46AB491FEC79180438458", - "display": "cnt", - "name": "TerraClassicCNY", - "symbol": "CNTC", + "base": "ibc/3FB46732B9C1F6867ADF6F0BE4FAFFA1271BB2B7E5A4A14E2DAACBAE05BD0A0E", + "name": "Regen Network", + "display": "regen", + "symbol": "REGEN", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" }, + "coingecko_id": "regen", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ucny", - "chain_name": "terra" + "channel_id": "channel-12", + "base_denom": "uregen", + "chain_name": "regen" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-25" } } ] }, { - "description": "The DKK stablecoin of Terra Classic.", + "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", "denom_units": [ { - "denom": "ibc/96D10B2EB423C550E8673E1C476B95A1120059CAF4FEA83D9A96DFDB21A18657", + "denom": "ibc/5BCB50433125E4CB71969AD315CE7DCBD4BF5B430F1FE74EB761E9D7D24672C2", "exponent": 0, "aliases": [ - "udkk" - ] - }, - { - "denom": "mdkk", - "exponent": 3, - "aliases": [ - "millidkk" + "eco.uC.NCT" ] }, { - "denom": "dkt", - "exponent": 6, - "aliases": [ - "dktc" - ] + "denom": "nct", + "exponent": 6 } ], - "base": "ibc/96D10B2EB423C550E8673E1C476B95A1120059CAF4FEA83D9A96DFDB21A18657", - "display": "dkt", - "name": "TerraClassicDKK", - "symbol": "DKTC", + "base": "ibc/5BCB50433125E4CB71969AD315CE7DCBD4BF5B430F1FE74EB761E9D7D24672C2", + "name": "Nature Carbon Ton", + "display": "nct", + "symbol": "NCT", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png" }, + "coingecko_id": "toucan-protocol-nature-carbon-tonne", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "udkk", - "chain_name": "terra" + "channel_id": "channel-12", + "base_denom": "eco.uC.NCT", + "chain_name": "regen" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-25" } } ] }, { - "description": "The EUR stablecoin of Terra Classic.", + "description": "DVPN is the native token of the Sentinel Hub.", "denom_units": [ { - "denom": "ibc/EA4DBD2C5F2B9701950741645F8F68AF66B6E52CA8C46C2E5440579491BEA36A", + "denom": "ibc/EA3EE13F2D2A4085922BE6AF07F2DC7009A80D9461A37BB4C4F76B2A5817D23A", "exponent": 0, "aliases": [ - "ueur" - ] - }, - { - "denom": "meur", - "exponent": 3, - "aliases": [ - "millieur" + "udvpn" ] }, { - "denom": "eut", - "exponent": 6, - "aliases": [ - "eutc" - ] + "denom": "dvpn", + "exponent": 6 } ], - "base": "ibc/EA4DBD2C5F2B9701950741645F8F68AF66B6E52CA8C46C2E5440579491BEA36A", - "display": "eut", - "name": "TerraClassicEUR", - "symbol": "EUTC", + "base": "ibc/EA3EE13F2D2A4085922BE6AF07F2DC7009A80D9461A37BB4C4F76B2A5817D23A", + "name": "Sentinel", + "display": "dvpn", + "symbol": "DVPN", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" }, + "coingecko_id": "sentinel", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ueur", - "chain_name": "terra" + "channel_id": "channel-7", + "base_denom": "udvpn", + "chain_name": "sentinel" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-19" } } ] }, { - "description": "The GBP stablecoin of Terra Classic.", + "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", "denom_units": [ { - "denom": "ibc/A24984EAB6D891AEA458A2C6A39305AC9F81F8C5519700F4CE2E1D28EA20B933", + "denom": "ibc/67E8B26BE190FB3F191DA72D6A390DB7DFA6E92C99CB37644DECBEBD2A075C41", "exponent": 0, "aliases": [ - "ugbp" - ] - }, - { - "denom": "mgbp", - "exponent": 3, - "aliases": [ - "milligbp" + "rowan" ] }, { - "denom": "gbt", - "exponent": 6, - "aliases": [ - "gbtc" - ] + "denom": "ROWAN", + "exponent": 18 } ], - "base": "ibc/A24984EAB6D891AEA458A2C6A39305AC9F81F8C5519700F4CE2E1D28EA20B933", - "display": "gbt", - "name": "TerraClassicGBP", - "symbol": "GBTC", + "base": "ibc/67E8B26BE190FB3F191DA72D6A390DB7DFA6E92C99CB37644DECBEBD2A075C41", + "name": "Sifchain Rowan", + "display": "ROWAN", + "symbol": "ROWAN", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png" }, + "coingecko_id": "sifchain", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ugbp", - "chain_name": "terra" + "channel_id": "channel-9", + "base_denom": "rowan", + "chain_name": "sifchain" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-33" } } ] }, { - "description": "The HKD stablecoin of Terra Classic.", + "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", "denom_units": [ { - "denom": "ibc/B3E15BFC25E174BB2126060DC433464B26A7092DF91184BA7C22C0438BC593F3", + "denom": "ibc/CF2716DD1EA5866263E47C980D78F0810953B7DA1AFF4BACF663DC3B49B37389", "exponent": 0, "aliases": [ - "uhkd" - ] - }, - { - "denom": "mhkd", - "exponent": 3, - "aliases": [ - "millihkd" + "uiov" ] }, { - "denom": "hkt", - "exponent": 6, - "aliases": [ - "hktc" - ] + "denom": "iov", + "exponent": 6 } ], - "base": "ibc/B3E15BFC25E174BB2126060DC433464B26A7092DF91184BA7C22C0438BC593F3", - "display": "hkt", - "name": "TerraClassicHKD", - "symbol": "HKTC", + "base": "ibc/CF2716DD1EA5866263E47C980D78F0810953B7DA1AFF4BACF663DC3B49B37389", + "name": "Starname", + "display": "iov", + "symbol": "IOV", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png" + "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" }, + "coingecko_id": "starname", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uhkd", - "chain_name": "terra" + "channel_id": "channel-3", + "base_denom": "uiov", + "chain_name": "starname" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-22" } } ] - }, + } + ] + }, + { + "chain_name": "cudos", + "assets": [ { - "description": "The IDR stablecoin of Terra Classic.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/94C3391B988DAEE7778057D2C6458297EA06F71A5D9D8D3F0058007B57455DEC", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "uidr" - ] - }, - { - "denom": "midr", - "exponent": 3, - "aliases": [ - "milliidr" + "uosmo" ] }, { - "denom": "idt", - "exponent": 6, - "aliases": [ - "idtc" - ] + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/94C3391B988DAEE7778057D2C6458297EA06F71A5D9D8D3F0058007B57455DEC", - "display": "idt", - "name": "TerraClassicIDR", - "symbol": "IDTC", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uidr", - "chain_name": "terra" + "channel_id": "channel-298", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The INR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/65605010603CF3BCD9E8BB07AADEF26469BCA0271A3BA2049B1D508B79B082AB", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "uinr" - ] - }, - { - "denom": "minr", - "exponent": 3, - "aliases": [ - "milliinr" + "uion" ] }, { - "denom": "int", - "exponent": 6, - "aliases": [ - "intc" - ] + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/65605010603CF3BCD9E8BB07AADEF26469BCA0271A3BA2049B1D508B79B082AB", - "display": "int", - "name": "TerraClassicINR", - "symbol": "INTC", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uinr", - "chain_name": "terra" + "channel_id": "channel-298", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The JPY stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/0C4845EAEE72957A6FBEDD863AFFE3D666D392E6D58D3ACBA0679AE54B7952B4", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "ujpy" - ] - }, - { - "denom": "mjpy", - "exponent": 3, - "aliases": [ - "millijpy" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "jpt", - "exponent": 6, - "aliases": [ - "jptc" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/0C4845EAEE72957A6FBEDD863AFFE3D666D392E6D58D3ACBA0679AE54B7952B4", - "display": "jpt", - "name": "TerraClassicJPY", - "symbol": "JPTC", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "ujpy", - "chain_name": "terra" + "channel_id": "channel-298", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The MNT stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/C208EDD01D9F6A79EADBFF5782B75A72D3FABEB669B65BB86A602AB5A6C0453F", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "umnt" - ] - }, - { - "denom": "mmnt", - "exponent": 3, - "aliases": [ - "millimnt" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "mnt", - "exponent": 6, - "aliases": [ - "mntc" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/C208EDD01D9F6A79EADBFF5782B75A72D3FABEB669B65BB86A602AB5A6C0453F", - "display": "mnt", - "name": "TerraClassicMNT", - "symbol": "MNTC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "umnt", - "chain_name": "terra" + "channel_id": "channel-298", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] - }, + } + ] + }, + { + "chain_name": "decentr", + "assets": [ { - "description": "The MYR stablecoin of Terra Classic.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/A0D93C7C70F7C5E7FCBBCD7D8BA026A1F5DB92C4DAA708D6EF2413238AD4F38A", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "umyr" - ] - }, - { - "denom": "mmyr", - "exponent": 3, - "aliases": [ - "millimyr" + "uosmo" ] }, { - "denom": "myt", - "exponent": 6, - "aliases": [ - "mytc" - ] + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/A0D93C7C70F7C5E7FCBBCD7D8BA026A1F5DB92C4DAA708D6EF2413238AD4F38A", - "display": "myt", - "name": "TerraClassicMYR", - "symbol": "MYTC", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "umyr", - "chain_name": "terra" + "channel_id": "channel-181", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The NOK stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/9A66AAE35F333CD15C82C4F8C7049AAF1A38B2D5886E875581585CF4620D9C16", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "unok" - ] - }, - { - "denom": "mnok", - "exponent": 3, - "aliases": [ - "millinok" + "uion" ] }, { - "denom": "not", - "exponent": 6, - "aliases": [ - "notc" - ] + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/9A66AAE35F333CD15C82C4F8C7049AAF1A38B2D5886E875581585CF4620D9C16", - "display": "not", - "name": "TerraClassicNOK", - "symbol": "NOTC", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "unok", - "chain_name": "terra" + "channel_id": "channel-181", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The PHP stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/6DBE7C1F82FD1332A04126D3BC7AF51A3FA01CF248AF4F13EB44F89492C16067", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "uphp" - ] - }, - { - "denom": "mphp", - "exponent": 3, - "aliases": [ - "milliphp" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "pht", - "exponent": 6, - "aliases": [ - "phtc" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/6DBE7C1F82FD1332A04126D3BC7AF51A3FA01CF248AF4F13EB44F89492C16067", - "display": "pht", - "name": "TerraClassicPHP", - "symbol": "PHTC", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uphp", - "chain_name": "terra" + "channel_id": "channel-181", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] }, { - "description": "The SDR stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/732643A3C24C5B7DD4E2C6D612AFD435860B34BAB1D703E08508473FE3D779EC", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "usdr" - ] - }, - { - "denom": "msdr", - "exponent": 3, - "aliases": [ - "millisdr" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "sdt", - "exponent": 6, - "aliases": [ - "sdtc" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/732643A3C24C5B7DD4E2C6D612AFD435860B34BAB1D703E08508473FE3D779EC", - "display": "sdt", - "name": "TerraClassicSDR", - "symbol": "SDTC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "usdr", - "chain_name": "terra" + "channel_id": "channel-181", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] - }, + } + ] + }, + { + "chain_name": "desmos", + "assets": [ { - "description": "The SEK stablecoin of Terra Classic.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/9E7C88F6ADD212189B4562B0CB8CE400513FF11AFCF97D9A959C3CD891FF4006", + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "exponent": 0, "aliases": [ - "usek" - ] - }, - { - "denom": "msek", - "exponent": 3, - "aliases": [ - "millisek" + "uosmo" ] }, { - "denom": "set", - "exponent": 6, - "aliases": [ - "setc" - ] + "denom": "osmo", + "exponent": 6 } ], - "base": "ibc/9E7C88F6ADD212189B4562B0CB8CE400513FF11AFCF97D9A959C3CD891FF4006", - "display": "set", - "name": "TerraClassicSEK", - "symbol": "SETC", + "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "usek", - "chain_name": "terra" + "channel_id": "channel-135", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "The SGD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/A8D7E0C24321051A92BDF3454A751C8E519370AE70834B24CD5DDC1B6489D655", + "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", "exponent": 0, "aliases": [ - "usgd" - ] - }, - { - "denom": "msgd", - "exponent": 3, - "aliases": [ - "millisgd" + "uion" ] }, { - "denom": "sgt", - "exponent": 6, - "aliases": [ - "sgtc" - ] + "denom": "ion", + "exponent": 6 } ], - "base": "ibc/A8D7E0C24321051A92BDF3454A751C8E519370AE70834B24CD5DDC1B6489D655", - "display": "sgt", - "name": "TerraClassicSGD", - "symbol": "SGTC", + "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "usgd", - "chain_name": "terra" + "channel_id": "channel-135", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "The THB stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/8738E60AA82FB8B790A8AEA5454ECF0EE7631E9D6663C5804D62DDCE3727EC70", + "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", "exponent": 0, "aliases": [ - "uthb" - ] - }, - { - "denom": "mthb", - "exponent": 3, - "aliases": [ - "millithb" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "tht", - "exponent": 6, - "aliases": [ - "thtc" - ] + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/8738E60AA82FB8B790A8AEA5454ECF0EE7631E9D6663C5804D62DDCE3727EC70", - "display": "tht", - "name": "TerraClassicTHB", - "symbol": "THTC", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uthb", - "chain_name": "terra" + "channel_id": "channel-135", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] }, { - "description": "The TWD stablecoin of Terra Classic.", "denom_units": [ { - "denom": "ibc/75C01C4C632D2AE30F4D301F3AC784F13582738AFD5610EBF8FC2961372231A1", + "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", "exponent": 0, "aliases": [ - "utwd" - ] - }, - { - "denom": "mtwd", - "exponent": 3, - "aliases": [ - "millitwd" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "twt", - "exponent": 6, - "aliases": [ - "twtc" - ] + "denom": "stibcx", + "exponent": 6 } ], - "base": "ibc/75C01C4C632D2AE30F4D301F3AC784F13582738AFD5610EBF8FC2961372231A1", - "display": "twt", - "name": "TerraClassicTWD", - "symbol": "TWTC", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "utwd", - "chain_name": "terra" + "channel_id": "channel-135", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-2" } } ] - }, + } + ] + }, + { + "chain_name": "dig", + "assets": [ { - "description": "The native staking token of Terra.", + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", + "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", "exponent": 0, "aliases": [ - "uluna" + "ujuno" ] }, { - "denom": "luna", + "denom": "juno", "exponent": 6 } ], - "base": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", - "name": "Luna", - "display": "luna", - "symbol": "LUNA", + "base": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.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" }, - "coingecko_id": "terra-luna-2", + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-37", - "base_denom": "uluna", - "chain_name": "terra2" + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-27" + "channel_id": "channel-2" } } ] }, { - "description": "The native token of Umee", "denom_units": [ { - "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", + "denom": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", "exponent": 0, "aliases": [ - "uumee" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "umee", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", - "name": "Umee", - "display": "umee", - "symbol": "UMEE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" - }, - "coingecko_id": "umee", + "type_asset": "ics20", + "base": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-49", - "base_denom": "uumee", - "chain_name": "umee" + "channel_id": "channel-37", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-36" + "channel_id": "channel-2" } } ] - } - ] - }, - { - "chain_name": "cryptoorgchain", - "assets": [ + }, { - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", - "exponent": 0, - "aliases": [ - "uakt" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "akt", + "denom": "banana", "exponent": 6 } ], - "base": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", - "name": "Akash Network", - "display": "akt", - "symbol": "AKT", + "base": "ibc/D07580A7D155F80ADA6CF31E75A964453CC179AF91CC591A040F214708E9D94E", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" }, - "coingecko_id": "akash-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-14", - "base_denom": "uakt", - "chain_name": "akash" + "channel_id": "channel-37", + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-21" + "channel_id": "channel-2" } } ] }, { - "description": "The native staking and governance token of the Cosmos Hub.", + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/B5919B1B65A79F595F71D2E8306FD1FB70B969A268230E745A6DBE86F1060D58", + "denom": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", "exponent": 0, "aliases": [ - "uatom" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "atom", + "denom": "neta", "exponent": 6 } ], - "base": "ibc/B5919B1B65A79F595F71D2E8306FD1FB70B969A268230E745A6DBE86F1060D58", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", + "name": "Neta", + "display": "neta", + "symbol": "NETA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" }, - "coingecko_id": "cosmos", + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-187", - "base_denom": "uatom", - "chain_name": "cosmoshub" + "channel_id": "channel-37", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-27" + "channel_id": "channel-2" } } ] }, { - "description": "The native token of Crescent", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ - "ucre" + "uosmo" ] }, { - "denom": "cre", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", - "name": "Crescent", - "display": "cre", - "symbol": "CRE", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, - "coingecko_id": "crescent-network", + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-40", - "base_denom": "ucre", - "chain_name": "crescent" + "channel_id": "channel-128", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-61" + "channel_id": "channel-1" } } ] }, { - "description": "The bonded token of Crescent", "denom_units": [ { - "denom": "ibc/30F8A8A47FDA18325D9CB43B65EC221568AF05EF39D8384225002768C8F4F4FA", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ - "ubcre" + "uion" ] }, { - "denom": "bcre", + "denom": "ion", "exponent": 6 } ], - "base": "ibc/30F8A8A47FDA18325D9CB43B65EC221568AF05EF39D8384225002768C8F4F4FA", - "name": "Bonded Crescent", - "display": "bcre", - "symbol": "bCRE", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" }, - "coingecko_id": "liquid-staking-crescent", + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-40", - "base_denom": "ubcre", - "chain_name": "crescent" + "channel_id": "channel-128", + "base_denom": "uion", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-61" + "channel_id": "channel-1" } } ] }, { - "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ { - "denom": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ - "aevmos" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] }, { - "denom": "evmos", - "exponent": 18 + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", - "name": "Evmos", - "display": "evmos", - "symbol": "EVMOS", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - "coingecko_id": "evmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-31", - "base_denom": "aevmos", - "chain_name": "evmos" + "channel_id": "channel-128", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-57" + "channel_id": "channel-1" } } ] }, { - "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/9E7B7E495831F4E64D5E9105059EEF61FB8DFFB9CE28E2AD7C4B50192DE491B0", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ - "uiris" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "iris", + "denom": "stibcx", "exponent": 6 } ], - "base": "ibc/9E7B7E495831F4E64D5E9105059EEF61FB8DFFB9CE28E2AD7C4B50192DE491B0", - "name": "IRISnet", - "display": "iris", - "symbol": "IRIS", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" }, - "coingecko_id": "iris-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-13", - "base_denom": "uiris", - "chain_name": "irisnet" + "channel_id": "channel-128", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-23" + "channel_id": "channel-1" } } ] - }, + } + ] + }, + { + "chain_name": "dyson", + "assets": [ { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "exponent": 0, "aliases": [ "uosmo" @@ -23606,7 +26963,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -23623,12 +26980,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", + "channel_id": "channel-526", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-2" } } ] @@ -23636,7 +26993,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", + "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", "exponent": 0, "aliases": [ "uion" @@ -23647,7 +27004,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", + "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", "name": "Ion", "display": "ion", "symbol": "ION", @@ -23663,12 +27020,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", + "channel_id": "channel-526", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-2" } } ] @@ -23676,7 +27033,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/AC67AF39FCD2E3E935909EF017B8F667F67EF689A431ACAC7BCB872D5E4B4D22", + "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -23688,7 +27045,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/AC67AF39FCD2E3E935909EF017B8F667F67EF689A431ACAC7BCB872D5E4B4D22", + "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -23699,12 +27056,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", + "channel_id": "channel-526", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-2" } } ] @@ -23712,7 +27069,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/E92CD020751E93DF431B5B1ED8950F7BFF07646D33C49CEA96D991FB6C322403", + "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -23724,7 +27081,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/E92CD020751E93DF431B5B1ED8950F7BFF07646D33C49CEA96D991FB6C322403", + "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -23736,336 +27093,407 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-5", + "channel_id": "channel-526", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-10" + "channel_id": "channel-2" } } ] - }, + } + ] + }, + { + "chain_name": "echelon", + "assets": [ { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", + "denom": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", "exponent": 0, "aliases": [ - "uxprt" + "uosmo" ] }, { - "denom": "xprt", + "denom": "osmo", "exponent": 6 } ], - "base": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", - "name": "Persistence", - "display": "xprt", - "symbol": "XPRT", + "base": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" }, - "coingecko_id": "persistence", + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "uxprt", - "chain_name": "persistence" + "channel_id": "channel-403", + "base_denom": "uosmo", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-17" + "channel_id": "channel-11" } } ] }, { - "description": "PSTAKE Liquid-Staked ATOM", "denom_units": [ { - "denom": "ibc/F596D425ED062FF586E9F74EA67E663BEB602EAD18F3388FB6DF57E127552BFD", + "denom": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", "exponent": 0, "aliases": [ - "stk/uatom" + "uion" ] }, { - "denom": "stkatom", - "exponent": 6, + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-403", + "base_denom": "uion", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/8D9309CBBA1063D9E412CBF1829FE1D998C0CBAE5E2484D66D0B6AC0F45A11B2", + "exponent": 0, "aliases": [ - "stk/atom" + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" ] + }, + { + "denom": "ibcx", + "exponent": 6 } ], - "base": "ibc/F596D425ED062FF586E9F74EA67E663BEB602EAD18F3388FB6DF57E127552BFD", - "name": "PSTAKE staked ATOM", - "display": "stkatom", - "symbol": "stkATOM", + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/8D9309CBBA1063D9E412CBF1829FE1D998C0CBAE5E2484D66D0B6AC0F45A11B2", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" }, - "coingecko_id": "stkatom", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "stk/uatom", - "chain_name": "persistence" + "channel_id": "channel-403", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-17" + "channel_id": "channel-11" } } ] }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", "denom_units": [ { - "denom": "ibc/008701C2C16FAC15372A91612C5D4F032E22C48455978BC6A51B8C8267E67A8C", + "denom": "ibc/7BE20134C6DA230C7523B2B18A0040F0814560A640F947348C5736549A26E4CA", "exponent": 0, "aliases": [ - "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" ] }, { - "denom": "pstake", - "exponent": 18 + "denom": "stibcx", + "exponent": 6 } ], - "type_asset": "ics20", - "base": "ibc/008701C2C16FAC15372A91612C5D4F032E22C48455978BC6A51B8C8267E67A8C", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/7BE20134C6DA230C7523B2B18A0040F0814560A640F947348C5736549A26E4CA", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-11", - "base_denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "chain_name": "persistence" + "channel_id": "channel-403", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-17" + "channel_id": "channel-11" } } + ] + } + ] + }, + { + "chain_name": "emoney", + "assets": [ + { + "description": "The native staking and governance token of the Cosmos Hub.", + "denom_units": [ + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "exponent": 0, + "aliases": [ + "uatom" + ] + }, + { + "denom": "atom", + "exponent": 6 + } ], + "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/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/cosmoshub/images/atom.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" }, - "keywords": [ - "canon" + "coingecko_id": "cosmos", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-202", + "base_denom": "uatom", + "chain_name": "cosmoshub" + }, + "chain": { + "channel_id": "channel-1" + } + } ] }, { - "description": "REGEN coin is the token for the Regen Network Platform", + "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/3FB46732B9C1F6867ADF6F0BE4FAFFA1271BB2B7E5A4A14E2DAACBAE05BD0A0E", + "denom": "ibc/D5460C6C5B9D46389463C65201200F602490933DF1A2FFFE76C2FD234E811986", "exponent": 0, "aliases": [ - "uregen" + "uiris" ] }, { - "denom": "regen", + "denom": "iris", "exponent": 6 } ], - "base": "ibc/3FB46732B9C1F6867ADF6F0BE4FAFFA1271BB2B7E5A4A14E2DAACBAE05BD0A0E", - "name": "Regen Network", - "display": "regen", - "symbol": "REGEN", + "base": "ibc/D5460C6C5B9D46389463C65201200F602490933DF1A2FFFE76C2FD234E811986", + "name": "IRISnet", + "display": "iris", + "symbol": "IRIS", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" }, - "coingecko_id": "regen", + "coingecko_id": "iris-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "uregen", - "chain_name": "regen" + "channel_id": "channel-23", + "base_denom": "uiris", + "chain_name": "irisnet" }, "chain": { - "channel_id": "channel-25" + "channel_id": "channel-2" } } ] }, { - "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.", + "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/5BCB50433125E4CB71969AD315CE7DCBD4BF5B430F1FE74EB761E9D7D24672C2", + "denom": "ibc/3BEA25F3A13A9C17476C821CCF8ECCC84351DDB7B1B06B98654C3B4427F785CC", "exponent": 0, "aliases": [ - "eco.uC.NCT" + "ujuno" ] }, { - "denom": "nct", + "denom": "juno", "exponent": 6 } ], - "base": "ibc/5BCB50433125E4CB71969AD315CE7DCBD4BF5B430F1FE74EB761E9D7D24672C2", - "name": "Nature Carbon Ton", - "display": "nct", - "symbol": "NCT", + "base": "ibc/3BEA25F3A13A9C17476C821CCF8ECCC84351DDB7B1B06B98654C3B4427F785CC", + "name": "Juno", + "display": "juno", + "symbol": "JUNO", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.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" }, - "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "coingecko_id": "juno-network", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-12", - "base_denom": "eco.uC.NCT", - "chain_name": "regen" + "channel_id": "channel-9", + "base_denom": "ujuno", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-25" + "channel_id": "channel-15" } } ] }, { - "description": "DVPN is the native token of the Sentinel Hub.", "denom_units": [ { - "denom": "ibc/EA3EE13F2D2A4085922BE6AF07F2DC7009A80D9461A37BB4C4F76B2A5817D23A", + "denom": "ibc/4FC32EBA615637B0420D6D62548C5787A2150B4D52E59486D8A3A6757729ECFC", "exponent": 0, "aliases": [ - "udvpn" + "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" ] }, { - "denom": "dvpn", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/EA3EE13F2D2A4085922BE6AF07F2DC7009A80D9461A37BB4C4F76B2A5817D23A", - "name": "Sentinel", - "display": "dvpn", - "symbol": "DVPN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" - }, - "coingecko_id": "sentinel", + "type_asset": "ics20", + "base": "ibc/4FC32EBA615637B0420D6D62548C5787A2150B4D52E59486D8A3A6757729ECFC", + "name": "ATOM on Juno", + "display": "atom", + "symbol": "ATOM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-7", - "base_denom": "udvpn", - "chain_name": "sentinel" + "channel_id": "channel-9", + "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-19" + "channel_id": "channel-15" } } ] }, { - "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "description": "Bored APE IBC club token", + "type_asset": "cw20", + "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "ibc/67E8B26BE190FB3F191DA72D6A390DB7DFA6E92C99CB37644DECBEBD2A075C41", - "exponent": 0, - "aliases": [ - "rowan" - ] + "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "exponent": 0 }, { - "denom": "ROWAN", - "exponent": 18 + "denom": "banana", + "exponent": 6 } ], - "base": "ibc/67E8B26BE190FB3F191DA72D6A390DB7DFA6E92C99CB37644DECBEBD2A075C41", - "name": "Sifchain Rowan", - "display": "ROWAN", - "symbol": "ROWAN", + "base": "ibc/9926F4527D852F643A0789C6739A8F60EA61207455C0009AA6721A96990B00A2", + "name": "Banana Token", + "display": "banana", + "symbol": "BANANA", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" }, - "coingecko_id": "sifchain", "traces": [ { "type": "ibc", "counterparty": { "channel_id": "channel-9", - "base_denom": "rowan", - "chain_name": "sifchain" + "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-33" + "channel_id": "channel-15" } } ] }, { - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", + "description": "The native token cw20 for Neta on Juno Chain", + "type_asset": "cw20", + "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "denom_units": [ { - "denom": "ibc/CF2716DD1EA5866263E47C980D78F0810953B7DA1AFF4BACF663DC3B49B37389", + "denom": "ibc/C98B2A0A286432E3B637925ECED1EC1BF378C74ABC1D5780C7DAF7483D4C87FF", "exponent": 0, "aliases": [ - "uiov" + "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" ] }, { - "denom": "iov", + "denom": "neta", "exponent": 6 } ], - "base": "ibc/CF2716DD1EA5866263E47C980D78F0810953B7DA1AFF4BACF663DC3B49B37389", - "name": "Starname", - "display": "iov", - "symbol": "IOV", + "base": "ibc/C98B2A0A286432E3B637925ECED1EC1BF378C74ABC1D5780C7DAF7483D4C87FF", + "name": "Neta", + "display": "neta", + "symbol": "NETA", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg" + "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" }, - "coingecko_id": "starname", + "coingecko_id": "neta", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-3", - "base_denom": "uiov", - "chain_name": "starname" + "channel_id": "channel-9", + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "chain_name": "juno" }, "chain": { - "channel_id": "channel-22" + "channel_id": "channel-15" } } ] - } - ] - }, - { - "chain_name": "cudos", - "assets": [ + }, { "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "exponent": 0, "aliases": [ "uosmo" @@ -24076,7 +27504,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -24093,12 +27521,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-298", + "channel_id": "channel-37", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-0" } } ] @@ -24106,7 +27534,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "exponent": 0, "aliases": [ "uion" @@ -24117,7 +27545,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "name": "Ion", "display": "ion", "symbol": "ION", @@ -24133,12 +27561,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-298", + "channel_id": "channel-37", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-0" } } ] @@ -24146,7 +27574,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -24158,7 +27586,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -24169,12 +27597,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-298", + "channel_id": "channel-37", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-0" } } ] @@ -24182,7 +27610,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -24194,7 +27622,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -24206,12 +27634,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-298", + "channel_id": "channel-37", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-0" } } ] @@ -24219,1022 +27647,1088 @@ const asset_lists: AssetList[] = [ ] }, { - "chain_name": "decentr", + "chain_name": "empowerchain", "assets": [ { - "description": "The native token of Osmosis", + "description": "The native token of Axelar", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", "exponent": 0, "aliases": [ - "uosmo" + "uaxl" ] }, { - "denom": "osmo", + "denom": "axl", "exponent": 6 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", + "base": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "name": "Axelar", + "display": "axl", + "symbol": "AXL", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg" }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "coingecko_id": "axelar", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-181", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "uaxl", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] }, { + "description": "Circle's stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "exponent": 0, "aliases": [ - "uion" + "uusdc" ] }, { - "denom": "ion", + "denom": "usdc", "exponent": 6 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "name": "Ion", - "display": "ion", - "symbol": "ION", + "base": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "name": "USD Coin", + "display": "usdc", + "symbol": "USDC", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-109", + "base_denom": "uusdc", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-2" + } + } + ], "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" + "coingecko_id": "axlusdc" + }, + { + "description": "Frax's fractional-algorithmic stablecoin on Axelar", + "denom_units": [ + { + "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "exponent": 0, + "aliases": [ + "frax-wei" + ] + }, + { + "denom": "frax", + "exponent": 18 + } ], + "base": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "name": "Frax", + "display": "frax", + "symbol": "FRAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-181", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "frax-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + } }, { + "description": "Dai stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "dai-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "dai", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", + "name": "Dai Stablecoin", + "display": "dai", + "symbol": "DAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-181", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "dai-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png" + } }, { + "description": "Tether's USD stablecoin on Axelar", "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "uusdt" ] }, { - "denom": "stibcx", + "denom": "usdt", "exponent": 6 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "name": "Tether USD", + "display": "usdt", + "symbol": "USDT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-181", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "uusdt", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "desmos", - "assets": [ + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png" + } + }, { - "description": "The native token of Osmosis", + "description": "Wrapped Ether on Axelar", "denom_units": [ { - "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", "exponent": 0, "aliases": [ - "uosmo" + "weth-wei" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "weth", + "exponent": 18 + } + ], + "base": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "name": "Wrapped Ether", + "display": "weth", + "symbol": "WETH", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-109", + "base_denom": "weth-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-2" + } } ], - "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + } + }, + { + "description": "Wrapped Bitcoin on Axelar", + "denom_units": [ + { + "denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "exponent": 0, + "aliases": [ + "wbtc-satoshi" + ] + }, + { + "denom": "wbtc", + "exponent": 8 + } ], + "base": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", + "name": "Wrapped Bitcoin", + "display": "wbtc", + "symbol": "WBTC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-135", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wbtc-satoshi", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + } }, { + "description": "Aave on Axelar", "denom_units": [ { - "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", + "denom": "ibc/9D52535D9941EAA2081B50B1C0D974F7E4751ED5A402D10626B768E00FDB5952", "exponent": 0, "aliases": [ - "uion" + "aave-wei" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "aave", + "exponent": 18 + } + ], + "base": "ibc/9D52535D9941EAA2081B50B1C0D974F7E4751ED5A402D10626B768E00FDB5952", + "name": "Aave", + "display": "aave", + "symbol": "AAVE", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-109", + "base_denom": "aave-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-2" + } } ], - "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", - "name": "Ion", - "display": "ion", - "symbol": "ION", "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + } + }, + { + "description": "ApeCoin on Axelar", + "denom_units": [ + { + "denom": "ibc/57761007A24DA566959E8F79CA90DA6D1AF17D9BCDDD944CF7C28EAD2DED050C", + "exponent": 0, + "aliases": [ + "ape-wei" + ] + }, + { + "denom": "ape", + "exponent": 18 + } ], + "base": "ibc/57761007A24DA566959E8F79CA90DA6D1AF17D9BCDDD944CF7C28EAD2DED050C", + "name": "ApeCoin", + "display": "ape", + "symbol": "APE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-135", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "ape-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + } }, { + "description": "Axie Infinity Shard on Axelar", "denom_units": [ { - "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", + "denom": "ibc/0688C62E3052455C25EB9FCDD9850FCFC7E75E104985EE919D3E00C860F972D0", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "axs-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "axs", + "exponent": 18 + } + ], + "base": "ibc/0688C62E3052455C25EB9FCDD9850FCFC7E75E104985EE919D3E00C860F972D0", + "name": "Axie Infinity Shard", + "display": "axs", + "symbol": "AXS", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-109", + "base_denom": "axs-wei", + "chain_name": "axelar" + }, + "chain": { + "channel_id": "channel-2" + } } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + } + }, + { + "description": "Chainlink on Axelar", + "denom_units": [ + { + "denom": "ibc/73D01D9D032390E81CBC20B7E0507B84DF54F3CE5302BFF52776E7D8930F2A6C", + "exponent": 0, + "aliases": [ + "link-wei" + ] + }, + { + "denom": "link", + "exponent": 18 + } + ], + "base": "ibc/73D01D9D032390E81CBC20B7E0507B84DF54F3CE5302BFF52776E7D8930F2A6C", + "name": "Chainlink", + "display": "link", + "symbol": "LINK", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-135", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "link-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg" + } }, { + "description": "Maker on Axelar", "denom_units": [ { - "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", + "denom": "ibc/F2C3F097E1EFD9B54CF374BA1FA64C5FF995F228CC389CDFB094BF7942B8F00F", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "mkr-wei" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "mkr", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/F2C3F097E1EFD9B54CF374BA1FA64C5FF995F228CC389CDFB094BF7942B8F00F", + "name": "Maker", + "display": "mkr", + "symbol": "MKR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-135", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "mkr-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "dig", - "assets": [ + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + } + }, { - "description": "The native token of JUNO Chain", + "description": "Rai Reflex Index on Axelar", "denom_units": [ { - "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", + "denom": "ibc/8F93A962F1ACCC0C55B45358ACCEA4557206AE71A8BC73A2044525EE43EF5D31", "exponent": 0, "aliases": [ - "ujuno" + "rai-wei" ] }, { - "denom": "juno", - "exponent": 6 + "denom": "rai", + "exponent": 18 } ], - "base": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", + "base": "ibc/8F93A962F1ACCC0C55B45358ACCEA4557206AE71A8BC73A2044525EE43EF5D31", + "name": "Rai Reflex Index", + "display": "rai", + "symbol": "RAI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "rai-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + } }, { + "description": "Shiba Inu on Axelar", "denom_units": [ { - "denom": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", + "denom": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "shib-wei" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "shib", + "exponent": 18 } ], - "type_asset": "ics20", - "base": "ibc/FCE390D49328DA97EE71B40B3C0085C5D80845B7C77009CD791F87179F86DEFB", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", + "name": "Shiba Inu", + "display": "shib", + "symbol": "SHIB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "shib-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + } }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "description": "Lido Staked Ether on Axelar", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/2303C1F7A377DF6D9FF74B64C36BCFA8DF62020C7ACEA64A82C27CABD2DEF15C", + "exponent": 0, + "aliases": [ + "steth-wei" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "steth", + "exponent": 18 } ], - "base": "ibc/D07580A7D155F80ADA6CF31E75A964453CC179AF91CC591A040F214708E9D94E", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/2303C1F7A377DF6D9FF74B64C36BCFA8DF62020C7ACEA64A82C27CABD2DEF15C", + "name": "Lido Staked Ether", + "display": "steth", + "symbol": "stETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "steth-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + } }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "Uniswap on Axelar", "denom_units": [ { - "denom": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", + "denom": "ibc/ED457C0D88A8893E3BFEA226630E761C887AA2433F6C7BBCC29B591349A65BB7", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "uni-wei" ] }, { - "denom": "neta", - "exponent": 6 + "denom": "uni", + "exponent": 18 } ], - "base": "ibc/95AA8D9F68C2681A4E1DE71FDE32B2216E9916B194CE0DB4E8297DD4A40C9D85", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta", + "base": "ibc/ED457C0D88A8893E3BFEA226630E761C887AA2433F6C7BBCC29B591349A65BB7", + "name": "Uniswap", + "display": "uni", + "symbol": "UNI", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "uni-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + } }, { - "description": "The native token of Osmosis", + "description": "Chain on Axelar", "denom_units": [ { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/27D56A1695FDB2CADE16B371BB80709B2F46623647FA958141E0F74854E94DDF", "exponent": 0, "aliases": [ - "uosmo" + "xcn-wei" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "xcn", + "exponent": 18 } ], - "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/27D56A1695FDB2CADE16B371BB80709B2F46623647FA958141E0F74854E94DDF", + "name": "Chain", + "display": "xcn", + "symbol": "XCN", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-128", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "xcn-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + } }, { + "description": "Wrapped Polkadot on Axelar", "denom_units": [ { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", "exponent": 0, "aliases": [ - "uion" + "dot-planck" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "dot", + "exponent": 10 } ], - "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", + "name": "Wrapped Polkadot", + "display": "dot", + "symbol": "DOT", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-128", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "dot-planck", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png" + } }, { + "description": "Wrapped Moonbeam on Axelar", "denom_units": [ { - "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "denom": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "wglmr-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "wglmr", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", + "name": "Wrapped Moonbeam", + "display": "wglmr", + "symbol": "WGLMR", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-128", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wglmr-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png" + } }, { + "description": "Wrapped Matic on Axelar", "denom_units": [ { - "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "denom": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "wmatic-wei" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "wmatic", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", + "name": "Wrapped Matic", + "display": "wmatic", + "symbol": "WMATIC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-128", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wmatic-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "dyson", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + } + }, { - "description": "The native token of Osmosis", + "description": "Wrapped BNB on Axelar", "denom_units": [ { - "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "denom": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", "exponent": 0, "aliases": [ - "uosmo" + "wbnb-wei" ] }, { - "denom": "osmo", - "exponent": 6 + "denom": "wbnb", + "exponent": 18 } ], - "base": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", + "name": "Wrapped BNB", + "display": "wbnb", + "symbol": "WBNB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-526", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wbnb-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png" + } }, { + "description": "Binance USD on Axelar.", "denom_units": [ { - "denom": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", + "denom": "ibc/71BA048E21A9AEAC5E23FB7D91BE0E8730D50AB8993A01307616AA0C7EA618E3", "exponent": 0, "aliases": [ - "uion" + "busd-wei" ] }, { - "denom": "ion", - "exponent": 6 + "denom": "busd", + "exponent": 18 } ], - "base": "ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/71BA048E21A9AEAC5E23FB7D91BE0E8730D50AB8993A01307616AA0C7EA618E3", + "name": "Binance USD", + "display": "busd", + "symbol": "BUSD", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-526", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "busd-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png" + } }, { + "description": "Wrapped AVAX on Axelar.", "denom_units": [ { - "denom": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", + "denom": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "wavax-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "avax", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", + "name": "Wrapped AVAX", + "display": "avax", + "symbol": "WAVAX", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-526", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wavax-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + } }, { + "description": "Wrapped FTM on Axelar.", "denom_units": [ { - "denom": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", + "denom": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "wftm-wei" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "ftm", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", + "name": "Wrapped FTM", + "display": "ftm", + "symbol": "WFTM", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-526", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wftm-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "echelon", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png" + } + }, { - "description": "The native token of Osmosis", + "description": "Circle's stablecoin from Polygon on Axelar", "denom_units": [ { - "denom": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", + "denom": "ibc/1FF126BCB643CAE7CF54231292B34F535A7AD77360A302FFF45A1E1E9BC7CC62", "exponent": 0, "aliases": [ - "uosmo" + "polygon-uusdc" ] }, { - "denom": "osmo", + "denom": "polygon-usdc", "exponent": 6 } ], - "base": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" - }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ], + "base": "ibc/1FF126BCB643CAE7CF54231292B34F535A7AD77360A302FFF45A1E1E9BC7CC62", + "name": "USD Coin from Polygon", + "display": "polygon-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-403", - "base_denom": "uosmo", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "polygon-uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + } }, { + "description": "Circle's stablecoin from Avalanche on Axelar", "denom_units": [ { - "denom": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", + "denom": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", "exponent": 0, "aliases": [ - "uion" + "avalanche-uusdc" ] }, { - "denom": "ion", + "denom": "avalanche-usdc", "exponent": 6 } ], - "base": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", - "name": "Ion", - "display": "ion", - "symbol": "ION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" - }, - "coingecko_id": "ion", - "keywords": [ - "memecoin" - ], + "base": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", + "name": "USD Coin from Avalanche", + "display": "avalanche-usdc", + "symbol": "USDC", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-403", - "base_denom": "uion", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "avalanche-uusdc", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png" + } }, { + "description": "Wrapped FIL on Axelar", "denom_units": [ { - "denom": "ibc/8D9309CBBA1063D9E412CBF1829FE1D998C0CBAE5E2484D66D0B6AC0F45A11B2", + "denom": "ibc/761BB661E5B5C11E35CF61CF5A3D0C683C0F1E24CCB7EFD507D42EEFA811B8CE", "exponent": 0, "aliases": [ - "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + "wfil-wei" ] }, { - "denom": "ibcx", - "exponent": 6 + "denom": "fil", + "exponent": 18 } ], - "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/8D9309CBBA1063D9E412CBF1829FE1D998C0CBAE5E2484D66D0B6AC0F45A11B2", - "name": "IBCX Core ", - "display": "ibcx", - "symbol": "IBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" - }, + "base": "ibc/761BB661E5B5C11E35CF61CF5A3D0C683C0F1E24CCB7EFD507D42EEFA811B8CE", + "name": "Wrapped FIL from Filecoin", + "display": "fil", + "symbol": "axlFIL", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-403", - "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "wfil-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-2" } } - ] + ], + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/filecoin/images/wfil.png" + } }, { + "description": "Arbitrum on Axelar", "denom_units": [ { - "denom": "ibc/7BE20134C6DA230C7523B2B18A0040F0814560A640F947348C5736549A26E4CA", + "denom": "ibc/B02AA07D282BF43527072539B8F63A4FF2588665A339BC09392036623430E3B9", "exponent": 0, "aliases": [ - "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + "arb-wei" ] }, { - "denom": "stibcx", - "exponent": 6 + "denom": "arb", + "exponent": 18 } ], - "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/7BE20134C6DA230C7523B2B18A0040F0814560A640F947348C5736549A26E4CA", - "name": "stIBCX Core ", - "display": "stibcx", - "symbol": "stIBCX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" - }, + "base": "ibc/B02AA07D282BF43527072539B8F63A4FF2588665A339BC09392036623430E3B9", + "name": "Arbitrum", + "display": "arb", + "symbol": "ARB", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-403", - "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "chain_name": "osmosis" + "channel_id": "channel-109", + "base_denom": "arb-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-11" + "channel_id": "channel-2" } } - ] - } - ] - }, - { - "chain_name": "emoney", - "assets": [ + ], + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg" + } + }, { - "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/BE0B6569E21562DA7E129F407AED4EA6625B7CB403E072C8C5E1B7F8D79DCC78", "exponent": 0, "aliases": [ - "uatom" + "pepe-wei" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "pepe", + "exponent": 18 } ], - "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "name": "Cosmos Hub Atom", - "display": "atom", - "symbol": "ATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" - }, - "coingecko_id": "cosmos", + "base": "ibc/BE0B6569E21562DA7E129F407AED4EA6625B7CB403E072C8C5E1B7F8D79DCC78", + "name": "Pepe", + "display": "pepe", + "symbol": "PEPE", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-202", - "base_denom": "uatom", - "chain_name": "cosmoshub" + "channel_id": "channel-109", + "base_denom": "pepe-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-1" + "channel_id": "channel-2" } } ] }, { - "description": "The IRIS token is the native governance token for the IrisNet chain.", "denom_units": [ { - "denom": "ibc/D5460C6C5B9D46389463C65201200F602490933DF1A2FFFE76C2FD234E811986", + "denom": "ibc/AF88A5C6D9B06451DC0BABB1C6CF9BD087236FF38215F7B4FF4AC42D0AEE6D97", "exponent": 0, "aliases": [ - "uiris" + "cbeth-wei" ] }, { - "denom": "iris", - "exponent": 6 + "denom": "cbeth", + "exponent": 18 } ], - "base": "ibc/D5460C6C5B9D46389463C65201200F602490933DF1A2FFFE76C2FD234E811986", - "name": "IRISnet", - "display": "iris", - "symbol": "IRIS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg" - }, - "coingecko_id": "iris-network", + "base": "ibc/AF88A5C6D9B06451DC0BABB1C6CF9BD087236FF38215F7B4FF4AC42D0AEE6D97", + "name": "Coinbase Wrapped Staked ETH", + "display": "cbeth", + "symbol": "cbETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-23", - "base_denom": "uiris", - "chain_name": "irisnet" + "channel_id": "channel-109", + "base_denom": "cbeth-wei", + "chain_name": "axelar" }, "chain": { "channel_id": "channel-2" @@ -25243,39 +28737,33 @@ const asset_lists: AssetList[] = [ ] }, { - "description": "The native token of JUNO Chain", "denom_units": [ { - "denom": "ibc/3BEA25F3A13A9C17476C821CCF8ECCC84351DDB7B1B06B98654C3B4427F785CC", + "denom": "ibc/351D4A530C080FEC850B941610E71D465E0596146253C6CC4E835DF7D433DE3F", "exponent": 0, "aliases": [ - "ujuno" + "reth-wei" ] }, { - "denom": "juno", - "exponent": 6 + "denom": "reth", + "exponent": 18 } ], - "base": "ibc/3BEA25F3A13A9C17476C821CCF8ECCC84351DDB7B1B06B98654C3B4427F785CC", - "name": "Juno", - "display": "juno", - "symbol": "JUNO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg" - }, - "coingecko_id": "juno-network", + "base": "ibc/351D4A530C080FEC850B941610E71D465E0596146253C6CC4E835DF7D433DE3F", + "name": "Rocket Pool Ether", + "display": "reth", + "symbol": "rETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "ujuno", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "reth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-15" + "channel_id": "channel-2" } } ] @@ -25283,106 +28771,101 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/4FC32EBA615637B0420D6D62548C5787A2150B4D52E59486D8A3A6757729ECFC", + "denom": "ibc/B1ADD78E630072DA77D050CA6EDD6A7B551281CBA8368F631EB4420CB080D0BE", "exponent": 0, "aliases": [ - "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9" + "sfrxeth-wei" ] }, { - "denom": "atom", - "exponent": 6 + "denom": "sfrxeth", + "exponent": 18 } ], - "type_asset": "ics20", - "base": "ibc/4FC32EBA615637B0420D6D62548C5787A2150B4D52E59486D8A3A6757729ECFC", - "name": "ATOM on Juno", - "display": "atom", - "symbol": "ATOM", + "base": "ibc/B1ADD78E630072DA77D050CA6EDD6A7B551281CBA8368F631EB4420CB080D0BE", + "name": "Staked Frax Ether", + "display": "sfrxeth", + "symbol": "sfrxETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "sfrxeth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-15" + "channel_id": "channel-2" } } ] }, { - "description": "Bored APE IBC club token", - "type_asset": "cw20", - "address": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", "denom_units": [ { - "denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "exponent": 0 + "denom": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "exponent": 0, + "aliases": [ + "wsteth-wei" + ] }, { - "denom": "banana", - "exponent": 6 + "denom": "wsteth", + "exponent": 18 } ], - "base": "ibc/9926F4527D852F643A0789C6739A8F60EA61207455C0009AA6721A96990B00A2", - "name": "Banana Token", - "display": "banana", - "symbol": "BANANA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png" - }, + "base": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "name": "Wrapped Lido Staked Ether", + "display": "wsteth", + "symbol": "wstETH", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_name": "juno" + "channel_id": "channel-109", + "base_denom": "wsteth-wei", + "chain_name": "axelar" }, "chain": { - "channel_id": "channel-15" + "channel_id": "channel-2" } } ] }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ { - "denom": "ibc/C98B2A0A286432E3B637925ECED1EC1BF378C74ABC1D5780C7DAF7483D4C87FF", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "exponent": 0, "aliases": [ - "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A" + "uatom" ] }, { - "denom": "neta", + "denom": "atom", "exponent": 6 } ], - "base": "ibc/C98B2A0A286432E3B637925ECED1EC1BF378C74ABC1D5780C7DAF7483D4C87FF", - "name": "Neta", - "display": "neta", - "symbol": "NETA", + "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "name": "Cosmos Hub Atom", + "display": "atom", + "symbol": "ATOM", "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.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" }, - "coingecko_id": "neta", + "coingecko_id": "cosmos", "traces": [ { "type": "ibc", "counterparty": { - "channel_id": "channel-9", - "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "chain_name": "juno" + "channel_id": "channel-621", + "base_denom": "uatom", + "chain_name": "cosmoshub" }, "chain": { - "channel_id": "channel-15" + "channel_id": "channel-0" } } ] @@ -25391,7 +28874,7 @@ const asset_lists: AssetList[] = [ "description": "The native token of Osmosis", "denom_units": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "exponent": 0, "aliases": [ "uosmo" @@ -25402,7 +28885,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "name": "Osmosis", "display": "osmo", "symbol": "OSMO", @@ -25419,12 +28902,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", + "channel_id": "channel-1411", "base_denom": "uosmo", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] @@ -25432,7 +28915,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "exponent": 0, "aliases": [ "uion" @@ -25443,7 +28926,7 @@ const asset_lists: AssetList[] = [ "exponent": 6 } ], - "base": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "name": "Ion", "display": "ion", "symbol": "ION", @@ -25459,12 +28942,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", + "channel_id": "channel-1411", "base_denom": "uion", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] @@ -25472,7 +28955,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "exponent": 0, "aliases": [ "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" @@ -25484,7 +28967,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", - "base": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", "name": "IBCX Core ", "display": "ibcx", "symbol": "IBCX", @@ -25495,12 +28978,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", + "channel_id": "channel-1411", "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] @@ -25508,7 +28991,7 @@ const asset_lists: AssetList[] = [ { "denom_units": [ { - "denom": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "exponent": 0, "aliases": [ "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" @@ -25520,7 +29003,7 @@ const asset_lists: AssetList[] = [ } ], "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", - "base": "ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", "name": "stIBCX Core ", "display": "stibcx", "symbol": "stIBCX", @@ -25532,12 +29015,12 @@ const asset_lists: AssetList[] = [ { "type": "ibc", "counterparty": { - "channel_id": "channel-37", + "channel_id": "channel-1411", "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_name": "osmosis" }, "chain": { - "channel_id": "channel-0" + "channel_id": "channel-1" } } ] @@ -25887,6 +29370,158 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native staking and governance token of Kava", + "denom_units": [ + { + "denom": "ibc/A724CE2BEAEBE04851510EEA6DC436ED3A824D1681AF14E7A706C66E9F39D741", + "exponent": 0, + "aliases": [ + "ukava" + ] + }, + { + "denom": "kava", + "exponent": 6 + } + ], + "base": "ibc/A724CE2BEAEBE04851510EEA6DC436ED3A824D1681AF14E7A706C66E9F39D741", + "name": "Kava", + "display": "kava", + "symbol": "KAVA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png" + }, + "coingecko_id": "kava", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-117", + "base_denom": "ukava", + "chain_name": "kava" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "description": "Governance token of Kava Lend Protocol", + "denom_units": [ + { + "denom": "ibc/D6F762AC7D6A4DE34561333C322A942ABDE9A6963B51091A002ED76E7F99D32F", + "exponent": 0, + "aliases": [ + "hard" + ] + }, + { + "denom": "HARD", + "exponent": 6 + } + ], + "base": "ibc/D6F762AC7D6A4DE34561333C322A942ABDE9A6963B51091A002ED76E7F99D32F", + "name": "Hard", + "display": "HARD", + "symbol": "HARD", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg" + }, + "coingecko_id": "kava-lend", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-117", + "base_denom": "hard", + "chain_name": "kava" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "description": "Governance token of Kava Swap Protocol", + "denom_units": [ + { + "denom": "ibc/8BF6366F2FF51133B3DF3E60E8E04D7AC57641343881F9EFECA14257FF10B39E", + "exponent": 0, + "aliases": [ + "swp" + ] + }, + { + "denom": "SWP", + "exponent": 6 + } + ], + "base": "ibc/8BF6366F2FF51133B3DF3E60E8E04D7AC57641343881F9EFECA14257FF10B39E", + "name": "Swap", + "display": "SWP", + "symbol": "SWP", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg" + }, + "coingecko_id": "kava-swap", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-117", + "base_denom": "swp", + "chain_name": "kava" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, + { + "description": "The native stablecoin of Kava", + "denom_units": [ + { + "denom": "ibc/3BA75999F4DDD909ECC2A7991204BA87815A4C23BA0B9F5CCB38726D478C3D0C", + "exponent": 0, + "aliases": [ + "usdx" + ] + }, + { + "denom": "USDX", + "exponent": 6 + } + ], + "base": "ibc/3BA75999F4DDD909ECC2A7991204BA87815A4C23BA0B9F5CCB38726D478C3D0C", + "name": "USDX", + "display": "USDX", + "symbol": "USDX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png" + }, + "coingecko_id": "usdx", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-117", + "base_denom": "usdx", + "chain_name": "kava" + }, + "chain": { + "channel_id": "channel-83" + } + } + ] + }, { "description": "The native token of Osmosis", "denom_units": [ @@ -29850,6 +33485,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/0F3A724673F682CF7812D0ED1A0C41D344C09E94C939E79D12712DC7C0676E80", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/0F3A724673F682CF7812D0ED1A0C41D344C09E94C939E79D12712DC7C0676E80", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-3", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-102" + } + } + ] + }, { "description": "The native token of Nois", "denom_units": [ @@ -34698,6 +38370,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-210" + } + } + ] + }, { "description": "The permissioned staking asset for Noble Chain", "denom_units": [ @@ -36999,6 +40708,44 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native EVM, governance and staking token of the Evmos Hub", + "denom_units": [ + { + "denom": "ibc/31E579FA24701B39270DF7E9B8640DEF9CC10CB94CE1A8845CD04C2628A7C3A2", + "exponent": 0, + "aliases": [ + "aevmos" + ] + }, + { + "denom": "evmos", + "exponent": 18 + } + ], + "base": "ibc/31E579FA24701B39270DF7E9B8640DEF9CC10CB94CE1A8845CD04C2628A7C3A2", + "name": "Evmos", + "display": "evmos", + "symbol": "EVMOS", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png" + }, + "coingecko_id": "evmos", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-83", + "base_denom": "aevmos", + "chain_name": "evmos" + }, + "chain": { + "channel_id": "channel-117" + } + } + ] + }, { "description": "The native staking and governance token of the Kujira chain.", "denom_units": [ @@ -37931,6 +41678,48 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native token of Archway network", + "denom_units": [ + { + "denom": "ibc/950993C6DA64F5A60A48D65A18CAB2D8190DE2DC1B861E70E8B03C61F7D5FBDC", + "exponent": 0, + "aliases": [ + "aarch" + ] + }, + { + "denom": "uarch", + "exponent": 12 + }, + { + "denom": "arch", + "exponent": 18 + } + ], + "base": "ibc/950993C6DA64F5A60A48D65A18CAB2D8190DE2DC1B861E70E8B03C61F7D5FBDC", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + }, + "coingecko_id": "archway", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-11", + "base_denom": "aarch", + "chain_name": "archway" + }, + "chain": { + "channel_id": "channel-99" + } + } + ] + }, { "description": "The native token of Asset Mantle", "denom_units": [ @@ -40374,6 +44163,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/2661BA7AD557526A9BE35C7576EEF8E82B14A01ECCE36AD139979FD683D37C9D", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/2661BA7AD557526A9BE35C7576EEF8E82B14A01ECCE36AD139979FD683D37C9D", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-8", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-58" + } + } + ] + }, { "description": "The native token of Neutron chain.", "denom_units": [ @@ -51412,6 +55238,48 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native token of Archway network", + "denom_units": [ + { + "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "exponent": 0, + "aliases": [ + "aarch" + ] + }, + { + "denom": "uarch", + "exponent": 12 + }, + { + "denom": "arch", + "exponent": 18 + } + ], + "base": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "name": "Archway", + "display": "arch", + "symbol": "ARCH", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg" + }, + "coingecko_id": "archway", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "aarch", + "chain_name": "archway" + }, + "chain": { + "channel_id": "channel-1429" + } + } + ] + }, { "description": "The native token of Arkhadian", "denom_units": [ @@ -54260,6 +58128,76 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native staking and governance token of Centauri.", + "denom_units": [ + { + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "exponent": 0, + "aliases": [ + "ppica" + ] + }, + { + "denom": "pica", + "exponent": 12 + } + ], + "base": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-3", + "base_denom": "ppica", + "chain_name": "composable" + }, + "chain": { + "channel_id": "channel-1279" + } + } + ] + }, + { + "description": "The native staking and governance token of Kusama Relay Chain.", + "denom_units": [ + { + "denom": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "exponent": 0, + "aliases": [ + "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9" + ] + }, + { + "denom": "ksm", + "exponent": 12 + } + ], + "type_asset": "ics20", + "base": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "name": "KSM", + "display": "ksm", + "symbol": "KSM", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-3", + "base_denom": "ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9", + "chain_name": "composable" + }, + "chain": { + "channel_id": "channel-1279" + } + } + ] + }, { "description": "The native staking and governance token of the Cosmos Hub.", "denom_units": [ @@ -54874,6 +58812,42 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native staking and governance token of Empower.", + "denom_units": [ + { + "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "exponent": 0, + "aliases": [ + "umpwr" + ] + }, + { + "denom": "mpwr", + "exponent": 6 + } + ], + "base": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "name": "MPWR", + "display": "mpwr", + "symbol": "MPWR", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "umpwr", + "chain_name": "empowerchain" + }, + "chain": { + "channel_id": "channel-1411" + } + } + ] + }, { "description": "The native EVM, governance and staking token of the Evmos Hub", "denom_units": [ @@ -56640,6 +60614,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-5", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-642" + } + } + ] + }, { "description": "The native token of Neutron chain.", "denom_units": [ @@ -56853,6 +60864,7 @@ const asset_lists: AssetList[] = [ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg", "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png" }, + "coingecko_id": "nolus", "traces": [ { "type": "ibc", @@ -57667,6 +61679,80 @@ const asset_lists: AssetList[] = [ "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg" } }, + { + "description": "The native currency of the Realio Network.", + "denom_units": [ + { + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "exponent": 0, + "aliases": [ + "ario" + ] + }, + { + "denom": "rio", + "exponent": 18 + } + ], + "base": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "name": "Realio Network", + "display": "rio", + "symbol": "RIO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png" + }, + "coingecko_id": "realio-network", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "ario", + "chain_name": "realio" + }, + "chain": { + "channel_id": "channel-1424" + } + } + ] + }, + { + "description": "A hybrid equity token that represent ownership of the Realio Ecosystem and provides utility functions on the Network.", + "denom_units": [ + { + "denom": "ibc/F82E97B58F45D32AE2199AE8AD9979FFD35CDC823BB3EB34C36349E374A8EFE3", + "exponent": 0, + "aliases": [ + "arst" + ] + }, + { + "denom": "rst", + "exponent": 18 + } + ], + "base": "ibc/F82E97B58F45D32AE2199AE8AD9979FFD35CDC823BB3EB34C36349E374A8EFE3", + "name": "Realio Security Token", + "display": "rst", + "symbol": "RST", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png" + }, + "coingecko_id": "", + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1", + "base_denom": "arst", + "chain_name": "realio" + }, + "chain": { + "channel_id": "channel-1424" + } + } + ] + }, { "description": "REBUS, the native coin of the Rebus chain.", "denom_units": [ @@ -66056,6 +70142,166 @@ const asset_lists: AssetList[] = [ } ] }, + { + "chain_name": "realio", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6 + } + ], + "base": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1424", + "base_denom": "uosmo", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "exponent": 0, + "aliases": [ + "uion" + ] + }, + { + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1424", + "base_denom": "uion", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "exponent": 0, + "aliases": [ + "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx" + ] + }, + { + "denom": "ibcx", + "exponent": 6 + } + ], + "address": "osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm", + "base": "ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37", + "name": "IBCX Core ", + "display": "ibcx", + "symbol": "IBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1424", + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "exponent": 0, + "aliases": [ + "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx" + ] + }, + { + "denom": "stibcx", + "exponent": 6 + } + ], + "address": "osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k", + "base": "ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A", + "name": "stIBCX Core ", + "display": "stibcx", + "symbol": "stIBCX", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-1424", + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "chain_name": "osmosis" + }, + "chain": { + "channel_id": "channel-1" + } + } + ] + } + ] + }, { "chain_name": "rebus", "assets": [ @@ -69753,6 +73999,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-4", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-57" + } + } + ] + }, { "description": "The native token of Osmosis", "denom_units": [ @@ -80415,6 +84698,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-0", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-86" + } + } + ] + }, { "description": "The permissioned staking asset for Noble Chain", "denom_units": [ @@ -81472,6 +85792,94 @@ const asset_lists: AssetList[] = [ } ] }, + { + "chain_name": "composabletestnet", + "assets": [ + { + "description": "The native token of Osmosis", + "denom_units": [ + { + "denom": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", + "exponent": 0, + "aliases": [ + "uosmo" + ] + }, + { + "denom": "osmo", + "exponent": 6, + "aliases": [] + } + ], + "base": "ibc/4646A60D9F2EC44B281852B38FE269E2D0870DA7A3BBD805DB5F9CD7AF0D6280", + "name": "Osmosis", + "display": "osmo", + "symbol": "OSMO", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + }, + "coingecko_id": "osmosis", + "keywords": [ + "dex", + "staking" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-329", + "base_denom": "uosmo", + "chain_name": "osmosistestnet5" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + }, + { + "denom_units": [ + { + "denom": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", + "exponent": 0, + "aliases": [ + "uion" + ] + }, + { + "denom": "ion", + "exponent": 6 + } + ], + "base": "ibc/B6CDF685593B482BAE58A7CDD6C1F1AAAA87F9D06752B80721B161BB8F78BAF2", + "name": "Ion", + "display": "ion", + "symbol": "ION", + "logo_URIs": { + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg" + }, + "coingecko_id": "ion", + "keywords": [ + "memecoin" + ], + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-329", + "base_denom": "uion", + "chain_name": "osmosistestnet5" + }, + "chain": { + "channel_id": "channel-11" + } + } + ] + } + ] + }, { "chain_name": "cosmoshubtestnet", "assets": [ @@ -83304,6 +87712,43 @@ const asset_lists: AssetList[] = [ } ] }, + { + "description": "The native staking and governance token of the Composable testnet.", + "denom_units": [ + { + "denom": "ibc/27689601842A99059DFD79EB0A34A089FC2F7337491B5555C176400A8FA7F2A4", + "exponent": 0, + "aliases": [ + "ppica" + ] + }, + { + "denom": "pica", + "exponent": 12 + } + ], + "base": "ibc/27689601842A99059DFD79EB0A34A089FC2F7337491B5555C176400A8FA7F2A4", + "name": "Pica", + "display": "pica", + "symbol": "PICA", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/composable.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-11", + "base_denom": "ppica", + "chain_name": "composabletestnet" + }, + "chain": { + "channel_id": "channel-329" + } + } + ] + }, { "description": "The native staking and governance token of the Theta testnet version of the Cosmos Hub.", "denom_units": [ @@ -84650,6 +89095,43 @@ const asset_lists: AssetList[] = [ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png" } }, + { + "description": "RAC", + "denom_units": [ + { + "denom": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", + "exponent": 0, + "aliases": [ + "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac" + ] + }, + { + "denom": "RAC", + "exponent": 6 + } + ], + "base": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", + "name": "RAC", + "display": "RAC", + "symbol": "RAC", + "logo_URIs": { + "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg", + "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png" + }, + "traces": [ + { + "type": "ibc", + "counterparty": { + "channel_id": "channel-0", + "base_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_name": "migaloo" + }, + "chain": { + "channel_id": "channel-86" + } + } + ] + }, { "description": "The permissioned staking asset for Noble Chain", "denom_units": [ diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index f9cdc2114..3fa339a02 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit f9cdc211425e506d596a0acc5c71e6d9493c457f +Subproject commit 3fa339a0249161666f204874d28152da4b025df9 diff --git a/packages/chain-registry/src/assets.ts b/packages/chain-registry/src/assets.ts index 8d5d317b4..86792c557 100644 --- a/packages/chain-registry/src/assets.ts +++ b/packages/chain-registry/src/assets.ts @@ -8686,6 +8686,264 @@ const assets: AssetList[] = [ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png' }, coingecko_id: 'nolus' + }, + { + description: + 'axlUSDC transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', + name: 'axlUSDC', + display: 'usdc', + symbol: 'axlUSDC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-208/uusdc' + } + } + ] + }, + { + description: + 'OSMO transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: 'uosmo', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/uosmo' + } + } + ] + }, + { + description: + 'stOSMO transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', + exponent: 0, + aliases: ['stuosmo'] + }, + { + denom: 'stosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', + name: 'Osmosis', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-326/stuosmo' + } + } + ] + }, + { + description: + 'ATOM transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', + name: 'Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-0/uatom' + } + } + ] + }, + { + description: + 'stATOM transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', + exponent: 0, + aliases: ['ustatom'] + }, + { + denom: 'statom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', + name: 'stATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-326/stuatom' + } + } + ] + }, + { + description: + 'WETH transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', + exponent: 0, + aliases: ['weth-wei'] + }, + { + denom: 'weth', + exponent: 18, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', + name: 'WETH', + display: 'weth', + symbol: 'WETH', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-208/weth-wei' + } + } + ] + }, + { + description: + 'WBTC transferred from the Osmosis mainnet that is supported on the Nolus chain', + denom_units: [ + { + denom: + 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', + exponent: 0, + aliases: ['wbtc-satoshi'] + }, + { + denom: 'wbtc', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', + name: 'WBTC', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'osmosis', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + channel_id: 'channel-783' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/transfer/channel-208/wbtc-satoshi' + } + } + ] } ] }, @@ -9070,6 +9328,204 @@ const assets: AssetList[] = [ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg', png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png' } + }, + { + denom_units: [ + { + denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'axelar', + base_denom: 'uusdc', + channel_id: 'channel-3' + }, + chain: { + channel_id: 'channel-208', + path: 'transfer/channel-208/uusdc' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + exponent: 0, + aliases: ['stuosmo'] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + name: 'stOSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'stride', + base_denom: 'stuosmo', + channel_id: 'channel-5' + }, + chain: { + channel_id: 'channel-326', + path: 'transfer/channel-326/stuosmo' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'cosmoshub', + base_denom: 'uatom', + channel_id: 'channel-141' + }, + chain: { + channel_id: 'channel-0', + path: 'transfer/channel-0/uatom' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + exponent: 0, + aliases: ['stuatom'] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + name: 'stATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'stride', + base_denom: 'stuatom', + channel_id: 'channel-5' + }, + chain: { + channel_id: 'channel-326', + path: 'transfer/channel-326/stuatom' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + exponent: 0, + aliases: ['weth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'axelar', + base_denom: 'weth-wei', + channel_id: 'channel-3' + }, + chain: { + channel_id: 'channel-208', + path: 'transfer/channel-208/weth-wei' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + exponent: 0, + aliases: ['wbtc-satoshi'] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi', + channel_id: 'channel-3' + }, + chain: { + channel_id: 'channel-208', + path: 'transfer/channel-208/wbtc-satoshi' + } + } + ] } ] }, @@ -9351,8 +9807,7 @@ const assets: AssetList[] = [ display: 'qsr', symbol: 'QSR', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' } }, { diff --git a/packages/chain-registry/src/chains.ts b/packages/chain-registry/src/chains.ts index 2b1b5efa2..7f69394a6 100644 --- a/packages/chain-registry/src/chains.ts +++ b/packages/chain-registry/src/chains.ts @@ -1429,6 +1429,10 @@ const chains: Chain[] = [ }, apis: { rpc: [ + { + address: 'https://rpc-archway.cosmos-spaces.cloud', + provider: 'Cosmos Spaces' + }, { address: 'https://rpc.mainnet.archway.io', provider: 'Archway Foundation' @@ -1503,6 +1507,10 @@ const chains: Chain[] = [ address: 'https://archway.api.kjnodes.com', provider: 'kjnodes' }, + { + address: 'https://api-archway.cosmos-spaces.cloud', + provider: 'Cosmos Spaces' + }, { address: 'https://api-archway.cryptech.com.ua', provider: 'cryptech' @@ -1537,6 +1545,10 @@ const chains: Chain[] = [ } ], grpc: [ + { + address: 'grpc-archway.cosmos-spaces.cloud:2490', + provider: 'Cosmos Spaces' + }, { address: 'grpc.mainnet.archway.io:443', provider: 'Archway Foundation' @@ -5143,6 +5155,10 @@ const chains: Chain[] = [ address: 'grpc.c4e.nodestake.top:443', provider: 'NodeStake' }, + { + address: 'c4e.grpc.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'grpc-c4e.takeshi.team:443', provider: 'TAKESHI' @@ -5707,10 +5723,6 @@ const chains: Chain[] = [ { address: 'https://chihuahua-mainnet-lcd.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' - }, - { - address: 'http://chihuahua.api.staking-explorer.com', - provider: 'chihuahua.staking-explorer.com' } ], grpc: [ @@ -9290,6 +9302,11 @@ const chains: Chain[] = [ id: 'ebc272824924ea1a27ea3183dd0b9ba713494f83', address: 'empowerchain-mainnet-peer.autostake.com:27326', provider: 'AutoStake 🛡️ Slash Protected' + }, + { + id: '178718a993161cc20f9d0de2bbef9a3aec5c1d3d', + address: 'rpc.empower.indonode.net:52656', + provider: 'Indonode' } ] }, @@ -9314,6 +9331,10 @@ const chains: Chain[] = [ { address: 'https://rpc-empowerchain.mzonder.com:443', provider: 'MZONDER' + }, + { + address: 'https://rpc.empower.indonode.net:443', + provider: 'Indonode' } ], rest: [ @@ -9336,6 +9357,10 @@ const chains: Chain[] = [ { address: 'https://api-empowerchain.mzonder.com:443', provider: 'MZONDER' + }, + { + address: 'https://api.empower.indonode.net:443', + provider: 'Indonode' } ], grpc: [ @@ -12234,6 +12259,10 @@ const chains: Chain[] = [ address: 'https://rpc-injective-ia.cosmosia.notional.ventures/', provider: 'Notional' }, + { + address: 'https://rpc-cached-injective.cosmos-spaces.cloud', + provider: 'Cosmos Spaces' + }, { address: 'https://injective-mainnet-rpc.autostake.com:443', provider: 'AutoStake.com' @@ -12284,6 +12313,10 @@ const chains: Chain[] = [ address: 'https://rest.injective.posthuman.digital:443', provider: 'POSTHUMAN ꝏ DVS' }, + { + address: 'https://api-injective.cosmos-spaces.cloud', + provider: 'Cosmos Spaces' + }, { address: 'https://injective-mainnet-lcd.autostake.com:443', provider: 'AutoStake.com' @@ -12330,6 +12363,10 @@ const chains: Chain[] = [ address: 'injective-mainnet-grpc.autostake.com:443', provider: 'AutoStake.com' }, + { + address: 'grpc-injective.cosmos-spaces.cloud:9900', + provider: 'Cosmos Spaces' + }, { address: 'grpc.injective.posthuman.digital:80', provider: 'POSTHUMAN ꝏ DVS' @@ -20523,8 +20560,7 @@ const chains: Chain[] = [ ] }, logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' }, peers: { seeds: [ @@ -21593,6 +21629,10 @@ const chains: Chain[] = [ address: 'https://api.rebuschain.com:26657/', provider: 'Rebuschain' }, + { + address: 'https://rebus.rpc.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://rebus.rpc.manticore.team:443/', provider: 'MantiCore' @@ -21655,6 +21695,10 @@ const chains: Chain[] = [ address: 'https://api.rebuschain.com:1317/', provider: 'Rebuschain' }, + { + address: 'https://rebus.api.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://rebus.api.manticore.team:443/', provider: 'MantiCore' @@ -21709,6 +21753,10 @@ const chains: Chain[] = [ address: 'rebus.grpc.manticore.team:443', provider: 'MantiCore' }, + { + address: 'rebus.grpc.bccnodes.com:14090', + provider: 'BccNodes' + }, { address: 'grpc.rebus.nodestake.top:443', provider: 'NodeStake' @@ -21746,6 +21794,11 @@ const chains: Chain[] = [ url: 'https://explorer.nodestake.top/rebus', tx_page: 'https://explorer.nodestake.top/rebus/tx/${txHash}' }, + { + kind: 'BccNodes', + url: 'https://explorer.bccnodes.com/rebus-M', + tx_page: 'https://explorer.bccnodes.com/rebus-M/tx/${txHash}' + }, { kind: 'Brochain', url: 'https://explorer.brocha.in/rebus', @@ -24158,6 +24211,10 @@ const chains: Chain[] = [ }, apis: { rpc: [ + { + address: 'https://stride.rpc.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://stride-rpc.polkachu.com/', provider: 'Polkachu' @@ -24236,6 +24293,10 @@ const chains: Chain[] = [ } ], rest: [ + { + address: 'https://stride.api.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://stride-api.polkachu.com/', provider: 'Polkachu' @@ -24314,6 +24375,10 @@ const chains: Chain[] = [ } ], grpc: [ + { + address: 'stride.grpc.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'stride-grpc.polkachu.com:12290', provider: 'Polkachu' @@ -24357,6 +24422,13 @@ const chains: Chain[] = [ ] }, explorers: [ + { + kind: 'BccNodes', + url: 'https://explorer.bccnodes.com/stride-M', + tx_page: 'https://explorer.bccnodes.com/stride-M/tx/${txHash}', + account_page: + 'https://explorer.bccnodes.com/stride-M/account/${accountAddress}' + }, { kind: 'EZ Staking Tools', url: 'https://ezstaking.tools/stride', @@ -25504,8 +25576,14 @@ const chains: Chain[] = [ }, codebase: { git_repo: 'https://github.com/terra-money/core/', - recommended_version: 'v2.3.5', - compatible_versions: ['v2.3.0', 'v2.3.1', 'v2.3.2', 'v2.3.4', 'v2.3.5'], + recommended_version: 'v2.4.1', + compatible_versions: ['v2.4.1'], + binaries: { + 'linux/amd64': + 'https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Linux_x86_64.tar.gz?checksum=sha256:e05b85ae2eac5df886f4f9d0ecf719b82ebe4da4fc59cae93a34af7c3e89ddfb', + 'darwin/amd64': + 'https://github.com/terra-money/core/releases/download/v2.1.4/terra_2.1.4_Darwin_x86_64.tar.gz?checksum=sha256:4b66ebf800cb903f7b6c07686636eff43e686f5956c9fadc307f077afd7f23bb' + }, genesis: { name: 'v2.0', genesis_url: 'https://tfl-phoenix-1.s3.amazonaws.com/genesis.json' @@ -25590,7 +25668,7 @@ const chains: Chain[] = [ cosmwasm_version: 'v0.30.0', ibc_go_version: 'v6.1.1', consensus: { - type: 'cometbft', + type: 'tendermint', version: 'v0.34.27' }, binaries: { @@ -25598,19 +25676,29 @@ const chains: Chain[] = [ 'https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_arm64.tar.gz?checksum=sha256:93b0c508e16f779b93f0e76629ab247ddaf5fa0db96573405b3b2b11e3eb6859', 'linux/amd64': 'https://github.com/terra-money/core/releases/download/v2.3.5/terra_2.3.5_Linux_x86_64.tar.gz?checksum=sha256:8c3ac7392436b102dcdd63fd275fa73b1e0201e65e420af71954782cee682ac6' - } + }, + next_version_name: 'v2.4' }, { name: 'v2.4', - tag: 'v2.4.0', + tag: 'v2.4.1', + proposal: 4737, + height: 5994365, cosmos_sdk_version: 'v0.46.11', cosmwasm_enabled: true, cosmwasm_version: 'v0.30.0', ibc_go_version: 'v6.1.1', consensus: { - type: 'cometbft', + type: 'tendermint', version: 'v0.34.27' - } + }, + binaries: { + 'linux/arm64': + 'https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_arm64.tar.gz', + 'linux/amd64': + 'https://github.com/terra-money/core/releases/download/v2.4.1/terra_2.4.1_Linux_x86_64.tar.gz' + }, + next_version_name: '' } ] }, @@ -27777,8 +27865,8 @@ const chains: Chain[] = [ }, codebase: { git_repo: 'https://github.com/elys-network/elys', - recommended_version: 'v0.4.0', - compatible_versions: ['v0.4.0'], + recommended_version: 'v0.8.0', + compatible_versions: ['v0.8.0'], cosmos_sdk_version: 'v0.46', consensus: { type: 'tendermint', @@ -27824,6 +27912,78 @@ const chains: Chain[] = [ 'linux/amd64': 'https://github.com/elys-network/elys/releases/download/v0.4.0/elys._v0.4.0_linux_amd64.tar.gz' } + }, + { + name: 'v0.5.0', + recommended_version: 'v0.5.0', + compatible_versions: ['v0.5.0'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.0_linux_amd64.tar.gz' + } + }, + { + name: 'v0.5.1', + recommended_version: 'v0.5.1', + compatible_versions: ['v0.5.1'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.5.1/elys._v0.5.1_linux_amd64.tar.gz' + } + }, + { + name: 'v0.5.2', + recommended_version: 'v0.5.2', + compatible_versions: ['v0.5.2'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.5.0/elys._v0.5.2_linux_amd64.tar.gz' + } + }, + { + name: 'v0.5.3', + recommended_version: 'v0.5.3', + compatible_versions: ['v0.5.3'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.5.3/elys._v0.5.3_linux_amd64.tar.gz' + } + }, + { + name: 'v0.5.4', + recommended_version: 'v0.5.4', + compatible_versions: ['v0.5.4'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.5.4/elys._v0.5.4_linux_amd64.tar.gz' + } + }, + { + name: 'v0.6.0', + recommended_version: 'v0.6.0', + compatible_versions: ['v0.6.0'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.6.0/elys._v0.6.0_linux_amd64.tar.gz' + } + }, + { + name: 'v0.7.0', + recommended_version: 'v0.7.0', + compatible_versions: ['v0.7.0'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.7.0/elys._v0.7.0_linux_amd64.tar.gz' + } + }, + { + name: 'v0.8.0', + recommended_version: 'v0.8.0', + compatible_versions: ['v0.8.0'], + binaries: { + 'linux/amd64': + 'https://github.com/elys-network/elys/releases/download/v0.8.0/elys._v0.8.0_linux_amd64.tar.gz' + } } ] }, @@ -34661,6 +34821,10 @@ const chains: Chain[] = [ address: 'https://uptick-rpc.brocha.in:443', provider: 'Brochain' }, + { + address: 'https://uptick.rpc.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://rpc.uptick.nodestake.top', provider: 'NodeStake' @@ -34699,6 +34863,10 @@ const chains: Chain[] = [ address: 'https://uptick-rest.brocha.in:443', provider: 'Brochain' }, + { + address: 'https://uptick.api.bccnodes.com:443', + provider: 'BccNodes' + }, { address: 'https://api.uptick.nodestake.top', provider: 'NodeStake' @@ -34737,6 +34905,10 @@ const chains: Chain[] = [ address: 'https://grpc.uptick.nodestake.top', provider: 'NodeStake' }, + { + address: 'uptick.rpc.bccnodes.com:9690', + provider: 'BccNodes' + }, { address: 'uptick.grpc.kjnodes.com:11590', provider: 'kjnodes' @@ -34784,6 +34956,11 @@ const chains: Chain[] = [ url: 'https://explorer.nodestake.top/uptick', tx_page: 'https://explorer.nodestake.top/uptick/tx/${txHash}' }, + { + kind: 'BccNodes Explorer', + url: 'https://explorer.bccnodes.com/uptick-M', + tx_page: 'https://explorer.bccnodes.com/uptick-M/tx/${txHash}' + }, { kind: '🔥STAVR🔥 Explorer', url: 'https://explorer.stavr.tech/uptick-mainnet', diff --git a/packages/juno/src/asset_list.ts b/packages/juno/src/asset_list.ts index 2863645cd..1ce1612cd 100644 --- a/packages/juno/src/asset_list.ts +++ b/packages/juno/src/asset_list.ts @@ -2589,6 +2589,45 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' } }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + base: 'ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-210' + } + } + ] + }, { description: 'The permissioned staking asset for Noble Chain', denom_units: [ diff --git a/packages/juno/src/chain.ts b/packages/juno/src/chain.ts index 166562a1a..2fc617738 100644 --- a/packages/juno/src/chain.ts +++ b/packages/juno/src/chain.ts @@ -276,6 +276,10 @@ const chain: Chain = { { address: 'https://rpc-juno.validavia.me', provider: 'Validavia' + }, + { + address: 'https://juno-rpc.w3coins.io', + provider: 'w3coins' } ], rest: [ @@ -370,6 +374,10 @@ const chain: Chain = { { address: 'https://lcd-juno.validavia.me', provider: 'Validavia' + }, + { + address: 'https://juno-api.w3coins.io', + provider: 'w3coins' } ], grpc: [ @@ -420,6 +428,10 @@ const chain: Chain = { { address: 'grpc-juno-01.stakeflow.io:2302', provider: 'Stakeflow' + }, + { + address: 'juno-grpc.w3coins.io:12690', + provider: 'w3coins' } ] }, diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index 7610a69e9..e2dea3044 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -305,6 +305,47 @@ const asset_list: AssetList = { } ] }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + exponent: 0, + aliases: ['aarch'] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + base: 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + coingecko_id: 'archway', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'aarch', + chain_name: 'archway' + }, + chain: { + channel_id: 'channel-1429' + } + } + ] + }, { description: 'The native token of Arkhadian', denom_units: [ @@ -3047,6 +3088,78 @@ const asset_list: AssetList = { } ] }, + { + description: 'The native staking and governance token of Centauri.', + denom_units: [ + { + denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + exponent: 0, + aliases: ['ppica'] + }, + { + denom: 'pica', + exponent: 12 + } + ], + base: 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + name: 'Pica', + display: 'pica', + symbol: 'PICA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3', + base_denom: 'ppica', + chain_name: 'composable' + }, + chain: { + channel_id: 'channel-1279' + } + } + ] + }, + { + description: + 'The native staking and governance token of Kusama Relay Chain.', + denom_units: [ + { + denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + exponent: 0, + aliases: [ + 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + name: 'KSM', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3', + base_denom: + 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9', + chain_name: 'composable' + }, + chain: { + channel_id: 'channel-1279' + } + } + ] + }, { description: 'The native staking and governance token of the Cosmos Hub.', denom_units: [ @@ -3649,6 +3762,41 @@ const asset_list: AssetList = { } ] }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + exponent: 0, + aliases: ['umpwr'] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + base: 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + name: 'MPWR', + display: 'mpwr', + symbol: 'MPWR', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'umpwr', + chain_name: 'empowerchain' + }, + chain: { + channel_id: 'channel-1411' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Evmos Hub', @@ -5414,6 +5562,45 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' } }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + base: 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-642' + } + } + ] + }, { description: 'The native token of Neutron chain.', denom_units: [ @@ -5623,6 +5810,7 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg', png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png' }, + coingecko_id: 'nolus', traces: [ { type: 'ibc', @@ -6423,6 +6611,79 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' } }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + exponent: 0, + aliases: ['ario'] + }, + { + denom: 'rio', + exponent: 18 + } + ], + base: 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png' + }, + coingecko_id: 'realio-network', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'ario', + chain_name: 'realio' + }, + chain: { + channel_id: 'channel-1424' + } + } + ] + }, + { + description: + 'A hybrid equity token that represent ownership of the Realio Ecosystem and provides utility functions on the Network.', + denom_units: [ + { + denom: + 'ibc/F82E97B58F45D32AE2199AE8AD9979FFD35CDC823BB3EB34C36349E374A8EFE3', + exponent: 0, + aliases: ['arst'] + }, + { + denom: 'rst', + exponent: 18 + } + ], + base: 'ibc/F82E97B58F45D32AE2199AE8AD9979FFD35CDC823BB3EB34C36349E374A8EFE3', + name: 'Realio Security Token', + display: 'rst', + symbol: 'RST', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rst.png' + }, + coingecko_id: '', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'arst', + chain_name: 'realio' + }, + chain: { + channel_id: 'channel-1424' + } + } + ] + }, { description: 'REBUS, the native coin of the Rebus chain.', denom_units: [ diff --git a/packages/osmosis/src/chain.ts b/packages/osmosis/src/chain.ts index 0c4a6e6ae..7d54bdbff 100644 --- a/packages/osmosis/src/chain.ts +++ b/packages/osmosis/src/chain.ts @@ -37,22 +37,22 @@ const chain: Chain = { }, codebase: { git_repo: 'https://github.com/osmosis-labs/osmosis', - recommended_version: 'v15.1.0', - compatible_versions: ['v15.1.0', 'v15.0.0'], + recommended_version: 'v15.2.0', + compatible_versions: ['v15.0.0', 'v15.1.0', 'v15.1.2', 'v15.2.0'], binaries: { 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-amd64?checksum=sha256:f16f901dfd47426caced8436c507e2950a4e2452b6cc6efc7845ab3b43a5c5d5', + 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-amd64?checksum=sha256:3aab2f2668cb5a713d5770e46a777ef01c433753378702d9ae941aa2d1ee5618', 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-arm64?checksum=sha256:08b20f0753b6b0bafa3a6ca7e4bb6807baf72754dfb69d6db7b1fb2b4b55ffc0' + 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-arm64?checksum=sha256:e158d30707a0ea51482237f99676223e81ce5a353966a5c83791d2662a930f35' }, cosmos_sdk_version: '0.45', consensus: { type: 'tendermint', - version: '0.34' + version: '0.34.24' }, cosmwasm_version: '0.30', cosmwasm_enabled: true, - ibc_go_version: '4.3.0', + ibc_go_version: '4.3.1', ics_enabled: ['ics20-1'], genesis: { name: 'v3', @@ -116,24 +116,24 @@ const chain: Chain = { }, { name: 'v15', - tag: 'v15.1.0', + tag: 'v15.2.0', height: 8732500, - recommended_version: 'v15.1.0', - compatible_versions: ['v15.1.0', 'v15.0.0'], - cosmos_sdk_version: '0.45', + recommended_version: 'v15.2.0', + compatible_versions: ['v15.2.0', 'v15.1.2', 'v15.0.0'], + cosmos_sdk_version: '0.46.10', consensus: { type: 'tendermint', - version: '0.34' + version: '0.34.24' }, cosmwasm_version: '0.30', cosmwasm_enabled: true, - ibc_go_version: '4.3.0', + ibc_go_version: '4.3.1', ics_enabled: ['ics20-1'], binaries: { 'linux/amd64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-amd64?checksum=sha256:f16f901dfd47426caced8436c507e2950a4e2452b6cc6efc7845ab3b43a5c5d5', + 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-amd64?checksum=sha256:3aab2f2668cb5a713d5770e46a777ef01c433753378702d9ae941aa2d1ee5618', 'linux/arm64': - 'https://github.com/osmosis-labs/osmosis/releases/download/v15.1.0/osmosisd-15.1.0-linux-arm64?checksum=sha256:08b20f0753b6b0bafa3a6ca7e4bb6807baf72754dfb69d6db7b1fb2b4b55ffc0' + 'https://github.com/osmosis-labs/osmosis/releases/download/v15.2.0/osmosisd-15.2.0-linux-arm64?checksum=sha256:e158d30707a0ea51482237f99676223e81ce5a353966a5c83791d2662a930f35' } } ] @@ -300,6 +300,10 @@ const chain: Chain = { { address: 'https://osmosis-rpc.staketab.org:443', provider: 'Staketab' + }, + { + address: 'https://osmosis-rpc.w3coins.io', + provider: 'w3coins' } ], rest: [ @@ -363,6 +367,14 @@ const chain: Chain = { address: 'https://osmosis-rest.staketab.org', provider: 'Staketab' }, + { + address: 'https://osmosis-api.w3coins.io', + provider: 'w3coins' + }, + { + address: 'https://lcd-osmosis.whispernode.com:443', + provider: 'WhisperNode🤐' + }, { address: 'https://osmosis.stakesystems.io/', provider: 'stakesystems' @@ -400,6 +412,10 @@ const chain: Chain = { { address: 'services.staketab.com:9010', provider: 'Staketab' + }, + { + address: 'osmosis-grpc.w3coins.io:12590', + provider: 'w3coins' } ] }, From 235baabaa618def6fc1bd1de9cd84660c30d1d71 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Wed, 12 Jul 2023 01:40:04 +0200 Subject: [PATCH 5/5] chore(release): publish - @chain-registry/assets@1.18.0 - chain-registry@1.17.0 - @chain-registry/client@1.14.0 - @chain-registry/cosmostation@1.20.0 - @chain-registry/juno@1.18.0 - @chain-registry/keplr@1.21.0 - @chain-registry/osmosis@1.18.0 - @chain-registry/utils@1.13.0 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 6 +++--- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 4 ++-- packages/client/CHANGELOG.md | 8 ++++++++ packages/client/package.json | 4 ++-- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 6 +++--- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 6 +++--- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 6 +++--- packages/utils/CHANGELOG.md | 8 ++++++++ packages/utils/package.json | 4 ++-- 16 files changed, 84 insertions(+), 20 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index d01c68f41..5badbdbd8 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.17.0...@chain-registry/assets@1.18.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/assets + + + + + # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.16.0...@chain-registry/assets@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 50d337ae3..da5318775 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.17.0", + "version": "1.18.0", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -49,14 +49,14 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "@types/jest": "^29.5.1", "@typescript-eslint/eslint-plugin": "5.59.0", "@typescript-eslint/parser": "5.59.0", "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.16.0", + "chain-registry": "^1.17.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 244c859f6..6b51df7c5 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.16.0...chain-registry@1.17.0) (2023-07-11) + +**Note:** Version bump only for package chain-registry + + + + + # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.15.0...chain-registry@1.16.0) (2023-07-08) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 68df4342a..6836fd8e4 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.16.0", + "version": "1.17.0", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", @@ -48,7 +48,7 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "cross-env": "^7.0.2", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index f5b6349a6..db3446fae 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.13.0...@chain-registry/client@1.14.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/client + + + + + # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.12.0...@chain-registry/client@1.13.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/client diff --git a/packages/client/package.json b/packages/client/package.json index eeaf99d0c..b1f91b6cf 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/client", - "version": "1.13.0", + "version": "1.14.0", "description": "Chain Registry Client", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -74,7 +74,7 @@ "dependencies": { "@babel/runtime": "^7.21.0", "@chain-registry/types": "^0.16.0", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "bfs-path": "^1.0.2", "cross-fetch": "^3.1.5" } diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index 913083fd0..c106243a2 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.19.0...@chain-registry/cosmostation@1.20.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.18.0...@chain-registry/cosmostation@1.19.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 0755b88e3..d2eedf73c 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.19.0", + "version": "1.20.0", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.16.0", + "chain-registry": "^1.17.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", @@ -74,7 +74,7 @@ "dependencies": { "@babel/runtime": "^7.21.0", "@chain-registry/types": "^0.16.0", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "@cosmostation/extension-client": "0.1.15" } } diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index 94325d6ef..0f0bfdf39 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.17.0...@chain-registry/juno@1.18.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/juno + + + + + # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.16.0...@chain-registry/juno@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 17a1229ff..1e060e687 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.17.0", + "version": "1.18.0", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -50,14 +50,14 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "@types/jest": "^29.5.1", "@typescript-eslint/eslint-plugin": "5.59.0", "@typescript-eslint/parser": "5.59.0", "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.16.0", + "chain-registry": "^1.17.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 73a661410..21415c35b 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.20.0...@chain-registry/keplr@1.21.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.19.0...@chain-registry/keplr@1.20.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index b349e1de7..4f51503a1 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.20.0", + "version": "1.21.0", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.16.0", + "chain-registry": "^1.17.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 1fbf5c00f..8ccf9e0ba 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.17.0...@chain-registry/osmosis@1.18.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.16.0...@chain-registry/osmosis@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index f6adea547..cee593351 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.17.0", + "version": "1.18.0", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -50,14 +50,14 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.12.0", + "@chain-registry/utils": "^1.13.0", "@types/jest": "^29.5.1", "@typescript-eslint/eslint-plugin": "5.59.0", "@typescript-eslint/parser": "5.59.0", "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.16.0", + "chain-registry": "^1.17.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index d9dcf9c44..951993ccf 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.12.0...@chain-registry/utils@1.13.0) (2023-07-11) + +**Note:** Version bump only for package @chain-registry/utils + + + + + # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.11.0...@chain-registry/utils@1.12.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index c40a3ab33..ee964fbc2 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/utils", - "version": "1.12.0", + "version": "1.13.0", "description": "Chain Registry Utils", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -77,4 +77,4 @@ "bignumber.js": "9.1.1", "sha.js": "^2.4.11" } -} \ No newline at end of file +}