diff --git a/package.json b/package.json index 564cb4055..466d1fb82 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "format": "lerna run format", "pretest": "yarn lint", "test": "lerna run test", - "build:pkg": "lerna run build:pkg --parallel" + "codegen": "lerna run codegen --parallel" }, "devDependencies": { "@babel/cli": "7.11.6", diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 902b7dfcb..b987607ac 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. +## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.5.0...@chain-registry/assets@0.5.1) (2022-08-14) + +**Note:** Version bump only for package @chain-registry/assets + + + + + # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.3...@chain-registry/assets@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index d364c5a50..d27368fcf 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "0.5.0", + "version": "0.5.1", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -60,7 +60,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "28.1.1", "babel-watch": "^7.0.0", - "chain-registry": "^0.6.0", + "chain-registry": "^0.6.1", "cross-env": "^7.0.2", "eslint": "8.20.0", "eslint-config-prettier": "^8.5.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 882602ed7..4dd4dbc93 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. +## [0.6.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.0...chain-registry@0.6.1) (2022-08-14) + +**Note:** Version bump only for package chain-registry + + + + + # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.5.1...chain-registry@0.6.0) (2022-08-14) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 11f0ee04d..8fa48c4ec 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "0.6.0", + "version": "0.6.1", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", @@ -31,8 +31,10 @@ "build:ts": "tsc --project ./tsconfig.json", "buidl": "npm run build && npm run build:ts", "build:pkg": "babel-node ./scripts/build.js", + "codegen": "npm run build:pkg && npm run format", "prepare": "npm run build", - "lint": "eslint src --fix", + "lint": "eslint --ext .ts,.tsx,.js .", + "format": "eslint --fix . --ext .ts,.tsx,.js", "test": "jest", "test:watch": "jest --watch", "test:debug": "node --inspect node_modules/.bin/jest --runInBand" diff --git a/packages/chain-registry/scripts/build.js b/packages/chain-registry/scripts/build.js index b24d319f5..57170a01b 100644 --- a/packages/chain-registry/scripts/build.js +++ b/packages/chain-registry/scripts/build.js @@ -24,7 +24,7 @@ addPaths.forEach((file) => { addChains.forEach((chain) => { const existingChainIndex = chains.findIndex( - (c) => c.chain_id === chain.chain_id + (c) => c.chain_name === chain.chain_name ); if (existingChainIndex > -1) { const existingChain = chains[existingChainIndex]; @@ -35,7 +35,9 @@ addChains.forEach((chain) => { }); addAssets.forEach((asset) => { - const existingIndex = assets.findIndex((c) => c.chain_id === asset.chain_id); + const existingIndex = assets.findIndex( + (c) => c.chain_name === asset.chain_name + ); if (existingIndex > -1) { assets[existingIndex] = deepmerge(assets[existingIndex], asset); } else { diff --git a/packages/chain-registry/src/assets.ts b/packages/chain-registry/src/assets.ts index 62e2b06c9..b03a9068e 100644 --- a/packages/chain-registry/src/assets.ts +++ b/packages/chain-registry/src/assets.ts @@ -1,8974 +1,9310 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList[] = [ { - "$schema": "../assetlist.schema.json", - "chain_name": "juno", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'avalanche', + assets: [ { - "description": "AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.", - "denom_units": [ + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ { - "denom": "wei", - "exponent": 0 + denom: 'wei', + exponent: 0 }, { - "denom": "avax", - "exponent": 18 + denom: 'avax', + exponent: 18 } ], - "base": "wei", - "name": "Avalanche", - "display": "avax", - "symbol": "AVAX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg" + base: 'wei', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' }, - "coingecko_id": "avalanche-2" + coingecko_id: 'avalanche-2' }, { - "description": "The wrapped ERC-20 representation of AVAX, the native token of Avalanche.", - "type_asset": "erc20", - "address": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "denom_units": [ + description: + 'The wrapped ERC-20 representation of AVAX, the native token of Avalanche.', + type_asset: 'erc20', + address: '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', + denom_units: [ { - "denom": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "exponent": 0, - "aliases": [ - "wavax-wei" - ] + denom: '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', + exponent: 0, + aliases: ['wavax-wei'] }, { - "denom": "wavax", - "exponent": 18 + denom: 'wavax', + exponent: 18 } ], - "base": "0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7", - "name": "Wrapped AVAX", - "display": "wavax", - "symbol": "WAVAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg" + base: '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', + name: 'Wrapped AVAX', + display: 'wavax', + symbol: 'WAVAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' }, - "coingecko_id": "wrapped-avax" + coingecko_id: 'wrapped-avax' }, { - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "type_asset": "erc20", - "address": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "denom_units": [ + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + type_asset: 'erc20', + address: '0xc5fa5669e326da8b2c35540257cd48811f40a36b', + denom_units: [ { - "denom": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: '0xc5fa5669e326da8b2c35540257cd48811f40a36b', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "axldai", - "exponent": 18 + denom: 'axldai', + exponent: 18 } ], - "base": "0xc5fa5669e326da8b2c35540257cd48811f40a36b", - "name": "Axelar Wrapped DAI", - "display": "axldai", - "symbol": "axlDAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + base: '0xc5fa5669e326da8b2c35540257cd48811f40a36b', + name: 'Axelar Wrapped DAI', + display: 'axldai', + symbol: 'axlDAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' } }, { - "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", - "type_asset": "erc20", - "address": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", - "denom_units": [ + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + type_asset: 'erc20', + address: '0x4914886dbb8aad7a7456d471eaab10b06d42348d', + denom_units: [ { - "denom": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: '0x4914886dbb8aad7a7456d471eaab10b06d42348d', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "axlfrax", - "exponent": 18 + denom: 'axlfrax', + exponent: 18 } ], - "base": "0x4914886dbb8aad7a7456d471eaab10b06d42348d", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + base: '0x4914886dbb8aad7a7456d471eaab10b06d42348d', + name: 'Axelar Wrapped Frax', + display: 'axlfrax', + symbol: 'axlFRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' } }, { - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "type_asset": "erc20", - "address": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", - "denom_units": [ + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + type_asset: 'erc20', + address: '0xfab550568C688d5d8a52c7d794cb93edc26ec0ec', + denom_units: [ { - "denom": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: '0xfab550568C688d5d8a52c7d794cb93edc26ec0ec', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "axlusdc", - "exponent": 6 + denom: 'axlusdc', + exponent: 6 } ], - "base": "0xfab550568C688d5d8a52c7d794cb93edc26ec0ec", - "name": "Axelar Wrapped USDC", - "display": "axlusdc", - "symbol": "axlUSDC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + base: '0xfab550568C688d5d8a52c7d794cb93edc26ec0ec', + name: 'Axelar Wrapped USDC', + display: 'axlusdc', + symbol: 'axlUSDC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, { - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "type_asset": "erc20", - "address": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", - "denom_units": [ + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + type_asset: 'erc20', + address: '0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66', + denom_units: [ { - "denom": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: '0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "axlusdt", - "exponent": 6 + denom: 'axlusdt', + exponent: 6 } ], - "base": "0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66", - "name": "Axelar Wrapped USDT", - "display": "axlusdt", - "symbol": "axlUSDT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + base: '0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66', + name: 'Axelar Wrapped USDT', + display: 'axlusdt', + symbol: 'axlUSDT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } - }, - { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "denom_units": [ - { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "exponent": 0, - "aliases": [ - "uneta" - ] - }, - { - "denom": "neta", - "exponent": 6 - } - ], - "base": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png" - }, - "coingecko_id": "neta" } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "ethereum", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'ethereum', + assets: [ { - "description": "Ether is the native fee token of the Ethereum network.", - "denom_units": [ + description: 'Ether is the native fee token of the Ethereum network.', + denom_units: [ { - "denom": "wei", - "exponent": 0 + denom: 'wei', + exponent: 0 }, { - "denom": "gwei", - "exponent": 9 + denom: 'gwei', + exponent: 9 }, { - "denom": "eth", - "exponent": 18, - "aliases": [ - "ether" - ] + denom: 'eth', + exponent: 18, + aliases: ['ether'] } ], - "base": "wei", - "name": "Ether", - "display": "eth", - "symbol": "ETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg" + base: 'wei', + name: 'Ether', + display: 'eth', + symbol: 'ETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg' }, - "coingecko_id": "ethereum" + coingecko_id: 'ethereum' }, { - "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.", - "type_asset": "erc20", - "address": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "denom_units": [ + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + type_asset: 'erc20', + address: '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9', + denom_units: [ { - "denom": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "exponent": 0, - "aliases": [ - "aave-wei" - ] + denom: '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9', + exponent: 0, + aliases: ['aave-wei'] }, { - "denom": "aave", - "exponent": 18 + denom: 'aave', + exponent: 18 } ], - "base": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + base: '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' }, - "coingecko_id": "aave" + coingecko_id: 'aave' }, { - "description": "ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.", - "type_asset": "erc20", - "address": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "denom_units": [ + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + type_asset: 'erc20', + address: '0x4d224452801aced8b2f0aebe155379bb5d594381', + denom_units: [ { - "denom": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "exponent": 0, - "aliases": [ - "ape-wei" - ] + denom: '0x4d224452801aced8b2f0aebe155379bb5d594381', + exponent: 0, + aliases: ['ape-wei'] }, { - "denom": "ape", - "exponent": 18 + denom: 'ape', + exponent: 18 } ], - "base": "0x4d224452801aced8b2f0aebe155379bb5d594381", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + base: '0x4d224452801aced8b2f0aebe155379bb5d594381', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' }, - "coingecko_id": "apecoin" + coingecko_id: 'apecoin' }, { - "description": "Axie Infinity is a Pokémon-inspired digital pet universe where anyone can earn tokens through skilled gameplay and contributions to the ecosystem. Players can battle, collect, raise, and build a land-based kingdom for their pets (known as Axies).", - "type_asset": "erc20", - "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "denom_units": [ + description: + 'Axie Infinity is a Pokémon-inspired digital pet universe where anyone can earn tokens through skilled gameplay and contributions to the ecosystem. Players can battle, collect, raise, and build a land-based kingdom for their pets (known as Axies).', + type_asset: 'erc20', + address: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + denom_units: [ { - "denom": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "exponent": 0, - "aliases": [ - "axs-wei" - ] + denom: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + exponent: 0, + aliases: ['axs-wei'] }, { - "denom": "axs", - "exponent": 18 + denom: 'axs', + exponent: 18 } ], - "base": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + base: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' }, - "coingecko_id": "axie-infinity" + coingecko_id: 'axie-infinity' }, { - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "type_asset": "erc20", - "address": "0x6b175474e89094c44da98b954eedeac495271d0f", - "denom_units": [ + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + type_asset: 'erc20', + address: '0x6b175474e89094c44da98b954eedeac495271d0f', + denom_units: [ { - "denom": "0x6b175474e89094c44da98b954eedeac495271d0f", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: '0x6b175474e89094c44da98b954eedeac495271d0f', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "dai", - "exponent": 18 + denom: 'dai', + exponent: 18 } ], - "base": "0x6b175474e89094c44da98b954eedeac495271d0f", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + base: '0x6b175474e89094c44da98b954eedeac495271d0f', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' }, - "coingecko_id": "dai" + coingecko_id: 'dai' }, { - "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", - "type_asset": "erc20", - "address": "0x853d955acef822db058eb8505911ed77f175b99e", - "denom_units": [ + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + type_asset: 'erc20', + address: '0x853d955acef822db058eb8505911ed77f175b99e', + denom_units: [ { - "denom": "0x853d955acef822db058eb8505911ed77f175b99e", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: '0x853d955acef822db058eb8505911ed77f175b99e', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "frax", - "exponent": 18 + denom: 'frax', + exponent: 18 } ], - "base": "0x853d955acef822db058eb8505911ed77f175b99e", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + base: '0x853d955acef822db058eb8505911ed77f175b99e', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' }, - "coingecko_id": "frax" + coingecko_id: 'frax' }, { - "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", - "type_asset": "erc20", - "address": "0x514910771af9ca656af840dff83e8264ecf986ca", - "denom_units": [ + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + type_asset: 'erc20', + address: '0x514910771af9ca656af840dff83e8264ecf986ca', + denom_units: [ { - "denom": "0x514910771af9ca656af840dff83e8264ecf986ca", - "exponent": 0, - "aliases": [ - "link-wei" - ] + denom: '0x514910771af9ca656af840dff83e8264ecf986ca', + exponent: 0, + aliases: ['link-wei'] }, { - "denom": "link", - "exponent": 18 + denom: 'link', + exponent: 18 } ], - "base": "0x514910771af9ca656af840dff83e8264ecf986ca", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", - "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" + base: '0x514910771af9ca656af840dff83e8264ecf986ca', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + 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' }, - "coingecko_id": "chainlink" + coingecko_id: 'chainlink' }, { - "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", - "type_asset": "erc20", - "address": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "denom_units": [ + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + type_asset: 'erc20', + address: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2', + denom_units: [ { - "denom": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "exponent": 0, - "aliases": [ - "mkr-wei" - ] + denom: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2', + exponent: 0, + aliases: ['mkr-wei'] }, { - "denom": "mkr", - "exponent": 18 + denom: 'mkr', + exponent: 18 } ], - "base": "0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + base: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' }, - "coingecko_id": "maker" + coingecko_id: 'maker' }, { - "description": "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", - "type_asset": "erc20", - "address": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "denom_units": [ + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + type_asset: 'erc20', + address: '0x03ab458634910aad20ef5f1c8ee96f1d6ac54919', + denom_units: [ { - "denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "exponent": 0, - "aliases": [ - "rai-wei" - ] + denom: '0x03ab458634910aad20ef5f1c8ee96f1d6ac54919', + exponent: 0, + aliases: ['rai-wei'] }, { - "denom": "rai", - "exponent": 18 + denom: 'rai', + exponent: 18 } ], - "base": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + base: '0x03ab458634910aad20ef5f1c8ee96f1d6ac54919', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' }, - "coingecko_id": "rai" + coingecko_id: 'rai' }, { - "description": "SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.", - "type_asset": "erc20", - "address": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "denom_units": [ + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + type_asset: 'erc20', + address: '0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce', + denom_units: [ { - "denom": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "exponent": 0, - "aliases": [ - "shib-wei" - ] + denom: '0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce', + exponent: 0, + aliases: ['shib-wei'] }, { - "denom": "shib", - "exponent": 18 + denom: 'shib', + exponent: 18 } ], - "base": "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + base: '0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' }, - "coingecko_id": "shiba-inu" + coingecko_id: 'shiba-inu' }, { - "description": "stETH is a token that represents staked ether in Lido, combining the value of initial deposit + staking rewards. stETH tokens are pegged 1:1 to the ETH staked with Lido and can be used as one would use ether, allowing users to earn Eth2 staking rewards whilst benefiting from Defi yields.", - "type_asset": "erc20", - "address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "denom_units": [ + description: + 'stETH is a token that represents staked ether in Lido, combining the value of initial deposit + staking rewards. stETH tokens are pegged 1:1 to the ETH staked with Lido and can be used as one would use ether, allowing users to earn Eth2 staking rewards whilst benefiting from Defi yields.', + type_asset: 'erc20', + address: '0xae7ab96520de3a18e5e111b5eaab095312d7fe84', + denom_units: [ { - "denom": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "exponent": 0, - "aliases": [ - "steth-wei" - ] + denom: '0xae7ab96520de3a18e5e111b5eaab095312d7fe84', + exponent: 0, + aliases: ['steth-wei'] }, { - "denom": "steth", - "exponent": 18 + denom: 'steth', + exponent: 18 } ], - "base": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + base: '0xae7ab96520de3a18e5e111b5eaab095312d7fe84', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' }, - "coingecko_id": "staked-ether" + coingecko_id: 'staked-ether' }, { - "description": "UNI token served as governance token for Uniswap protocol with 1 billion UNI have been minted at genesis. 60% of the UNI genesis supply is allocated to Uniswap community members and remaining for team, investors and advisors.", - "type_asset": "erc20", - "address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "denom_units": [ + description: + 'UNI token served as governance token for Uniswap protocol with 1 billion UNI have been minted at genesis. 60% of the UNI genesis supply is allocated to Uniswap community members and remaining for team, investors and advisors.', + type_asset: 'erc20', + address: '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', + denom_units: [ { - "denom": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "exponent": 0, - "aliases": [ - "uni-wei" - ] + denom: '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', + exponent: 0, + aliases: ['uni-wei'] }, { - "denom": "uni", - "exponent": 18 + denom: 'uni', + exponent: 18 } ], - "base": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + base: '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' }, - "coingecko_id": "uniswap" + coingecko_id: 'uniswap' }, { - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "type_asset": "erc20", - "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "denom_units": [ + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + type_asset: 'erc20', + address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', + denom_units: [ { - "denom": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "usdc", - "exponent": 6 + denom: 'usdc', + exponent: 6 } ], - "base": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + base: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' }, - "coingecko_id": "usd-coin" + coingecko_id: 'usd-coin' }, { - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "type_asset": "erc20", - "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "denom_units": [ + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + type_asset: 'erc20', + address: '0xdac17f958d2ee523a2206206994597c13d831ec7', + denom_units: [ { - "denom": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: '0xdac17f958d2ee523a2206206994597c13d831ec7', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "usdt", - "exponent": 6 + denom: 'usdt', + exponent: 6 } ], - "base": "0xdac17f958d2ee523a2206206994597c13d831ec7", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + base: '0xdac17f958d2ee523a2206206994597c13d831ec7', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' }, - "coingecko_id": "tether" + coingecko_id: 'tether' }, { - "description": "Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.", - "type_asset": "erc20", - "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "denom_units": [ + description: + 'Wrapped Bitcoin (WBTC) is an ERC20 token backed 1:1 with Bitcoin. Completely transparent. 100% verifiable. Community led.', + type_asset: 'erc20', + address: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', + denom_units: [ { - "denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] + denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', + exponent: 0, + aliases: ['wbtc-satoshi'] }, { - "denom": "wbtc", - "exponent": 8 + denom: 'wbtc', + exponent: 8 } ], - "base": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "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: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', + name: 'Wrapped Bitcoin', + display: 'wbtc', + 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' }, - "coingecko_id": "wrapped-bitcoin" + coingecko_id: 'wrapped-bitcoin' }, { - "description": "wETH is 'wrapped ETH'", - "type_asset": "erc20", - "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "denom_units": [ + description: "wETH is 'wrapped ETH'", + type_asset: 'erc20', + address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', + denom_units: [ { - "denom": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "exponent": 0, - "aliases": [ - "weth-wei" - ] + denom: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', + exponent: 0, + aliases: ['weth-wei'] }, { - "denom": "weth", - "exponent": 18 + denom: 'weth', + exponent: 18 } ], - "base": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg" + base: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' }, - "coingecko_id": "weth" + coingecko_id: 'weth' }, { - "description": "Chain is a cloud blockchain protocol that enables organizations to build better financial services from the ground up powered by Sequence and Chain Core.", - "type_asset": "erc20", - "address": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", - "denom_units": [ + description: + 'Chain is a cloud blockchain protocol that enables organizations to build better financial services from the ground up powered by Sequence and Chain Core.', + type_asset: 'erc20', + address: '0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18', + denom_units: [ { - "denom": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", - "exponent": 0, - "aliases": [ - "xcn-wei" - ] + denom: '0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18', + exponent: 0, + aliases: ['xcn-wei'] }, { - "denom": "xcn", - "exponent": 18 + denom: 'xcn', + exponent: 18 } ], - "base": "0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + base: '0xa2cd3d43c775978a96bdbf12d733d5a1ed94fb18', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' }, - "coingecko_id": "chain-2" + coingecko_id: 'chain-2' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "moonbeam", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'moonbeam', + assets: [ { - "description": "Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.", - "denom_units": [ + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ { - "denom": "Wei", - "exponent": 0, - "aliases": [ - "wei" - ] + denom: 'Wei', + exponent: 0, + aliases: ['wei'] }, { - "denom": "GLMR", - "exponent": 18, - "aliases": [ - "glmr" - ] + denom: 'GLMR', + exponent: 18, + aliases: ['glmr'] } ], - "base": "Wei", - "name": "Glimmer", - "display": "GLMR", - "symbol": "GLMR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + base: 'Wei', + name: 'Glimmer', + display: 'GLMR', + symbol: 'GLMR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' }, - "coingecko_id": "moonbeam" + coingecko_id: 'moonbeam' }, { - "description": "An ERC-20 representation of GLMR, the native token of Moonbeam.", - "type_asset": "erc20", - "address": "0xacc15dc74880c9944775448304b263d191c6077f", - "denom_units": [ + description: + 'An ERC-20 representation of GLMR, the native token of Moonbeam.', + type_asset: 'erc20', + address: '0xacc15dc74880c9944775448304b263d191c6077f', + denom_units: [ { - "denom": "0xacc15dc74880c9944775448304b263d191c6077f", - "exponent": 0, - "aliases": [ - "wglmr-wei" - ] + denom: '0xacc15dc74880c9944775448304b263d191c6077f', + exponent: 0, + aliases: ['wglmr-wei'] }, { - "denom": "wglmr", - "exponent": 18 + denom: 'wglmr', + exponent: 18 } ], - "base": "0xacc15dc74880c9944775448304b263d191c6077f", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg" + base: '0xacc15dc74880c9944775448304b263d191c6077f', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' }, - "coingecko_id": "wrapped-moonbeam" + coingecko_id: 'wrapped-moonbeam' }, { - "description": "Polkadot is a blockchain network designed to support various interconnected, application-specific sub-chains. Each chain built within Polkadot uses Parity Technologies' Substrate modular framework, which allows developers to select specific components that suit their application-specific chain best.", - "type_asset": "erc20", - "address": "0xffffffff1fcacbd218edc0eba20fc2308c778080", - "denom_units": [ + description: + "Polkadot is a blockchain network designed to support various interconnected, application-specific sub-chains. Each chain built within Polkadot uses Parity Technologies' Substrate modular framework, which allows developers to select specific components that suit their application-specific chain best.", + type_asset: 'erc20', + address: '0xffffffff1fcacbd218edc0eba20fc2308c778080', + denom_units: [ { - "denom": "0xffffffff1fcacbd218edc0eba20fc2308c778080", - "exponent": 0, - "aliases": [ - "dot-planck" - ] + denom: '0xffffffff1fcacbd218edc0eba20fc2308c778080', + exponent: 0, + aliases: ['dot-planck'] }, { - "denom": "xcdot", - "exponent": 10 + denom: 'xcdot', + exponent: 10 } ], - "base": "0xffffffff1fcacbd218edc0eba20fc2308c778080", - "name": "Wrapped Polkadot", - "display": "xcdot", - "symbol": "xcDOT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/dot.svg" + base: '0xffffffff1fcacbd218edc0eba20fc2308c778080', + name: 'Wrapped Polkadot', + display: 'xcdot', + symbol: 'xcDOT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/dot.svg' } }, { - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "type_asset": "erc20", - "address": "0x14df360966a1c4582d2b18edbdae432ea0a27575", - "denom_units": [ + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + type_asset: 'erc20', + address: '0x14df360966a1c4582d2b18edbdae432ea0a27575', + denom_units: [ { - "denom": "0x14df360966a1c4582d2b18edbdae432ea0a27575", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: '0x14df360966a1c4582d2b18edbdae432ea0a27575', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "axldai", - "exponent": 18 + denom: 'axldai', + exponent: 18 } ], - "base": "0x14df360966a1c4582d2b18edbdae432ea0a27575", - "name": "Axelar Wrapped Dai Stablecoin", - "display": "axldai", - "symbol": "axlDAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + base: '0x14df360966a1c4582d2b18edbdae432ea0a27575', + name: 'Axelar Wrapped Dai Stablecoin', + display: 'axldai', + symbol: 'axlDAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' } }, { - "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", - "type_asset": "erc20", - "address": "0x61C82805453a989E99B544DFB7031902e9bac448", - "denom_units": [ + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + type_asset: 'erc20', + address: '0x61C82805453a989E99B544DFB7031902e9bac448', + denom_units: [ { - "denom": "0x61C82805453a989E99B544DFB7031902e9bac448", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: '0x61C82805453a989E99B544DFB7031902e9bac448', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "axlfrax", - "exponent": 18 + denom: 'axlfrax', + exponent: 18 } ], - "base": "0x61C82805453a989E99B544DFB7031902e9bac448", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + base: '0x61C82805453a989E99B544DFB7031902e9bac448', + name: 'Axelar Wrapped Frax', + display: 'axlfrax', + symbol: 'axlFRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' } }, { - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "type_asset": "erc20", - "address": "0xca01a1d0993565291051daff390892518acfad3a", - "denom_units": [ + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + type_asset: 'erc20', + address: '0xca01a1d0993565291051daff390892518acfad3a', + denom_units: [ { - "denom": "0xca01a1d0993565291051daff390892518acfad3a", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: '0xca01a1d0993565291051daff390892518acfad3a', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "axlusdc", - "exponent": 6 + denom: 'axlusdc', + exponent: 6 } ], - "base": "0xca01a1d0993565291051daff390892518acfad3a", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + base: '0xca01a1d0993565291051daff390892518acfad3a', + name: 'Axelar Wrapped USD Coin', + display: 'axlusdc', + symbol: 'axlUSDC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, { - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "type_asset": "erc20", - "address": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", - "denom_units": [ + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + type_asset: 'erc20', + address: '0xdfd74af792bc6d45d1803f425ce62dd16f8ae038', + denom_units: [ { - "denom": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: '0xdfd74af792bc6d45d1803f425ce62dd16f8ae038', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "axlusdt", - "exponent": 6 + denom: 'axlusdt', + exponent: 6 } ], - "base": "0xdfd74af792bc6d45d1803f425ce62dd16f8ae038", - "name": "Axelar Wrapped Tether USD", - "display": "axlusdt", - "symbol": "axlUSDT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + base: '0xdfd74af792bc6d45d1803f425ce62dd16f8ae038', + name: 'Axelar Wrapped Tether USD', + display: 'axlusdt', + symbol: 'axlUSDT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "polkadot", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'polkadot', + assets: [ { - "description": "The native fee, governance, staking, and bonding token of the Polkadot platform.", - "denom_units": [ + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ { - "denom": "Planck", - "exponent": 0, - "aliases": [ - "planck" - ] + denom: 'Planck', + exponent: 0, + aliases: ['planck'] }, { - "denom": "uDOT", - "exponent": 4, - "aliases": [ - "udot", - "microdot", - "Microdot" - ] + denom: 'uDOT', + exponent: 4, + aliases: ['udot', 'microdot', 'Microdot'] }, { - "denom": "mDOT", - "exponent": 7, - "aliases": [ - "millidot", - "Millidot" - ] + denom: 'mDOT', + exponent: 7, + aliases: ['millidot', 'Millidot'] }, { - "denom": "DOT", - "exponent": 10, - "aliases": [ - "dot", - "New DOT", - "new dot" - ] + denom: 'DOT', + exponent: 10, + aliases: ['dot', 'New DOT', 'new dot'] }, { - "denom": "DOT (old)", - "exponent": 12 + denom: 'DOT (old)', + exponent: 12 }, { - "denom": "MDOT", - "exponent": 16, - "aliases": [ - "million", - "Million" - ] + denom: 'MDOT', + exponent: 16, + aliases: ['million', 'Million'] } ], - "base": "Planck", - "name": "Polkadot", - "display": "DOT", - "symbol": "DOT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg" + base: 'Planck', + name: 'Polkadot', + display: 'DOT', + symbol: 'DOT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' }, - "coingecko_id": "polkadot" + coingecko_id: 'polkadot' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "polygon", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'polygon', + assets: [ { - "description": "Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.", - "denom_units": [ + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ { - "denom": "wei", - "exponent": 0 + denom: 'wei', + exponent: 0 }, { - "denom": "matic", - "exponent": 18, - "aliases": [ - "polygon" - ] + denom: 'matic', + exponent: 18, + aliases: ['polygon'] } ], - "base": "wei", - "name": "Matic", - "display": "matic", - "symbol": "MATIC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic.svg" + base: 'wei', + name: 'Matic', + display: 'matic', + symbol: 'MATIC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic.svg' }, - "coingecko_id": "matic-network" + coingecko_id: 'matic-network' }, { - "description": "Polygon combines the best of Ethereum and sovereign blockchains into a full-fledged multi-chain system.", - "type_asset": "erc20", - "address": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "denom_units": [ + description: + 'Polygon combines the best of Ethereum and sovereign blockchains into a full-fledged multi-chain system.', + type_asset: 'erc20', + address: '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', + denom_units: [ { - "denom": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "exponent": 0, - "aliases": [ - "wmatic-wei" - ] + denom: '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', + exponent: 0, + aliases: ['wmatic-wei'] }, { - "denom": "wmatic", - "exponent": 18, - "aliases": [ - "polygon" - ] + denom: 'wmatic', + exponent: 18, + aliases: ['polygon'] } ], - "base": "0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270", - "name": "Wrapped Matic", - "display": "wmatic", - "symbol": "WMATIC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg" + base: '0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' }, - "coingecko_id": "wmatic" + coingecko_id: 'wmatic' }, { - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "type_asset": "erc20", - "address": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", - "denom_units": [ + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + type_asset: 'erc20', + address: '0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9', + denom_units: [ { - "denom": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: '0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "axldai", - "exponent": 18 + denom: 'axldai', + exponent: 18 } ], - "base": "0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9", - "name": "Axelar Wrapped Dai Stablecoin", - "display": "axldai", - "symbol": "axlDAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg" + base: '0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9', + name: 'Axelar Wrapped Dai Stablecoin', + display: 'axldai', + symbol: 'axlDAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' } }, { - "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", - "type_asset": "erc20", - "address": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", - "denom_units": [ + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + type_asset: 'erc20', + address: '0x53adc464b488be8c5d7269b9abbce8ba74195c3a', + denom_units: [ { - "denom": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: '0x53adc464b488be8c5d7269b9abbce8ba74195c3a', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "axlfrax", - "exponent": 18 + denom: 'axlfrax', + exponent: 18 } ], - "base": "0x53adc464b488be8c5d7269b9abbce8ba74195c3a", - "name": "Axelar Wrapped Frax", - "display": "axlfrax", - "symbol": "axlFRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg" + base: '0x53adc464b488be8c5d7269b9abbce8ba74195c3a', + name: 'Axelar Wrapped Frax', + display: 'axlfrax', + symbol: 'axlFRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' } }, { - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "type_asset": "erc20", - "address": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", - "denom_units": [ + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + type_asset: 'erc20', + address: '0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed', + denom_units: [ { - "denom": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: '0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "axlusdc", - "exponent": 6 + denom: 'axlusdc', + exponent: 6 } ], - "base": "0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed", - "name": "Axelar Wrapped USD Coin", - "display": "axlusdc", - "symbol": "axlUSDC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg" + base: '0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed', + name: 'Axelar Wrapped USD Coin', + display: 'axlusdc', + symbol: 'axlUSDC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, { - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "type_asset": "erc20", - "address": "0xceed2671d8634e3ee65000edbbee66139b132fbf", - "denom_units": [ + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + type_asset: 'erc20', + address: '0xceed2671d8634e3ee65000edbbee66139b132fbf', + denom_units: [ { - "denom": "0xceed2671d8634e3ee65000edbbee66139b132fbf", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: '0xceed2671d8634e3ee65000edbbee66139b132fbf', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "axlusdt", - "exponent": 6 + denom: 'axlusdt', + exponent: 6 } ], - "base": "0xceed2671d8634e3ee65000edbbee66139b132fbf", - "name": "Axelar Wrapped Tether USD", - "display": "axlusdt", - "symbol": "axlUSDT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg" + base: '0xceed2671d8634e3ee65000edbbee66139b132fbf', + name: 'Axelar Wrapped Tether USD', + display: 'axlusdt', + symbol: 'axlUSDT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "agoric", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'agoric', + assets: [ { - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop the RUN Protocol.", - "denom_units": [ + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop the RUN Protocol.', + denom_units: [ { - "denom": "ubld", - "exponent": 0 + denom: 'ubld', + exponent: 0 }, { - "denom": "bld", - "exponent": 6 + denom: 'bld', + exponent: 6 } ], - "base": "ubld", - "name": "Agoric Staking Token", - "display": "bld", - "symbol": "BLD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png" + base: 'ubld', + name: 'Agoric Staking Token', + display: 'bld', + symbol: 'BLD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png' } }, { - "description": "RUN is the stable token used by the Agoric chain for execution fees and commerce.", - "denom_units": [ + description: + 'RUN is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ { - "denom": "urun", - "exponent": 0 + denom: 'urun', + exponent: 0 }, { - "denom": "run", - "exponent": 6 + denom: 'run', + exponent: 6 } ], - "base": "urun", - "name": "Agoric Stable Token", - "display": "run", - "symbol": "RUN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/run.png" + base: 'urun', + name: 'Agoric Stable Token', + display: 'run', + symbol: 'RUN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/run.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "aioz", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'aioz', + assets: [ { - "description": "The native staking and governance token of the AIOZ Network.", - "denom_units": [ + description: + 'The native staking and governance token of the AIOZ Network.', + denom_units: [ { - "denom": "attoaioz", - "exponent": 0 + denom: 'attoaioz', + exponent: 0 }, { - "denom": "nanoaioz", - "exponent": 9 + denom: 'nanoaioz', + exponent: 9 }, { - "denom": "aioz", - "exponent": 18 + denom: 'aioz', + exponent: 18 } ], - "base": "attoaioz", - "name": "AIOZ", - "display": "aioz", - "symbol": "AIOZ", - "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" + base: 'attoaioz', + name: 'AIOZ', + display: 'aioz', + symbol: 'AIOZ', + 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' }, - "coingecko_id": "aioz-network" + coingecko_id: 'aioz-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "akash", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'akash', + 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": [ + 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": "uakt", - "exponent": 0 + denom: 'uakt', + exponent: 0 }, { - "denom": "akt", - "exponent": 6 + denom: 'akt', + exponent: 6 } ], - "base": "uakt", - "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" + base: 'uakt', + 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" + coingecko_id: 'akash-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "arkh", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'arkh', + assets: [ { - "description": "The native token of Arkhadian", - "denom_units": [ + description: 'The native token of Arkhadian', + denom_units: [ { - "denom": "uarkh", - "exponent": 0 + denom: 'uarkh', + exponent: 0 }, { - "denom": "arkh", - "exponent": 6 + denom: 'arkh', + exponent: 6 } ], - "base": "uarkh", - "name": "Arkh", - "display": "arkh", - "symbol": "ARKH", - "logo_URIs": { - "png": "https://www.arkhadian.com/static/images/600-prism.png" + base: 'uarkh', + name: 'Arkh', + display: 'arkh', + symbol: 'ARKH', + logo_URIs: { + png: 'https://www.arkhadian.com/static/images/600-prism.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "assetmantle", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'assetmantle', + assets: [ { - "description": "The native token of Asset Mantle", - "denom_units": [ + description: 'The native token of Asset Mantle', + denom_units: [ { - "denom": "umntl", - "exponent": 0 + denom: 'umntl', + exponent: 0 }, { - "denom": "mntl", - "exponent": 6 + denom: 'mntl', + exponent: 6 } ], - "base": "umntl", - "name": "AssetMantle", - "display": "mntl", - "symbol": "MNTL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png" + base: 'umntl', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png' }, - "coingecko_id": "assetmantle" + coingecko_id: 'assetmantle' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "axelar", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'axelar', + assets: [ { - "description": "The native token of Axelar", - "denom_units": [ + description: 'The native token of Axelar', + denom_units: [ { - "denom": "uaxl", - "exponent": 0 + denom: 'uaxl', + exponent: 0 }, { - "denom": "axl", - "exponent": 6 + denom: 'axl', + exponent: 6 } ], - "base": "uaxl", - "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" + base: 'uaxl', + 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-network" + coingecko_id: 'axelar-network' }, { - "description": "Circle's stablecoin on Axelar", - "denom_units": [ + description: "Circle's stablecoin on Axelar", + denom_units: [ { - "denom": "uusdc", - "exponent": 0 + denom: 'uusdc', + exponent: 0 }, { - "denom": "usdc", - "exponent": 6 + denom: 'usdc', + exponent: 6 } ], - "base": "uusdc", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "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" + base: 'uusdc', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + 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": "usd-coin" + coingecko_id: 'usd-coin' }, { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", - "denom_units": [ + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ { - "denom": "frax-wei", - "exponent": 0 + denom: 'frax-wei', + exponent: 0 }, { - "denom": "frax", - "exponent": 18 + denom: 'frax', + exponent: 18 } ], - "base": "frax-wei", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png" + base: 'frax-wei', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png' }, - "coingecko_id": "frax" + coingecko_id: 'frax' }, { - "description": "Dai stablecoin on Axelar", - "denom_units": [ + description: 'Dai stablecoin on Axelar', + denom_units: [ { - "denom": "dai-wei", - "exponent": 0 + denom: 'dai-wei', + exponent: 0 }, { - "denom": "dai", - "exponent": 18 + denom: 'dai', + exponent: 18 } ], - "base": "dai-wei", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "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" + base: 'dai-wei', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + 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' }, - "coingecko_id": "dai" + coingecko_id: 'dai' }, { - "description": "Tether's USD stablecoin on Axelar", - "denom_units": [ + description: "Tether's USD stablecoin on Axelar", + denom_units: [ { - "denom": "uusdt", - "exponent": 0 + denom: 'uusdt', + exponent: 0 }, { - "denom": "usdt", - "exponent": 6 + denom: 'usdt', + exponent: 6 } ], - "base": "uusdt", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "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" + base: 'uusdt', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + 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' }, - "coingecko_id": "tether" + coingecko_id: 'tether' }, { - "description": "Wrapped Ether on Axelar", - "denom_units": [ + description: 'Wrapped Ether on Axelar', + denom_units: [ { - "denom": "weth-wei", - "exponent": 0 + denom: 'weth-wei', + exponent: 0 }, { - "denom": "weth", - "exponent": 18 + denom: 'weth', + exponent: 18 } ], - "base": "weth-wei", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + base: 'weth-wei', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' }, - "coingecko_id": "weth" + coingecko_id: 'weth' }, { - "description": "Wrapped Bitcoin on Axelar", - "denom_units": [ + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ { - "denom": "wbtc-satoshi", - "exponent": 0 + denom: 'wbtc-satoshi', + exponent: 0 }, { - "denom": "wbtc", - "exponent": 8 + denom: 'wbtc', + exponent: 8 } ], - "base": "wbtc-satoshi", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + base: 'wbtc-satoshi', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' }, - "coingecko_id": "wrapped-bitcoin" + coingecko_id: 'wrapped-bitcoin' }, { - "description": "Aave on Axelar", - "denom_units": [ + description: 'Aave on Axelar', + denom_units: [ { - "denom": "aave-wei", - "exponent": 0 + denom: 'aave-wei', + exponent: 0 }, { - "denom": "aave", - "exponent": 18 + denom: 'aave', + exponent: 18 } ], - "base": "aave-wei", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + base: 'aave-wei', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' }, - "coingecko_id": "aave" + coingecko_id: 'aave' }, { - "description": "ApeCoin on Axelar", - "denom_units": [ + description: 'ApeCoin on Axelar', + denom_units: [ { - "denom": "ape-wei", - "exponent": 0 + denom: 'ape-wei', + exponent: 0 }, { - "denom": "ape", - "exponent": 18 + denom: 'ape', + exponent: 18 } ], - "base": "ape-wei", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + base: 'ape-wei', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' }, - "coingecko_id": "apecoin" + coingecko_id: 'apecoin' }, { - "description": "Axie Infinity Shard on Axelar", - "type_asset": "erc20", - "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "denom_units": [ + description: 'Axie Infinity Shard on Axelar', + type_asset: 'erc20', + address: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + denom_units: [ { - "denom": "axs-wei", - "exponent": 0 + denom: 'axs-wei', + exponent: 0 }, { - "denom": "axs", - "exponent": 18 + denom: 'axs', + exponent: 18 } ], - "base": "axs-wei", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + base: 'axs-wei', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' }, - "coingecko_id": "axie-infinity" + coingecko_id: 'axie-infinity' }, { - "description": "Chainlink on Axelar", - "denom_units": [ + description: 'Chainlink on Axelar', + denom_units: [ { - "denom": "link-wei", - "exponent": 0 + denom: 'link-wei', + exponent: 0 }, { - "denom": "link", - "exponent": 18 + denom: 'link', + exponent: 18 } ], - "base": "link-wei", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", - "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" + base: 'link-wei', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + 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' }, - "coingecko_id": "chainlink" + coingecko_id: 'chainlink' }, { - "description": "Maker on Axelar", - "denom_units": [ + description: 'Maker on Axelar', + denom_units: [ { - "denom": "mkr-wei", - "exponent": 0 + denom: 'mkr-wei', + exponent: 0 }, { - "denom": "mkr", - "exponent": 18 + denom: 'mkr', + exponent: 18 } ], - "base": "mkr-wei", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + base: 'mkr-wei', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' }, - "coingecko_id": "maker" + coingecko_id: 'maker' }, { - "description": "Rai Reflex Index on Axelar", - "denom_units": [ + description: 'Rai Reflex Index on Axelar', + denom_units: [ { - "denom": "rai-wei", - "exponent": 0 + denom: 'rai-wei', + exponent: 0 }, { - "denom": "rai", - "exponent": 18 + denom: 'rai', + exponent: 18 } ], - "base": "rai-wei", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + base: 'rai-wei', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' }, - "coingecko_id": "rai" + coingecko_id: 'rai' }, { - "description": "Shiba Inu on Axelar", - "denom_units": [ + description: 'Shiba Inu on Axelar', + denom_units: [ { - "denom": "shib-wei", - "exponent": 0 + denom: 'shib-wei', + exponent: 0 }, { - "denom": "shib", - "exponent": 18 + denom: 'shib', + exponent: 18 } ], - "base": "shib-wei", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + base: 'shib-wei', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' }, - "coingecko_id": "shiba-inu" + coingecko_id: 'shiba-inu' }, { - "description": "Lido Staked Ether on Axelar", - "denom_units": [ + description: 'Lido Staked Ether on Axelar', + denom_units: [ { - "denom": "steth-wei", - "exponent": 0 + denom: 'steth-wei', + exponent: 0 }, { - "denom": "steth", - "exponent": 18 + denom: 'steth', + exponent: 18 } ], - "base": "steth-wei", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + base: 'steth-wei', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' }, - "coingecko_id": "staked-ether" + coingecko_id: 'staked-ether' }, { - "description": "Uniswap on Axelar", - "denom_units": [ + description: 'Uniswap on Axelar', + denom_units: [ { - "denom": "uni-wei", - "exponent": 0 + denom: 'uni-wei', + exponent: 0 }, { - "denom": "uni", - "exponent": 18 + denom: 'uni', + exponent: 18 } ], - "base": "uni-wei", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + base: 'uni-wei', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' }, - "coingecko_id": "uniswap" + coingecko_id: 'uniswap' }, { - "description": "Chain on Axelar", - "denom_units": [ + description: 'Chain on Axelar', + denom_units: [ { - "denom": "xcn-wei", - "exponent": 0 + denom: 'xcn-wei', + exponent: 0 }, { - "denom": "xcn", - "exponent": 18 + denom: 'xcn', + exponent: 18 } ], - "base": "xcn-wei", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + base: 'xcn-wei', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' }, - "coingecko_id": "chain-2" + coingecko_id: 'chain-2' }, { - "description": "Wrapped Polkadot on Axelar", - "denom_units": [ + description: 'Wrapped Polkadot on Axelar', + denom_units: [ { - "denom": "dot-planck", - "exponent": 0 + denom: 'dot-planck', + exponent: 0 }, { - "denom": "dot", - "exponent": 10 + denom: 'dot', + exponent: 10 } ], - "base": "dot-planck", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", - "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" + base: 'dot-planck', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + 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' }, - "coingecko_id": "polkadot" + coingecko_id: 'polkadot' }, { - "description": "Wrapped Moonbeam on Axelar", - "denom_units": [ + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ { - "denom": "wglmr-wei", - "exponent": 0 + denom: 'wglmr-wei', + exponent: 0 }, { - "denom": "wglmr", - "exponent": 18 + denom: 'wglmr', + exponent: 18 } ], - "base": "wglmr-wei", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "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" + base: 'wglmr-wei', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + 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' }, - "coingecko_id": "wrapped-moonbeam" + coingecko_id: 'wrapped-moonbeam' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "bandchain", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'bandchain', + assets: [ { - "description": "The native token of BandChain", - "denom_units": [ + description: 'The native token of BandChain', + denom_units: [ { - "denom": "uband", - "exponent": 0 + denom: 'uband', + exponent: 0 }, { - "denom": "band", - "exponent": 6 + denom: 'band', + exponent: 6 } ], - "base": "uband", - "display": "band", - "name": "Band Protocol", - "symbol": "BAND", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" + base: 'uband', + display: 'band', + name: 'Band Protocol', + symbol: 'BAND', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' }, - "coingecko_id": "band-protocol" + coingecko_id: 'band-protocol' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "bitcanna", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'bitcanna', + 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": [ + 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": "ubcna", - "exponent": 0 + denom: 'ubcna', + exponent: 0 }, { - "denom": "bcna", - "exponent": 6 + denom: 'bcna', + exponent: 6 } ], - "base": "ubcna", - "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" + base: 'ubcna', + 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" + coingecko_id: 'bitcanna' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "bitsong", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'bitsong', + assets: [ { - "description": "BitSong Native Token", - "denom_units": [ + description: 'BitSong Native Token', + denom_units: [ { - "denom": "ubtsg", - "exponent": 0 + denom: 'ubtsg', + exponent: 0 }, { - "denom": "btsg", - "exponent": 6 + denom: 'btsg', + exponent: 6 } ], - "base": "ubtsg", - "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" + base: 'ubtsg', + 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" + type_asset: 'sdk.coin', + coingecko_id: 'bitsong' }, { - "description": "Adam Clay a BitSong Music FanToken", - "denom_units": [ + description: 'Adam Clay a BitSong Music FanToken', + denom_units: [ { - "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "exponent": 0 + denom: 'ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09', + exponent: 0 }, { - "denom": "clay", - "exponent": 6 + denom: 'clay', + exponent: 6 } ], - "base": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "name": "Adam Clay FanToken", - "display": "clay", - "symbol": "CLAY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + base: 'ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09', + name: 'Adam Clay FanToken', + display: 'clay', + symbol: 'CLAY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png' } }, { - "description": "Nicola Fasano a BitSong Music FanToken", - "denom_units": [ + description: 'Nicola Fasano a BitSong Music FanToken', + denom_units: [ { - "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "exponent": 0 + denom: 'ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7', + exponent: 0 }, { - "denom": "fasano", - "exponent": 6 + denom: 'fasano', + exponent: 6 } ], - "base": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "name": "Nicola Fasano Fantoken", - "display": "fasano", - "symbol": "FASANO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + base: 'ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7', + name: 'Nicola Fasano Fantoken', + display: 'fasano', + symbol: 'FASANO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png' } }, { - "description": "Delta 9 a BitSong Music FanToken", - "denom_units": [ + description: 'Delta 9 a BitSong Music FanToken', + denom_units: [ { - "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "exponent": 0 + denom: 'ft575B10B0CEE2C164D9ED6A96313496F164A9607C', + exponent: 0 }, { - "denom": "d9x", - "exponent": 6 + denom: 'd9x', + exponent: 6 } ], - "base": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "name": "Delta 9 Fantoken", - "display": "d9x", - "symbol": "D9X", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + base: 'ft575B10B0CEE2C164D9ED6A96313496F164A9607C', + name: 'Delta 9 Fantoken', + display: 'd9x', + symbol: 'D9X', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png' } }, { - "description": "FONTI a BitSong Music FanToken", - "denom_units": [ + description: 'FONTI a BitSong Music FanToken', + denom_units: [ { - "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "exponent": 0 + denom: 'ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305', + exponent: 0 }, { - "denom": "fonti", - "exponent": 6 + denom: 'fonti', + exponent: 6 } ], - "base": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "name": "FONTI Fantoken", - "display": "fonti", - "symbol": "FONTI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + base: 'ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305', + name: 'FONTI Fantoken', + display: 'fonti', + symbol: 'FONTI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png' } }, { - "description": "BlackJack a BitSong Music FanToken", - "denom_units": [ + description: 'BlackJack a BitSong Music FanToken', + denom_units: [ { - "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "exponent": 0 + denom: 'ft52EEB0EE509AC546ED92EAC8591F731F213DDD16', + exponent: 0 }, { - "denom": "bjks", - "exponent": 6 + denom: 'bjks', + exponent: 6 } ], - "base": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "name": "BlackJack Fantoken", - "display": "bjks", - "symbol": "BJKS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + base: 'ft52EEB0EE509AC546ED92EAC8591F731F213DDD16', + name: 'BlackJack Fantoken', + display: 'bjks', + symbol: 'BJKS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png' } }, { - "description": "Rawanne a BitSong Music FanToken", - "denom_units": [ + description: 'Rawanne a BitSong Music FanToken', + denom_units: [ { - "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "exponent": 0 + denom: 'ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A', + exponent: 0 }, { - "denom": "rwne", - "exponent": 6 + denom: 'rwne', + exponent: 6 } ], - "base": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "name": "Rawanne Fantoken", - "display": "rwne", - "symbol": "RWNE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + base: 'ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A', + name: 'Rawanne Fantoken', + display: 'rwne', + symbol: 'RWNE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png' } }, { - "description": "Enmoda a BitSong Music FanToken", - "denom_units": [ + description: 'Enmoda a BitSong Music FanToken', + denom_units: [ { - "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "exponent": 0 + denom: 'ft85AE1716C5E39EA6D64BBD7898C3899A7B500626', + exponent: 0 }, { - "denom": "enmoda", - "exponent": 6 + denom: 'enmoda', + exponent: 6 } ], - "base": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "name": "Enmoda Fantoken", - "display": "enmoda", - "symbol": "ENMODA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + base: 'ft85AE1716C5E39EA6D64BBD7898C3899A7B500626', + name: 'Enmoda Fantoken', + display: 'enmoda', + symbol: 'ENMODA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png' } }, { - "description": "404Deep Records a BitSong Music FanToken", - "denom_units": [ + description: '404Deep Records a BitSong Music FanToken', + denom_units: [ { - "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "exponent": 0 + denom: 'ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A', + exponent: 0 }, { - "denom": "404dr", - "exponent": 6 + denom: '404dr', + exponent: 6 } ], - "base": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "name": "404Deep Records Fantoken", - "display": "404dr", - "symbol": "404DR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + base: 'ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A', + name: '404Deep Records Fantoken', + display: '404dr', + symbol: '404DR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png' } }, { - "description": "N43 a BitSong Music FanToken", - "denom_units": [ + description: 'N43 a BitSong Music FanToken', + denom_units: [ { - "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "exponent": 0 + denom: 'ft387C1C279D962ED80C09C1D592A92C4275FD7C5D', + exponent: 0 }, { - "denom": "n43", - "exponent": 6 + denom: 'n43', + exponent: 6 } ], - "base": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "name": "N43 Fantoken", - "display": "n43", - "symbol": "N43", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + base: 'ft387C1C279D962ED80C09C1D592A92C4275FD7C5D', + name: 'N43 Fantoken', + display: 'n43', + symbol: 'N43', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png' } }, { - "description": "Puro Lobo a BitSong Music FanToken", - "denom_units": [ + description: 'Puro Lobo a BitSong Music FanToken', + denom_units: [ { - "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "exponent": 0 + denom: 'ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB', + exponent: 0 }, { - "denom": "lobo", - "exponent": 6 + denom: 'lobo', + exponent: 6 } ], - "base": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "name": "Puro Lobo Fantoken", - "display": "lobo", - "symbol": "LOBO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + base: 'ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB', + name: 'Puro Lobo Fantoken', + display: 'lobo', + symbol: 'LOBO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png' } }, { - "description": "Vibranium a BitSong Music FanToken", - "denom_units": [ + description: 'Vibranium a BitSong Music FanToken', + denom_units: [ { - "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "exponent": 0 + denom: 'ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B', + exponent: 0 }, { - "denom": "vibra", - "exponent": 6 + denom: 'vibra', + exponent: 6 } ], - "base": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "name": "Vibranium Fantoken", - "display": "vibra", - "symbol": "VIBRA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + base: 'ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B', + name: 'Vibranium Fantoken', + display: 'vibra', + symbol: 'VIBRA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png' } }, { - "description": "Karina a BitSong Music FanToken", - "denom_units": [ + description: 'Karina a BitSong Music FanToken', + denom_units: [ { - "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "exponent": 0 + denom: 'ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE', + exponent: 0 }, { - "denom": "karina", - "exponent": 6 + denom: 'karina', + exponent: 6 } ], - "base": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "name": "Karina Fantoken", - "display": "karina", - "symbol": "KARINA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + base: 'ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE', + name: 'Karina Fantoken', + display: 'karina', + symbol: 'KARINA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png' } }, { - "description": "Luca Testa a BitSong Music FanToken", - "denom_units": [ + description: 'Luca Testa a BitSong Music FanToken', + denom_units: [ { - "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "exponent": 0 + denom: 'ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12', + exponent: 0 }, { - "denom": "testa", - "exponent": 6 + denom: 'testa', + exponent: 6 } ], - "base": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "name": "Luca Testa Fantoken", - "display": "testa", - "symbol": "TESTA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png" + base: 'ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12', + name: 'Luca Testa Fantoken', + display: 'testa', + symbol: 'TESTA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png' } }, { - "description": "Carolina Marquez a BitSong Music FanToken", - "denom_units": [ + description: 'Carolina Marquez a BitSong Music FanToken', + denom_units: [ { - "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "exponent": 0 + denom: 'ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3', + exponent: 0 }, { - "denom": "cmqz", - "exponent": 6 + denom: 'cmqz', + exponent: 6 } ], - "base": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "name": "Carolina Marquez Fantoken", - "display": "cmqz", - "symbol": "CMQZ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png" + base: 'ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3', + name: 'Carolina Marquez Fantoken', + display: 'cmqz', + symbol: 'CMQZ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "bostrom", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'bostrom', + assets: [ { - "description": "The staking token of Bostrom", - "denom_units": [ + description: 'The staking token of Bostrom', + denom_units: [ { - "denom": "boot", - "exponent": 0 + denom: 'boot', + exponent: 0 } ], - "base": "boot", - "name": "Bostrom", - "display": "boot", - "symbol": "BOOT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png" + base: 'boot', + name: 'Bostrom', + display: 'boot', + symbol: 'BOOT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png' }, - "coingecko_id": "bostrom" + coingecko_id: 'bostrom' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "carbon", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'carbon', + assets: [ { - "description": "The native token of Carbon", - "denom_units": [ + description: 'The native token of Carbon', + denom_units: [ { - "denom": "swth", - "exponent": 0, - "aliases": [] + denom: 'swth', + exponent: 0, + aliases: [] }, { - "denom": "dswth", - "exponent": 8, - "aliases": [ - "SWTH" - ] + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] } ], - "base": "swth", - "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" + base: 'swth', + 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" + coingecko_id: 'switcheo' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cerberus", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cerberus', + assets: [ { - "description": "The native token of Cerberus Chain", - "denom_units": [ + description: 'The native token of Cerberus Chain', + denom_units: [ { - "denom": "ucrbrus", - "exponent": 0 + denom: 'ucrbrus', + exponent: 0 }, { - "denom": "crbrus", - "exponent": 6 + denom: 'crbrus', + exponent: 6 } ], - "base": "ucrbrus", - "name": "Cerberus", - "display": "crbrus", - "symbol": "CRBRUS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png" + base: 'ucrbrus', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png' }, - "coingecko_id": "cerberus-2" + coingecko_id: 'cerberus-2' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cheqd", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cheqd', + assets: [ { - "description": "Native token for the cheqd network", - "denom_units": [ + description: 'Native token for the cheqd network', + denom_units: [ { - "denom": "ncheq", - "exponent": 0 + denom: 'ncheq', + exponent: 0 }, { - "denom": "cheq", - "exponent": 9 + denom: 'cheq', + exponent: 9 } ], - "base": "ncheq", - "display": "cheq", - "name": "cheqd", - "symbol": "CHEQ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" + base: 'ncheq', + display: 'cheq', + name: 'cheqd', + symbol: 'CHEQ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' }, - "coingecko_id": "cheqd-network" + coingecko_id: 'cheqd-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "chihuahua", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'chihuahua', + assets: [ { - "description": "The native token of Chihuahua Chain", - "denom_units": [ + description: 'The native token of Chihuahua Chain', + denom_units: [ { - "denom": "uhuahua", - "exponent": 0 + denom: 'uhuahua', + exponent: 0 }, { - "denom": "huahua", - "exponent": 6 + denom: 'huahua', + exponent: 6 } ], - "base": "uhuahua", - "name": "Chihuahua", - "display": "huahua", - "symbol": "HUAHUA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png" + base: 'uhuahua', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png' }, - "coingecko_id": "chihuahua-token" + coingecko_id: 'chihuahua-token' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "chronicnetwork", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'chronicnetwork', + assets: [ { - "description": "The CHT coin is the governance token within the Chronic Chain network, aimed to serve the entire cannabis community through its payment network, supply chain and trust network.", - "denom_units": [ + description: + 'The CHT coin is the governance token within the Chronic Chain network, aimed to serve the entire cannabis community through its payment network, supply chain and trust network.', + denom_units: [ { - "denom": "ucht", - "exponent": 0 + denom: 'ucht', + exponent: 0 }, { - "denom": "cht", - "exponent": 6 + denom: 'cht', + exponent: 6 } ], - "base": "ucht", - "display": "cht", - "name": "Chronic Token", - "symbol": "CHT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cht.png" + base: 'ucht', + display: 'cht', + name: 'Chronic Token', + symbol: 'CHT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cht.png' }, - "coingecko_id": "cht" + coingecko_id: 'cht' }, { - "description": "The CGAS coin is the transactional token within the Chronic Chain network, aimed to serve the entire cannabis community through its payment network, supply chain and trust network.", - "denom_units": [ + description: + 'The CGAS coin is the transactional token within the Chronic Chain network, aimed to serve the entire cannabis community through its payment network, supply chain and trust network.', + denom_units: [ { - "denom": "ucgas", - "exponent": 0 + denom: 'ucgas', + exponent: 0 }, { - "denom": "cgas", - "exponent": 6 + denom: 'cgas', + exponent: 6 } ], - "base": "ucgas", - "display": "cgas", - "name": "Chronic Gas", - "symbol": "CGAS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png" + base: 'ucgas', + display: 'cgas', + name: 'Chronic Gas', + symbol: 'CGAS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chronicnetwork/images/cgas.png' }, - "coingecko_id": "cgas" + coingecko_id: 'cgas' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "comdex", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'comdex', + assets: [ { - "description": "Native Token of Comdex Protocol", - "denom_units": [ + description: 'Native Token of Comdex Protocol', + denom_units: [ { - "denom": "ucmdx", - "exponent": 0 + denom: 'ucmdx', + exponent: 0 }, { - "denom": "cmdx", - "exponent": 6 + denom: 'cmdx', + exponent: 6 } ], - "base": "ucmdx", - "name": "Comdex", - "display": "cmdx", - "symbol": "CMDX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png" + base: 'ucmdx', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png' }, - "coingecko_id": "comdex" + coingecko_id: 'comdex' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cosmoshub", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cosmoshub', + assets: [ { - "description": "The native staking and governance token of the Cosmos Hub.", - "denom_units": [ + description: + 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ { - "denom": "uatom", - "exponent": 0 + denom: 'uatom', + exponent: 0 }, { - "denom": "atom", - "exponent": 6 + denom: 'atom', + exponent: 6 } ], - "base": "uatom", - "name": "Cosmos", - "display": "atom", - "symbol": "ATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + base: 'uatom', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, - "coingecko_id": "cosmos" + coingecko_id: 'cosmos' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "crescent", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'crescent', + assets: [ { - "description": "The native token of Crescent", - "denom_units": [ + description: 'The native token of Crescent', + denom_units: [ { - "denom": "ucre", - "exponent": 0, - "aliases": [] + denom: 'ucre', + exponent: 0, + aliases: [] }, { - "denom": "cre", - "exponent": 6, - "aliases": [] + denom: 'cre', + exponent: 6, + aliases: [] } ], - "base": "ucre", - "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" + base: 'ucre', + 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" + coingecko_id: 'crescent-network' }, { - "description": "The bonded token of Crescent", - "denom_units": [ + description: 'The bonded token of Crescent', + denom_units: [ { - "denom": "ubcre", - "exponent": 0, - "aliases": [] + denom: 'ubcre', + exponent: 0, + aliases: [] }, { - "denom": "bcre", - "exponent": 6, - "aliases": [] + denom: 'bcre', + exponent: 6, + aliases: [] } ], - "base": "ubcre", - "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" + base: 'ubcre', + 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": "crescent-network" + coingecko_id: 'crescent-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cronos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cronos', + assets: [ { - "description": "Cronos Chain - Get Instant DApp Portability with EVM Support", - "denom_units": [ + description: + 'Cronos Chain - Get Instant DApp Portability with EVM Support', + denom_units: [ { - "denom": "basecro", - "exponent": 0 + denom: 'basecro', + exponent: 0 }, { - "denom": "cro", - "exponent": 18 + denom: 'cro', + exponent: 18 } ], - "base": "basecro", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/crypto-org-chain/cronos-docs/master/docs/.vuepress/public/cronos.svg", - "png": "https://raw.githubusercontent.com/crypto-org-chain/cronos-docs/master/docs/.vuepress/public/CRO_icon.png" + base: 'basecro', + name: 'Cronos', + display: 'cro', + symbol: 'CRO', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/crypto-org-chain/cronos-docs/master/docs/.vuepress/public/cronos.svg', + png: + 'https://raw.githubusercontent.com/crypto-org-chain/cronos-docs/master/docs/.vuepress/public/CRO_icon.png' }, - "coingecko_id": "cronos" + coingecko_id: 'cronos' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cryptoorgchain", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cryptoorgchain', + assets: [ { - "description": "CRO coin is the token for the Crypto.com platform.", - "denom_units": [ + description: 'CRO coin is the token for the Crypto.com platform.', + denom_units: [ { - "denom": "basecro", - "exponent": 0 + denom: 'basecro', + exponent: 0 }, { - "denom": "cro", - "exponent": 8 + denom: 'cro', + exponent: 8 } ], - "base": "basecro", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png" + base: 'basecro', + name: 'Cronos', + display: 'cro', + symbol: 'CRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' }, - "coingecko_id": "crypto-com-chain" + coingecko_id: 'crypto-com-chain' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "cudos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'cudos', + assets: [ { - "description": "The native token of the Cudos blockchain", - "denom_units": [ + description: 'The native token of the Cudos blockchain', + denom_units: [ { - "denom": "acudos", - "exponent": 0, - "aliases": [ - "attocudos" - ] + denom: 'acudos', + exponent: 0, + aliases: ['attocudos'] }, { - "denom": "cudos", - "exponent": 18, - "aliases": [] + denom: 'cudos', + exponent: 18, + aliases: [] } ], - "base": "acudos", - "name": "Cudos", - "display": "cudos", - "symbol": "CUDOS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg" + base: 'acudos', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' }, - "coingecko_id": "cudos" + coingecko_id: 'cudos' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "decentr", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'decentr', + assets: [ { - "description": "The native token of Decentr", - "denom_units": [ + description: 'The native token of Decentr', + denom_units: [ { - "denom": "udec", - "exponent": 0, - "aliases": [] + denom: 'udec', + exponent: 0, + aliases: [] }, { - "denom": "dec", - "exponent": 6, - "aliases": [] + denom: 'dec', + exponent: 6, + aliases: [] } ], - "base": "udec", - "name": "Decentr", - "display": "dec", - "symbol": "DEC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg" + base: 'udec', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' }, - "coingecko_id": "decentr" + coingecko_id: 'decentr' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "desmos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'desmos', + assets: [ { - "description": "The native token of Desmos", - "denom_units": [ + description: 'The native token of Desmos', + denom_units: [ { - "denom": "udsm", - "exponent": 0, - "aliases": [] + denom: 'udsm', + exponent: 0, + aliases: [] }, { - "denom": "dsm", - "exponent": 6, - "aliases": [] + denom: 'dsm', + exponent: 6, + aliases: [] } ], - "base": "udsm", - "name": "Desmos", - "display": "dsm", - "symbol": "DSM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" + base: 'udsm', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' }, - "coingecko_id": "desmos" + coingecko_id: 'desmos' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "dig", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'dig', + assets: [ { - "description": "Native token of Dig Chain", - "denom_units": [ + description: 'Native token of Dig Chain', + denom_units: [ { - "denom": "udig", - "exponent": 0 + denom: 'udig', + exponent: 0 }, { - "denom": "dig", - "exponent": 6 + denom: 'dig', + exponent: 6 } ], - "base": "udig", - "name": "Dig Chain", - "display": "dig", - "symbol": "DIG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + base: 'udig', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' }, - "coingecko_id": "dig-chain" + coingecko_id: 'dig-chain' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "echelon", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'echelon', + assets: [ { - "description": "Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics", - "denom_units": [ + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ { - "denom": "aechelon", - "exponent": 0 + denom: 'aechelon', + exponent: 0 }, { - "denom": "echelon", - "exponent": 18 + denom: 'echelon', + exponent: 18 } ], - "base": "aechelon", - "name": "Echelon", - "display": "echelon", - "symbol": "ECH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png" + base: 'aechelon', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png' }, - "coingecko_id": "echelon" + coingecko_id: 'echelon' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "emoney", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'emoney', + assets: [ { - "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": [ + 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": "ungm", - "exponent": 0 + denom: 'ungm', + exponent: 0 }, { - "denom": "ngm", - "exponent": 6 + denom: 'ngm', + exponent: 6 } ], - "base": "ungm", - "name": "e-Money", - "display": "ngm", - "symbol": "NGM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png" + base: 'ungm', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png' }, - "coingecko_id": "e-money" + coingecko_id: 'e-money' }, { - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", - "denom_units": [ + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ { - "denom": "eeur", - "exponent": 0 + denom: 'eeur', + exponent: 0 }, { - "denom": "EUR", - "exponent": 6 + denom: 'EUR', + exponent: 6 } ], - "base": "eeur", - "name": "e-Money EUR", - "display": "eur", - "symbol": "EEUR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png" + base: 'eeur', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png' }, - "coingecko_id": "e-money-eur" + coingecko_id: 'e-money-eur' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "ethos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'ethos', + assets: [ { - "description": "The native token of Ethos", - "denom_units": [ + description: 'The native token of Ethos', + denom_units: [ { - "denom": "aRYT", - "exponent": 0 + denom: 'aRYT', + exponent: 0 }, { - "denom": "RYT", - "exponent": 18 + denom: 'RYT', + exponent: 18 } ], - "base": "aRYT", - "name": "RYT", - "display": "RYT", - "symbol": "RYT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png" + base: 'aRYT', + name: 'RYT', + display: 'RYT', + symbol: 'RYT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "evmos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'evmos', + assets: [ { - "description": "The native EVM, governance and staking token of the Evmos Hub", - "denom_units": [ + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ { - "denom": "aevmos", - "exponent": 0 + denom: 'aevmos', + exponent: 0 }, { - "denom": "evmos", - "exponent": 18 + denom: 'evmos', + exponent: 18 } ], - "base": "aevmos", - "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" + base: 'aevmos', + 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" + coingecko_id: 'evmos' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "fetchhub", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'fetchhub', + assets: [ { - "description": "The native staking and governance token of the Fetch Hub.", - "denom_units": [ + description: + 'The native staking and governance token of the Fetch Hub.', + denom_units: [ { - "denom": "afet", - "exponent": 0 + denom: 'afet', + exponent: 0 }, { - "denom": "fet", - "exponent": 18 + denom: 'fet', + exponent: 18 } ], - "base": "afet", - "name": "fetch-ai", - "display": "fet", - "symbol": "FET", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" + base: 'afet', + name: 'fetch-ai', + display: 'fet', + symbol: 'FET', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' }, - "coingecko_id": "fetch-ai" + coingecko_id: 'fetch-ai' }, { - "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", - "denom_units": [ + description: + 'The MOBX coin rewards the use of eco-friendly micromobility transportation.', + denom_units: [ { - "denom": "nanomobx", - "exponent": 0 + denom: 'nanomobx', + exponent: 0 }, { - "denom": "mobx", - "exponent": 9 + denom: 'mobx', + exponent: 9 } ], - "base": "nanomobx", - "name": "MOBIX", - "display": "mobx", - "symbol": "MOBX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png" + base: 'nanomobx', + name: 'MOBIX', + display: 'mobx', + symbol: 'MOBX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "firmachain", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'firmachain', + assets: [ { - "description": "The native token of FirmaChain", - "denom_units": [ + description: 'The native token of FirmaChain', + denom_units: [ { - "denom": "ufct", - "exponent": 0 + denom: 'ufct', + exponent: 0 }, { - "denom": "fct", - "exponent": 6 + denom: 'fct', + exponent: 6 } ], - "base": "ufct", - "name": "FirmaChain", - "display": "fct", - "symbol": "FCT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg" + base: 'ufct', + name: 'FirmaChain', + display: 'fct', + symbol: 'FCT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg' }, - "coingecko_id": "firmachain" + coingecko_id: 'firmachain' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "galaxy", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'galaxy', + assets: [ { - "description": "GLX is the staking token of the Galaxy Chain", - "denom_units": [ + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ { - "denom": "uglx", - "exponent": 0 + denom: 'uglx', + exponent: 0 }, { - "denom": "glx", - "exponent": 6 + denom: 'glx', + exponent: 6 } ], - "base": "uglx", - "name": "Galaxy", - "display": "glx", - "symbol": "GLX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png" + base: 'uglx', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "genesisl1", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'genesisl1', + assets: [ { - "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", - "denom_units": [ + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ { - "denom": "el1", - "exponent": 0 + denom: 'el1', + exponent: 0 }, { - "denom": "l1", - "exponent": 18 + denom: 'l1', + exponent: 18 } ], - "base": "el1", - "name": "GenesisL1", - "display": "l1", - "symbol": "L1", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png" + base: 'el1', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "gravitybridge", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'gravitybridge', + assets: [ { - "description": "The native token of Gravity Bridge", - "denom_units": [ + description: 'The native token of Gravity Bridge', + denom_units: [ { - "denom": "ugraviton", - "exponent": 0, - "aliases": [] + denom: 'ugraviton', + exponent: 0, + aliases: [] }, { - "denom": "graviton", - "exponent": 6, - "aliases": [] + denom: 'graviton', + exponent: 6, + aliases: [] } ], - "base": "ugraviton", - "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: 'ugraviton', + 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' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "idep", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'idep', + assets: [ { - "description": "The native token of IDEP chain", - "denom_units": [ + description: 'The native token of IDEP chain', + denom_units: [ { - "denom": "IDEP", - "exponent": 6, - "aliases": [] + denom: 'IDEP', + exponent: 6, + aliases: [] }, { - "denom": "idep", - "exponent": 0, - "aliases": [] + denom: 'idep', + exponent: 0, + aliases: [] } ], - "base": "idep", - "name": "IDEP", - "display": "IDEP", - "symbol": "IDEP", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png" + base: 'idep', + name: 'IDEP', + display: 'IDEP', + symbol: 'IDEP', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/idep/images/idep.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "impacthub", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'impacthub', + assets: [ { - "description": "The native token of IXO Chain", - "denom_units": [ + description: 'The native token of IXO Chain', + denom_units: [ { - "denom": "uixo", - "exponent": 0 + denom: 'uixo', + exponent: 0 }, { - "denom": "ixo", - "exponent": 6 + denom: 'ixo', + exponent: 6 } ], - "base": "uixo", - "name": "IXO", - "display": "ixo", - "symbol": "IXO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png" + base: 'uixo', + name: 'IXO', + display: 'ixo', + symbol: 'IXO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png' }, - "coingecko_id": "ixo" + coingecko_id: 'ixo' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "injective", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'injective', + assets: [ { - "description": "The INJ token is the native governance token for the Injective chain.", - "denom_units": [ + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ { - "denom": "uinj", - "exponent": 0 + denom: 'uinj', + exponent: 0 }, { - "denom": "inj", - "exponent": 6 + denom: 'inj', + exponent: 6 } ], - "base": "uinj", - "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" + base: 'uinj', + 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" + coingecko_id: 'injective-protocol' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "irisnet", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'irisnet', + assets: [ { - "description": "The IRIS token is the native governance token for the IrisNet chain.", - "denom_units": [ + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ { - "denom": "uiris", - "exponent": 0 + denom: 'uiris', + exponent: 0 }, { - "denom": "iris", - "exponent": 6 + denom: 'iris', + exponent: 6 } ], - "base": "uiris", - "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" + base: 'uiris', + 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" + coingecko_id: 'iris-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "juno", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'juno', + assets: [ { - "description": "The native token of JUNO Chain", - "denom_units": [ + description: 'The native token of JUNO Chain', + denom_units: [ { - "denom": "ujuno", - "exponent": 0 + denom: 'ujuno', + exponent: 0 }, { - "denom": "juno", - "exponent": 6 + denom: 'juno', + exponent: 6 } ], - "base": "ujuno", - "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" + base: 'ujuno', + 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" + coingecko_id: 'juno-network' }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "denom_units": [ + description: 'The native token cw20 for Neta on Juno Chain', + type_asset: 'cw20', + address: + 'juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + denom_units: [ { - "denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "exponent": 0 + denom: + 'cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + exponent: 0 }, { - "denom": "neta", - "exponent": 6 + denom: 'neta', + exponent: 6 } ], - "base": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg" + base: + 'cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' }, - "coingecko_id": "neta" + coingecko_id: 'neta' }, { - "description": "The native token cw20 for Marble DAO on Juno Chain", - "type_asset": "cw20", - "address": "juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "denom_units": [ + description: 'The native token cw20 for Marble DAO on Juno Chain', + type_asset: 'cw20', + address: + 'juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + denom_units: [ { - "denom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "exponent": 0 + denom: + 'cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + exponent: 0 }, { - "denom": "marble", - "exponent": 3 + denom: 'marble', + exponent: 3 } ], - "base": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "name": "Marble", - "display": "marble", - "symbol": "MARBLE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg" + base: + 'cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' }, - "coingecko_id": "marble" + coingecko_id: 'marble' }, { - "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", - "type_asset": "cw20", - "address": "juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "denom_units": [ + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + type_asset: 'cw20', + address: + 'juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + denom_units: [ { - "denom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "exponent": 0 + denom: + 'cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + exponent: 0 }, { - "denom": "hope", - "exponent": 6 + denom: 'hope', + exponent: 6 } ], - "base": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "name": "Hope Galaxy", - "display": "hope", - "symbol": "HOPE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg" + base: + 'cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' }, - "coingecko_id": "hope-galaxy" + coingecko_id: 'hope-galaxy' }, { - "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", - "type_asset": "cw20", - "address": "juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "denom_units": [ + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + type_asset: 'cw20', + address: + 'juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + denom_units: [ { - "denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "exponent": 0 + denom: + 'cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + exponent: 0 }, { - "denom": "rac", - "exponent": 6 + denom: 'rac', + exponent: 6 } ], - "base": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "name": "Racoon", - "display": "rac", - "symbol": "RAC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg" + base: + 'cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + name: 'Racoon', + display: 'rac', + symbol: 'RAC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' }, - "coingecko_id": "racoon" + coingecko_id: 'racoon' }, { - "description": "The native token of Marble DEX on Juno Chain", - "type_asset": "cw20", - "address": "juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "denom_units": [ + description: 'The native token of Marble DEX on Juno Chain', + type_asset: 'cw20', + address: + 'juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + denom_units: [ { - "denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "exponent": 0 + denom: + 'cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + exponent: 0 }, { - "denom": "block", - "exponent": 6 + denom: 'block', + exponent: 6 } ], - "base": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "name": "Block", - "display": "block", - "symbol": "BLOCK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg" + base: + 'cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' } }, { - "description": "The DAO token to build consensus among Hong Kong People", - "type_asset": "cw20", - "address": "juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "denom_units": [ + description: 'The DAO token to build consensus among Hong Kong People', + type_asset: 'cw20', + address: + 'juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + denom_units: [ { - "denom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "exponent": 0, - "aliases": [ - "dhk" - ] + denom: + 'cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + exponent: 0, + aliases: ['dhk'] } ], - "base": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "name": "DHK", - "display": "dhk", - "symbol": "DHK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg" + base: + 'cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' } }, { - "description": "Token governance for Junoswap", - "type_asset": "cw20", - "address": "juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "denom_units": [ + description: 'Token governance for Junoswap', + type_asset: 'cw20', + address: + 'juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + denom_units: [ { - "denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "exponent": 0 + denom: + 'cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + exponent: 0 }, { - "denom": "raw", - "exponent": 6 + denom: 'raw', + exponent: 6 } ], - "base": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "name": "JunoSwap", - "display": "raw", - "symbol": "RAW", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png" + base: + 'cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png' }, - "coingecko_id": "junoswap-raw-dao" + coingecko_id: 'junoswap-raw-dao' }, { - "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", - "type_asset": "cw20", - "address": "juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "denom_units": [ + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + type_asset: 'cw20', + address: + 'juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + denom_units: [ { - "denom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "exponent": 0 + denom: + 'cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + exponent: 0 }, { - "denom": "asvt", - "exponent": 6 + denom: 'asvt', + exponent: 6 } ], - "base": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "name": "Another.Software Validator Token", - "display": "asvt", - "symbol": "ASVT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png" + base: + 'cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' } }, { - "description": "IBC HNS is HNS, coin of Handshake, decentralized root namesystem, but wrapped to cosmos for IBC support by Another.Software through Juno netowrk.", - "type_asset": "cw20", - "address": "juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "denom_units": [ + description: + 'IBC HNS is HNS, coin of Handshake, decentralized root namesystem, but wrapped to cosmos for IBC support by Another.Software through Juno netowrk.', + type_asset: 'cw20', + address: + 'juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + denom_units: [ { - "denom": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "exponent": 0 + denom: + 'cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + exponent: 0 }, { - "denom": "hns", - "exponent": 6 + denom: 'hns', + exponent: 6 } ], - "base": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "name": "IBC HNS (Handshake)", - "display": "hns", - "symbol": "HNS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg" + base: + 'cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + name: 'IBC HNS (Handshake)', + display: 'hns', + symbol: 'HNS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg' } }, { - "description": "DAO dedicated to building tools on the Juno Network", - "type_asset": "cw20", - "address": "juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "denom_units": [ + description: 'DAO dedicated to building tools on the Juno Network', + type_asset: 'cw20', + address: + 'juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + denom_units: [ { - "denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "exponent": 0 + denom: + 'cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + exponent: 0 }, { - "denom": "joe", - "exponent": 6 + denom: 'joe', + exponent: 6 } ], - "base": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "name": "JoeDAO", - "display": "joe", - "symbol": "JOE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png" + base: + 'cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' } }, { - "description": "Governance Token for Digital Land Acquisition DAO", - "type_asset": "cw20", - "address": "juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "denom_units": [ + description: 'Governance Token for Digital Land Acquisition DAO', + type_asset: 'cw20', + address: + 'juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + denom_units: [ { - "denom": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "exponent": 0 + denom: + 'cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + exponent: 0 }, { - "denom": "dla", - "exponent": 6 + denom: 'dla', + exponent: 6 } ], - "base": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "name": "Digital Land Acquisition DAO", - "display": "dla", - "symbol": "DLA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg" + base: + 'cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + name: 'Digital Land Acquisition DAO', + display: 'dla', + symbol: 'DLA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg' } }, { - "description": "DeFi gaming platform built on Juno", - "type_asset": "cw20", - "address": "juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "denom_units": [ + description: 'DeFi gaming platform built on Juno', + type_asset: 'cw20', + address: + 'juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + denom_units: [ { - "denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "exponent": 0 + denom: + 'cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + exponent: 0 }, { - "denom": "glto", - "exponent": 6 + denom: 'glto', + exponent: 6 } ], - "base": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "name": "Gelotto", - "display": "glto", - "symbol": "GLTO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" + base: + 'cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' } }, { - "description": "Gelotto Year 1 Grand Prize Token", - "type_asset": "cw20", - "address": "juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "denom_units": [ + description: 'Gelotto Year 1 Grand Prize Token', + type_asset: 'cw20', + address: + 'juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + denom_units: [ { - "denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "exponent": 0 + denom: + 'cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + exponent: 0 }, { - "denom": "gkey", - "exponent": 6 + denom: 'gkey', + exponent: 6 } ], - "base": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "name": "GKey", - "display": "gkey", - "symbol": "GKEY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg" + base: + 'cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' } }, { - "description": "The native token cw20 for BlackHole on Juno Chain", - "type_asset": "cw20", - "address": "juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "denom_units": [ + description: 'The native token cw20 for BlackHole on Juno Chain', + type_asset: 'cw20', + address: + 'juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + denom_units: [ { - "denom": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "exponent": 0 + denom: + 'cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + exponent: 0 }, { - "denom": "blkh", - "exponent": 4 + denom: 'blkh', + exponent: 4 } ], - "base": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "name": "Blackhole", - "display": "blkh", - "symbol": "BLKH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.svg" + base: + 'cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + name: 'Blackhole', + display: 'blkh', + symbol: 'BLKH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.svg' } + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + type_asset: 'cw20', + address: + 'juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + denom_units: [ + { + denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + exponent: 0, + aliases: ['uneta'] + }, + { + denom: 'neta', + exponent: 6 + } + ], + base: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png' + }, + coingecko_id: 'neta' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "kava", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'kava', + assets: [ { - "description": "The native staking and governance token of Kava", - "denom_units": [ + description: 'The native staking and governance token of Kava', + denom_units: [ { - "denom": "ukava", - "exponent": 0 + denom: 'ukava', + exponent: 0 }, { - "denom": "kava", - "exponent": 6 + denom: 'kava', + exponent: 6 } ], - "base": "ukava", - "name": "Kava", - "display": "kava", - "symbol": "KAVA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png" + base: 'ukava', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png' }, - "coingecko_id": "kava" + coingecko_id: 'kava' }, { - "description": "Governance token of Kava Lend Protocol", - "denom_units": [ + description: 'Governance token of Kava Lend Protocol', + denom_units: [ { - "denom": "hard", - "exponent": 0 + denom: 'hard', + exponent: 0 }, { - "denom": "HARD", - "exponent": 6 + denom: 'HARD', + exponent: 6 } ], - "base": "hard", - "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" + base: 'hard', + 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": "hard-protocol" + coingecko_id: 'hard-protocol' }, { - "description": "Governance token of Kava Swap Protocol", - "denom_units": [ + description: 'Governance token of Kava Swap Protocol', + denom_units: [ { - "denom": "swp", - "exponent": 0 + denom: 'swp', + exponent: 0 }, { - "denom": "SWP", - "exponent": 6 + denom: 'SWP', + exponent: 6 } ], - "base": "swp", - "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" + base: 'swp', + 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" + coingecko_id: 'kava-swap' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "kichain", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'kichain', + assets: [ { - "description": "The native token of Ki Chain", - "denom_units": [ + description: 'The native token of Ki Chain', + denom_units: [ { - "denom": "uxki", - "exponent": 0 + denom: 'uxki', + exponent: 0 }, { - "denom": "xki", - "exponent": 6 + denom: 'xki', + exponent: 6 } ], - "base": "uxki", - "name": "Ki", - "display": "xki", - "symbol": "XKI", - "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" + base: 'uxki', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + 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' }, - "coingecko_id": "ki" + coingecko_id: 'ki' }, { - "description": "ELEVENPARIS loyalty token on KiChain", - "type_asset": "cw20", - "address": "ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "denom_units": [ + description: 'ELEVENPARIS loyalty token on KiChain', + type_asset: 'cw20', + address: + 'ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy', + denom_units: [ { - "denom": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "exponent": 0 + denom: + 'cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy', + exponent: 0 }, { - "denom": "lvn", - "exponent": 6 + denom: 'lvn', + exponent: 6 } ], - "base": "cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy", - "name": "LVN", - "display": "lvn", - "symbol": "LVN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png" + base: + 'cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy', + name: 'LVN', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' }, - "coingecko_id": "lvn" + coingecko_id: 'lvn' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "konstellation", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'konstellation', + assets: [ { - "description": "The native token of Konstellation Network", - "denom_units": [ + description: 'The native token of Konstellation Network', + denom_units: [ { - "denom": "udarc", - "exponent": 0 + denom: 'udarc', + exponent: 0 }, { - "denom": "darc", - "exponent": 6 + denom: 'darc', + exponent: 6 } ], - "base": "udarc", - "name": "DARC", - "display": "darc", - "symbol": "DARC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg" + base: 'udarc', + name: 'DARC', + display: 'darc', + symbol: 'DARC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' }, - "coingecko_id": "darcmatter-coin" + coingecko_id: 'darcmatter-coin' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "likecoin", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'likecoin', + assets: [ { - "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": [ + 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": "nanolike", - "exponent": 0 + denom: 'nanolike', + exponent: 0 }, { - "denom": "like", - "exponent": 9 + denom: 'like', + exponent: 9 } ], - "base": "nanolike", - "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" + base: 'nanolike', + 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" + coingecko_id: 'likecoin' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "logos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'logos', + assets: [ { - "description": "The native token of Logos", - "denom_units": [ + description: 'The native token of Logos', + denom_units: [ { - "denom": "aLYT", - "exponent": 0 + denom: 'aLYT', + exponent: 0 }, { - "denom": "LYT", - "exponent": 18 + denom: 'LYT', + exponent: 18 } ], - "base": "aLYT", - "name": "LYT", - "display": "LYT", - "symbol": "LYT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png" + base: 'aLYT', + name: 'LYT', + display: 'LYT', + symbol: 'LYT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "lumenx", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'lumenx', + assets: [ { - "description": "The native token of Lumen Network", - "denom_units": [ + description: 'The native token of Lumen Network', + denom_units: [ { - "denom": "ulumen", - "exponent": 0 + denom: 'ulumen', + exponent: 0 }, { - "denom": "lumen", - "exponent": 6 + denom: 'lumen', + exponent: 6 } ], - "base": "ulumen", - "name": "LUMEN", - "display": "lumen", - "symbol": "LUMEN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png" + base: 'ulumen', + name: 'LUMEN', + display: 'lumen', + symbol: 'LUMEN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "lumnetwork", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'lumnetwork', + assets: [ { - "description": "Native token of the Lum Network", - "denom_units": [ + description: 'Native token of the Lum Network', + denom_units: [ { - "denom": "ulum", - "exponent": 0 + denom: 'ulum', + exponent: 0 }, { - "denom": "lum", - "exponent": 6 + denom: 'lum', + exponent: 6 } ], - "base": "ulum", - "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" + base: 'ulum', + 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" + coingecko_id: 'lum-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "meme", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'meme', + assets: [ { - "description": "MEME Token (MEME) is the native staking token of the MEME Chain", - "denom_units": [ + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ { - "denom": "umeme", - "exponent": 0 + denom: 'umeme', + exponent: 0 }, { - "denom": "meme", - "exponent": 6 + denom: 'meme', + exponent: 6 } ], - "base": "umeme", - "name": "MEME", - "display": "meme", - "symbol": "MEME", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg" + base: 'umeme', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "microtick", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'microtick', + assets: [ { - "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", - "denom_units": [ + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ { - "denom": "utick", - "exponent": 0 + denom: 'utick', + exponent: 0 }, { - "denom": "tick", - "exponent": 6 + denom: 'tick', + exponent: 6 } ], - "base": "utick", - "display": "tick", - "name": "Microtick", - "symbol": "TICK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg" + base: 'utick', + display: 'tick', + name: 'Microtick', + symbol: 'TICK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "mythos", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'mythos', + assets: [ { - "description": "The native token of Mythos", - "denom_units": [ + description: 'The native token of Mythos', + denom_units: [ { - "denom": "aMYT", - "exponent": 0 + denom: 'aMYT', + exponent: 0 }, { - "denom": "MYT", - "exponent": 18 + denom: 'MYT', + exponent: 18 } ], - "base": "aMYT", - "name": "MYT", - "display": "MYT", - "symbol": "MYT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.png" + base: 'aMYT', + name: 'MYT', + display: 'MYT', + symbol: 'MYT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "octa", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'octa', + assets: [ { - "description": "The native token of Octa Chain", - "denom_units": [ + description: 'The native token of Octa Chain', + denom_units: [ { - "denom": "uocta", - "exponent": 0, - "aliases": [] + denom: 'uocta', + exponent: 0, + aliases: [] }, { - "denom": "octa", - "exponent": 6, - "aliases": [] + denom: 'octa', + exponent: 6, + aliases: [] } ], - "base": "uocta", - "display": "octa", - "name": "Octa", - "symbol": "OCTA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/octa/images/octa.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/octa/images/octa.svg" + base: 'uocta', + display: 'octa', + name: 'Octa', + symbol: 'OCTA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/octa/images/octa.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/octa/images/octa.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "odin", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'odin', + assets: [ { - "description": "Staking and goverance token for ODIN Protocol", - "denom_units": [ + description: 'Staking and goverance token for ODIN Protocol', + denom_units: [ { - "denom": "loki", - "exponent": 0 + denom: 'loki', + exponent: 0 }, { - "denom": "odin", - "exponent": 6 + denom: 'odin', + exponent: 6 } ], - "base": "loki", - "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" + base: 'loki', + 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' } }, { - "description": "GEO token for ODIN Protocol", - "denom_units": [ + description: 'GEO token for ODIN Protocol', + denom_units: [ { - "denom": "mGeo", - "exponent": 0 + denom: 'mGeo', + exponent: 0 }, { - "denom": "geo", - "exponent": 6 + denom: 'geo', + exponent: 6 } ], - "base": "mGeo", - "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: 'mGeo', + 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' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "omniflixhub", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'omniflixhub', + assets: [ { - "description": "The native staking token of OmniFlix Hub.", - "denom_units": [ + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ { - "denom": "uflix", - "exponent": 0 + denom: 'uflix', + exponent: 0 }, { - "denom": "flix", - "exponent": 6 + denom: 'flix', + exponent: 6 } ], - "base": "uflix", - "name": "Flix", - "display": "flix", - "symbol": "FLIX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png" + base: 'uflix', + name: 'Flix', + display: 'flix', + symbol: 'FLIX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png' }, - "coingecko_id": "omniflix-network" + coingecko_id: 'omniflix-network' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "oraichain", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'oraichain', + assets: [ { - "description": "The native token of Oraichain", - "denom_units": [ + description: 'The native token of Oraichain', + denom_units: [ { - "denom": "uorai", - "exponent": 0 + denom: 'uorai', + exponent: 0 }, { - "denom": "orai", - "exponent": 6 + denom: 'orai', + exponent: 6 } ], - "base": "uorai", - "name": "Oraichain", - "display": "orai", - "symbol": "ORAI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg" + base: 'uorai', + name: 'Oraichain', + display: 'orai', + symbol: 'ORAI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg' }, - "coingecko_id": "oraichain-token" + coingecko_id: 'oraichain-token' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "osmosis", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'osmosis', + assets: [ { - "description": "The native token of Osmosis", - "denom_units": [ + description: 'The native token of Osmosis', + denom_units: [ { - "denom": "uosmo", - "exponent": 0, - "aliases": [] + denom: 'uosmo', + exponent: 0, + aliases: [] }, { - "denom": "osmo", - "exponent": 6, - "aliases": [] + denom: 'osmo', + exponent: 6, + aliases: [] } ], - "base": "uosmo", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + base: 'uosmo', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' }, - "coingecko_id": "osmosis", - "keywords": [ - "dex", - "staking" - ] + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'] }, { - "denom_units": [ + denom_units: [ { - "denom": "uion", - "exponent": 0 + denom: 'uion', + exponent: 0 }, { - "denom": "ion", - "exponent": 6 + denom: 'ion', + exponent: 6 } ], - "base": "uion", - "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" + base: 'uion', + 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" - ] + coingecko_id: 'ion', + keywords: ['memecoin'] } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "panacea", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'panacea', + assets: [ { - "description": "Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem", - "denom_units": [ + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ { - "denom": "umed", - "exponent": 0 + denom: 'umed', + exponent: 0 }, { - "denom": "med", - "exponent": 6 + denom: 'med', + exponent: 6 } ], - "base": "umed", - "name": "MediBloc", - "display": "med", - "symbol": "MED", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png" + base: 'umed', + name: 'MediBloc', + display: 'med', + symbol: 'MED', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png' }, - "coingecko_id": "medibloc" + coingecko_id: 'medibloc' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "persistence", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'persistence', + assets: [ { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ { - "denom": "uxprt", - "exponent": 0 + denom: 'uxprt', + exponent: 0 }, { - "denom": "xprt", - "exponent": 6 + denom: 'xprt', + exponent: 6 } ], - "base": "uxprt", - "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" + base: 'uxprt', + 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" + coingecko_id: 'persistence' }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "denom_units": [ + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ { - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "exponent": 0, - "aliases": [ - "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + exponent: 0, + aliases: [ + 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', + '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' ] }, { - "denom": "pstake", - "exponent": 18 + denom: 'pstake', + exponent: 18 } ], - "base": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", - "ibc": { - "source_channel": "channel-24", - "dst_channel": "channel-38", - "source_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006" + base: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + ibc: { + source_channel: 'channel-24', + dst_channel: 'channel-38', + source_denom: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' }, - "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" + 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' }, - "coingecko_id": "pstake-finance" + coingecko_id: 'pstake-finance' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "provenance", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'provenance', + assets: [ { - "description": "Hash is the staking token of the Provenance Blockchain", - "denom_units": [ + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ { - "denom": "nhash", - "exponent": 0, - "aliases": [] + denom: 'nhash', + exponent: 0, + aliases: [] }, { - "denom": "hash", - "exponent": 9, - "aliases": [] + denom: 'hash', + exponent: 9, + aliases: [] } ], - "base": "nhash", - "name": "Hash", - "display": "hash", - "symbol": "HASH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.svg" + base: 'nhash', + name: 'Hash', + display: 'hash', + symbol: 'HASH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.svg' }, - "coingecko_id": "provenance-blockchain" + coingecko_id: 'provenance-blockchain' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "regen", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'regen', + assets: [ { - "description": "REGEN coin is the token for the Regen Network Platform", - "denom_units": [ + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ { - "denom": "uregen", - "exponent": 0 + denom: 'uregen', + exponent: 0 }, { - "denom": "regen", - "exponent": 6 + denom: 'regen', + exponent: 6 } ], - "base": "uregen", - "name": "Regen Network", - "display": "regen", - "symbol": "REGEN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" + base: 'uregen', + name: 'Regen Network', + display: 'regen', + symbol: 'REGEN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png' }, - "coingecko_id": "regen" + coingecko_id: 'regen' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "rizon", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'rizon', + assets: [ { - "description": "Native token of Rizon Chain", - "denom_units": [ + description: 'Native token of Rizon Chain', + denom_units: [ { - "denom": "uatolo", - "exponent": 0 + denom: 'uatolo', + exponent: 0 }, { - "denom": "atolo", - "exponent": 6 + denom: 'atolo', + exponent: 6 } ], - "base": "uatolo", - "name": "Rizon Chain", - "display": "atolo", - "symbol": "ATOLO", - "coingecko_id": "rizon", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg" + base: 'uatolo', + name: 'Rizon Chain', + display: 'atolo', + symbol: 'ATOLO', + coingecko_id: 'rizon', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "secretnetwork", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'secretnetwork', + assets: [ { - "description": "The native token of Secret Network", - "denom_units": [ + description: 'The native token of Secret Network', + denom_units: [ { - "denom": "uscrt", - "exponent": 0 + denom: 'uscrt', + exponent: 0 }, { - "denom": "scrt", - "exponent": 6 + denom: 'scrt', + exponent: 6 } ], - "base": "uscrt", - "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" + base: 'uscrt', + 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" + coingecko_id: 'secret' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "sentinel", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'sentinel', + assets: [ { - "description": "DVPN is the native token of the Sentinel Hub.", - "denom_units": [ + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ { - "denom": "udvpn", - "exponent": 0 + denom: 'udvpn', + exponent: 0 }, { - "denom": "dvpn", - "exponent": 6 + denom: 'dvpn', + exponent: 6 } ], - "base": "udvpn", - "name": "Sentinel", - "display": "dvpn", - "symbol": "DVPN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" + base: 'udvpn', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png' }, - "coingecko_id": "sentinel" + coingecko_id: 'sentinel' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "shentu", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'shentu', + assets: [ { - "description": "The native token of Shentu", - "denom_units": [ + description: 'The native token of Shentu', + denom_units: [ { - "denom": "uctk", - "exponent": 0 + denom: 'uctk', + exponent: 0 }, { - "denom": "ctk", - "exponent": 6 + denom: 'ctk', + exponent: 6 } ], - "base": "uctk", - "name": "Shentu", - "display": "ctk", - "symbol": "CTK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png" + base: 'uctk', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png' }, - "coingecko_id": "certik" + coingecko_id: 'certik' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "sifchain", - "assets": [ - { - "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": "rowan", - "exponent": 18 - } - ], - "base": "rowan", - "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" + $schema: '../assetlist.schema.json', + chain_name: 'sifchain', + assets: [ + { + 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: 'rowan', + exponent: 18 + } + ], + base: 'rowan', + 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" + coingecko_id: 'sifchain' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "sommelier", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'sommelier', + assets: [ { - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", - "denom_units": [ + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ { - "denom": "usomm", - "exponent": 0, - "aliases": [ - "microsomm" - ] + denom: 'usomm', + exponent: 0, + aliases: ['microsomm'] }, { - "denom": "msomm", - "exponent": 3, - "aliases": [ - "millisomm" - ] + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] }, { - "denom": "somm", - "exponent": 6 + denom: 'somm', + exponent: 6 } ], - "base": "usomm", - "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" + base: 'usomm', + 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" + coingecko_id: 'sommelier' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "stargaze", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'stargaze', + assets: [ { - "description": "The native token of Stargaze", - "denom_units": [ + description: 'The native token of Stargaze', + denom_units: [ { - "denom": "ustars", - "exponent": 0 + denom: 'ustars', + exponent: 0 }, { - "denom": "stars", - "exponent": 6 + denom: 'stars', + exponent: 6 } ], - "base": "ustars", - "name": "Stargaze", - "display": "stars", - "symbol": "STARS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + base: 'ustars', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' }, - "coingecko_id": "stargaze" + coingecko_id: 'stargaze' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "starname", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'starname', + assets: [ { - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", - "denom_units": [ + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ { - "denom": "uiov", - "exponent": 0 + denom: 'uiov', + exponent: 0 }, { - "denom": "iov", - "exponent": 6 + denom: 'iov', + exponent: 6 } ], - "base": "uiov", - "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" + base: 'uiov', + 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" + coingecko_id: 'starname' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "terra", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'terra', + assets: [ { - "description": "The native staking token of Terra Classic.", - "denom_units": [ + description: 'The native staking token of Terra Classic.', + denom_units: [ { - "denom": "uluna", - "exponent": 0, - "aliases": [ - "microluna" - ] + denom: 'uluna', + exponent: 0, + aliases: ['microluna'] }, { - "denom": "mluna", - "exponent": 3, - "aliases": [ - "milliluna" - ] + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] }, { - "denom": "luna", - "exponent": 6, - "aliases": [ - "lunc" - ] + denom: 'luna', + exponent: 6, + aliases: ['lunc'] } ], - "base": "uluna", - "name": "Luna Classic", - "display": "luna", - "symbol": "LUNC", - "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" + base: 'uluna', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + 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' }, - "coingecko_id": "terra-luna" + coingecko_id: 'terra-luna' }, { - "description": "The USD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uusd", - "exponent": 0, - "aliases": [ - "microusd" - ] + denom: 'uusd', + exponent: 0, + aliases: ['microusd'] }, { - "denom": "musd", - "exponent": 3, - "aliases": [ - "milliusd" - ] + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] }, { - "denom": "ust", - "exponent": 6, - "aliases": [ - "ustc" - ] + denom: 'ust', + exponent: 6, + aliases: ['ustc'] } ], - "base": "uusd", - "name": "TerraClassicUSD", - "display": "ust", - "symbol": "USTC", - "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" + base: 'uusd', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + 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' }, - "coingecko_id": "terrausd" + coingecko_id: 'terrausd' }, { - "description": "The KRW stablecoin of Terra Classic.", - "denom_units": [ + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ukrw", - "exponent": 0, - "aliases": [ - "microkrw" - ] + denom: 'ukrw', + exponent: 0, + aliases: ['microkrw'] }, { - "denom": "mkrw", - "exponent": 3, - "aliases": [ - "millikrw" - ] + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] }, { - "denom": "krt", - "exponent": 6, - "aliases": [ - "krtc" - ] + denom: 'krt', + exponent: 6, + aliases: ['krtc'] } ], - "base": "ukrw", - "name": "TerraClassicKRW", - "display": "krt", - "symbol": "KRTC", - "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" + base: 'ukrw', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + 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' }, - "coingecko_id": "terrakrw" + coingecko_id: 'terrakrw' }, { - "description": "The governance token of the White Whale protocol on Terra.", - "type_asset": "cw20", - "address": "terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", - "denom_units": [ + description: + 'The governance token of the White Whale protocol on Terra.', + type_asset: 'cw20', + address: 'terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz', + denom_units: [ { - "denom": "cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", - "exponent": 0 + denom: 'cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz', + exponent: 0 }, { - "denom": "whale", - "exponent": 6 + denom: 'whale', + exponent: 6 } ], - "base": "cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz", - "name": "Whale Token", - "display": "whale", - "symbol": "WHALE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png" + base: 'cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz', + name: 'Whale Token', + display: 'whale', + symbol: 'WHALE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whale.png' }, - "coingecko_id": "white-whale" + coingecko_id: 'white-whale' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp", - "exponent": 0 + denom: 'cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp', + exponent: 0 }, { - "denom": "bluna", - "exponent": 6 + denom: 'bluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp", - "base": "cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp", - "name": "Bonded Luna", - "display": "bluna", - "symbol": "bLuna", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bluna.png" + type_asset: 'cw20', + address: 'terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp', + base: 'cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp', + name: 'Bonded Luna', + display: 'bluna', + symbol: 'bLuna', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bluna.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun", - "exponent": 0 + denom: 'cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun', + exponent: 0 }, { - "denom": "beth", - "exponent": 6 + denom: 'beth', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun", - "base": "cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun", - "name": "Bonded ETH", - "display": "beth", - "symbol": "bETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/beth.png" + type_asset: 'cw20', + address: 'terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun', + base: 'cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun', + name: 'Bonded ETH', + display: 'beth', + symbol: 'bETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/beth.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu", - "exponent": 0 + denom: 'cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu', + exponent: 0 }, { - "denom": "aust", - "exponent": 6 + denom: 'aust', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu", - "base": "cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu", - "name": "Anchor Terra USD", - "display": "aust", - "symbol": "aUST", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aust.png" + type_asset: 'cw20', + address: 'terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu', + base: 'cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu', + name: 'Anchor Terra USD', + display: 'aust', + symbol: 'aUST', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aust.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", - "exponent": 0 + denom: 'cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76', + exponent: 0 }, { - "denom": "anc", - "exponent": 6 + denom: 'anc', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", - "base": "cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76", - "name": "Anchor Token", - "display": "anc", - "symbol": "ANC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/anc.png" + type_asset: 'cw20', + address: 'terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76', + base: 'cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76', + name: 'Anchor Token', + display: 'anc', + symbol: 'ANC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/anc.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6", - "exponent": 0 + denom: 'cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6', + exponent: 0 }, { - "denom": "mir", - "exponent": 6 + denom: 'mir', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6", - "base": "cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6", - "name": "Mirror", - "display": "mir", - "symbol": "MIR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mir.png" + type_asset: 'cw20', + address: 'terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6', + base: 'cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6', + name: 'Mirror', + display: 'mir', + symbol: 'MIR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mir.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz", - "exponent": 0 + denom: 'cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz', + exponent: 0 }, { - "denom": "maapl", - "exponent": 6 + denom: 'maapl', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz", - "base": "cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz", - "name": "Apple Inc.", - "display": "maapl", - "symbol": "mAAPL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maapl.png" + type_asset: 'cw20', + address: 'terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz', + base: 'cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz', + name: 'Apple Inc.', + display: 'maapl', + symbol: 'mAAPL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maapl.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n", - "exponent": 0 + denom: 'cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n', + exponent: 0 }, { - "denom": "mabnb", - "exponent": 6 + denom: 'mabnb', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n", - "base": "cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n", - "name": "Airbnb Inc.", - "display": "mabnb", - "symbol": "mABNB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mabnb.png" + type_asset: 'cw20', + address: 'terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n', + base: 'cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n', + name: 'Airbnb Inc.', + display: 'mabnb', + symbol: 'mABNB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mabnb.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy", - "exponent": 0 + denom: 'cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy', + exponent: 0 }, { - "denom": "mamc", - "exponent": 6 + denom: 'mamc', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy", - "base": "cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy", - "name": "AMC Entertainment Holdings Inc.", - "display": "mamc", - "symbol": "mAMC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamc.png" + type_asset: 'cw20', + address: 'terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy', + base: 'cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy', + name: 'AMC Entertainment Holdings Inc.', + display: 'mamc', + symbol: 'mAMC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamc.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z", - "exponent": 0 + denom: 'cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z', + exponent: 0 }, { - "denom": "mamd", - "exponent": 6 + denom: 'mamd', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z", - "base": "cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z", - "name": "Advanced Micro Devices, Inc.", - "display": "mamd", - "symbol": "mAMD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamd.png" + type_asset: 'cw20', + address: 'terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z', + base: 'cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z', + name: 'Advanced Micro Devices, Inc.', + display: 'mamd', + symbol: 'mAMD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamd.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2", - "exponent": 0 + denom: 'cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2', + exponent: 0 }, { - "denom": "mamzn", - "exponent": 6 + denom: 'mamzn', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2", - "base": "cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2", - "name": "Amazon.com, Inc.", - "display": "mamzn", - "symbol": "mAMZN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamzn.png" + type_asset: 'cw20', + address: 'terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2', + base: 'cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2', + name: 'Amazon.com, Inc.', + display: 'mamzn', + symbol: 'mAMZN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mamzn.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6", - "exponent": 0 + denom: 'cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6', + exponent: 0 }, { - "denom": "markk", - "exponent": 6 + denom: 'markk', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6", - "base": "cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6", - "name": "ARK Innovation ETF", - "display": "markk", - "symbol": "mARKK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/markk.png" + type_asset: 'cw20', + address: 'terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6', + base: 'cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6', + name: 'ARK Innovation ETF', + display: 'markk', + symbol: 'mARKK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/markk.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa", - "exponent": 0 + denom: 'cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa', + exponent: 0 }, { - "denom": "mbaba", - "exponent": 6 + denom: 'mbaba', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa", - "base": "cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa", - "name": "Alibaba Group Holding Limited", - "display": "mbaba", - "symbol": "mBABA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbaba.png" + type_asset: 'cw20', + address: 'terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa', + base: 'cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa', + name: 'Alibaba Group Holding Limited', + display: 'mbaba', + symbol: 'mBABA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbaba.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw", - "exponent": 0 + denom: 'cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw', + exponent: 0 }, { - "denom": "mbtc", - "exponent": 6 + denom: 'mbtc', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw", - "base": "cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw", - "name": "Bitcoin", - "display": "mbtc", - "symbol": "mBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbtc.png" + type_asset: 'cw20', + address: 'terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw', + base: 'cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw', + name: 'Bitcoin', + display: 'mbtc', + symbol: 'mBTC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mbtc.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph", - "exponent": 0 + denom: 'cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph', + exponent: 0 }, { - "denom": "mcoin", - "exponent": 6 + denom: 'mcoin', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph", - "base": "cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph", - "name": "Coinbase Global, Inc.", - "display": "mcoin", - "symbol": "mCOIN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mcoin.png" + type_asset: 'cw20', + address: 'terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph', + base: 'cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph', + name: 'Coinbase Global, Inc.', + display: 'mcoin', + symbol: 'mCOIN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mcoin.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5", - "exponent": 0 + denom: 'cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5', + exponent: 0 }, { - "denom": "mdis", - "exponent": 6 + denom: 'mdis', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5", - "base": "cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5", - "name": "The Walt Disney Company", - "display": "mdis", - "symbol": "mDIS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdis.png" + type_asset: 'cw20', + address: 'terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5', + base: 'cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5', + name: 'The Walt Disney Company', + display: 'mdis', + symbol: 'mDIS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdis.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r", - "exponent": 0 + denom: 'cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r', + exponent: 0 }, { - "denom": "mdot", - "exponent": 6 + denom: 'mdot', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r", - "base": "cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r", - "name": "Polkadot", - "display": "mdot", - "symbol": "mDOT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdot.png" + type_asset: 'cw20', + address: 'terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r', + base: 'cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r', + name: 'Polkadot', + display: 'mdot', + symbol: 'mDOT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mdot.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx", - "exponent": 0 + denom: 'cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx', + exponent: 0 }, { - "denom": "meth", - "exponent": 6 + denom: 'meth', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx", - "base": "cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx", - "name": "Ether", - "display": "meth", - "symbol": "mETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/meth.png" + type_asset: 'cw20', + address: 'terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx', + base: 'cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx', + name: 'Ether', + display: 'meth', + symbol: 'mETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/meth.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7", - "exponent": 0 + denom: 'cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7', + exponent: 0 }, { - "denom": "mfb", - "exponent": 6 + denom: 'mfb', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7", - "base": "cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7", - "name": "Facebook Inc.", - "display": "mfb", - "symbol": "mFB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mfb.png" + type_asset: 'cw20', + address: 'terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7', + base: 'cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7', + name: 'Facebook Inc.', + display: 'mfb', + symbol: 'mFB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mfb.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls", - "exponent": 0 + denom: 'cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls', + exponent: 0 }, { - "denom": "mglxy", - "exponent": 6 + denom: 'mglxy', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls", - "base": "cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls", - "name": "Galaxy Digital Holdings Ltd", - "display": "mglxy", - "symbol": "mGLXY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mglxy.png" + type_asset: 'cw20', + address: 'terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls', + base: 'cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls', + name: 'Galaxy Digital Holdings Ltd', + display: 'mglxy', + symbol: 'mGLXY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mglxy.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p", - "exponent": 0 + denom: 'cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p', + exponent: 0 }, { - "denom": "mgme", - "exponent": 6 + denom: 'mgme', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p", - "base": "cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p", - "name": "GameStop Corp", - "display": "mgme", - "symbol": "mGME", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgme.png" + type_asset: 'cw20', + address: 'terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p', + base: 'cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p', + name: 'GameStop Corp', + display: 'mgme', + symbol: 'mGME', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgme.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt", - "exponent": 0 + denom: 'cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt', + exponent: 0 }, { - "denom": "mgoogl", - "exponent": 6 + denom: 'mgoogl', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt", - "base": "cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt", - "name": "Alphabet Inc.", - "display": "mgoogl", - "symbol": "mGOOGL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgoogl.png" + type_asset: 'cw20', + address: 'terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt', + base: 'cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt', + name: 'Alphabet Inc.', + display: 'mgoogl', + symbol: 'mGOOGL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgoogl.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v", - "exponent": 0 + denom: 'cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v', + exponent: 0 }, { - "denom": "mgs", - "exponent": 6 + denom: 'mgs', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v", - "base": "cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v", - "name": "Goldman Sachs Group Inc.", - "display": "mgs", - "symbol": "mGS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgs.png" + type_asset: 'cw20', + address: 'terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v', + base: 'cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v', + name: 'Goldman Sachs Group Inc.', + display: 'mgs', + symbol: 'mGS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mgs.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr", - "exponent": 0 + denom: 'cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr', + exponent: 0 }, { - "denom": "mhood", - "exponent": 6 + denom: 'mhood', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr", - "base": "cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr", - "name": "Robinhood Markets, Inc.", - "display": "mhood", - "symbol": "mHOOD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mhood.png" + type_asset: 'cw20', + address: 'terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr', + base: 'cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr', + name: 'Robinhood Markets, Inc.', + display: 'mhood', + symbol: 'mHOOD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mhood.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq", - "exponent": 0 + denom: 'cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq', + exponent: 0 }, { - "denom": "miau", - "exponent": 6 + denom: 'miau', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq", - "base": "cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq", - "name": "iShares Gold Trust", - "display": "miau", - "symbol": "mIAU", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" + type_asset: 'cw20', + address: 'terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq', + base: 'cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq', + name: 'iShares Gold Trust', + display: 'miau', + symbol: 'mIAU', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec", - "exponent": 0 + denom: 'cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec', + exponent: 0 }, { - "denom": "miau", - "exponent": 6 + denom: 'miau', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec", - "base": "cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec", - "name": "iShares Gold Trust", - "display": "miau", - "symbol": "mIAU", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png" + type_asset: 'cw20', + address: 'terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec', + base: 'cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec', + name: 'iShares Gold Trust', + display: 'miau', + symbol: 'mIAU', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miau.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2", - "exponent": 0 + denom: 'cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2', + exponent: 0 }, { - "denom": "mjnj", - "exponent": 6 + denom: 'mjnj', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2", - "base": "cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2", - "name": "Johnson & Johnson", - "display": "mjnj", - "symbol": "mJNJ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mjnj.png" + type_asset: 'cw20', + address: 'terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2', + base: 'cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2', + name: 'Johnson & Johnson', + display: 'mjnj', + symbol: 'mJNJ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mjnj.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm", - "exponent": 0 + denom: 'cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm', + exponent: 0 }, { - "denom": "mko", - "exponent": 6 + denom: 'mko', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm", - "base": "cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm", - "name": "Coca-Cola", - "display": "mko", - "symbol": "mKO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mko.png" + type_asset: 'cw20', + address: 'terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm', + base: 'cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm', + name: 'Coca-Cola', + display: 'mko', + symbol: 'mKO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mko.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6", - "exponent": 0 + denom: 'cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6', + exponent: 0 }, { - "denom": "mmsft", - "exponent": 6 + denom: 'mmsft', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6", - "base": "cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6", - "name": "Microsoft Corporation", - "display": "mmsft", - "symbol": "mMSFT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mmsft.png" + type_asset: 'cw20', + address: 'terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6', + base: 'cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6', + name: 'Microsoft Corporation', + display: 'mmsft', + symbol: 'mMSFT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mmsft.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k", - "exponent": 0 + denom: 'cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k', + exponent: 0 }, { - "denom": "mnflx", - "exponent": 6 + denom: 'mnflx', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k", - "base": "cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k", - "name": "Netflix, Inc.", - "display": "mnflx", - "symbol": "mNFLX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnflx.png" + type_asset: 'cw20', + address: 'terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k', + base: 'cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k', + name: 'Netflix, Inc.', + display: 'mnflx', + symbol: 'mNFLX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnflx.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p", - "exponent": 0 + denom: 'cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p', + exponent: 0 }, { - "denom": "mnio", - "exponent": 6 + denom: 'mnio', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p", - "base": "cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p", - "name": "NIO Inc.", - "display": "mnio", - "symbol": "mNIO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnio.png" + type_asset: 'cw20', + address: 'terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p', + base: 'cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p', + name: 'NIO Inc.', + display: 'mnio', + symbol: 'mNIO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnio.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g", - "exponent": 0 + denom: 'cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g', + exponent: 0 }, { - "denom": "mnke", - "exponent": 6 + denom: 'mnke', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g", - "base": "cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g", - "name": "NIKE, Inc.", - "display": "mnke", - "symbol": "mNKE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnke.png" + type_asset: 'cw20', + address: 'terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g', + base: 'cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g', + name: 'NIKE, Inc.', + display: 'mnke', + symbol: 'mNKE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnke.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8", - "exponent": 0 + denom: 'cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8', + exponent: 0 }, { - "denom": "mnvda", - "exponent": 6 + denom: 'mnvda', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8", - "base": "cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8", - "name": "NVIDIA Corporation", - "display": "mnvda", - "symbol": "mNVDA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnvda.png" + type_asset: 'cw20', + address: 'terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8', + base: 'cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8', + name: 'NVIDIA Corporation', + display: 'mnvda', + symbol: 'mNVDA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnvda.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx", - "exponent": 0 + denom: 'cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx', + exponent: 0 }, { - "denom": "mpypl", - "exponent": 6 + denom: 'mpypl', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx", - "base": "cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx", - "name": "PayPal Holdings Inc", - "display": "mpypl", - "symbol": "mPYPL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mpypl.png" + type_asset: 'cw20', + address: 'terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx', + base: 'cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx', + name: 'PayPal Holdings Inc', + display: 'mpypl', + symbol: 'mPYPL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mpypl.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp", - "exponent": 0 + denom: 'cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp', + exponent: 0 }, { - "denom": "mqqq", - "exponent": 6 + denom: 'mqqq', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp", - "base": "cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp", - "name": "Invesco QQQ Trust", - "display": "mqqq", - "symbol": "mQQQ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mqqq.png" + type_asset: 'cw20', + address: 'terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp', + base: 'cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp', + name: 'Invesco QQQ Trust', + display: 'mqqq', + symbol: 'mQQQ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mqqq.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga", - "exponent": 0 + denom: 'cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga', + exponent: 0 }, { - "denom": "msbux", - "exponent": 6 + denom: 'msbux', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga", - "base": "cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga", - "name": "Starbucks Corporation", - "display": "msbux", - "symbol": "mSBUX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msbux.png" + type_asset: 'cw20', + address: 'terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga', + base: 'cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga', + name: 'Starbucks Corporation', + display: 'msbux', + symbol: 'mSBUX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msbux.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp", - "exponent": 0 + denom: 'cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp', + exponent: 0 }, { - "denom": "mslv", - "exponent": 6 + denom: 'mslv', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp", - "base": "cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp", - "name": "iShares Silver Trust", - "display": "mslv", - "symbol": "mSLV", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mslv.png" + type_asset: 'cw20', + address: 'terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp', + base: 'cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp', + name: 'iShares Silver Trust', + display: 'mslv', + symbol: 'mSLV', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mslv.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc", - "exponent": 0 + denom: 'cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc', + exponent: 0 }, { - "denom": "mspy", - "exponent": 6 + denom: 'mspy', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc", - "base": "cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc", - "name": "SPDR S&P 500", - "display": "mspy", - "symbol": "mSPY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mspy.png" + type_asset: 'cw20', + address: 'terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc', + base: 'cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc', + name: 'SPDR S&P 500', + display: 'mspy', + symbol: 'mSPY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mspy.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh", - "exponent": 0 + denom: 'cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh', + exponent: 0 }, { - "denom": "msq", - "exponent": 6 + denom: 'msq', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh", - "base": "cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh", - "name": "Square, Inc.", - "display": "msq", - "symbol": "mSQ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msq.png" + type_asset: 'cw20', + address: 'terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh', + base: 'cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh', + name: 'Square, Inc.', + display: 'msq', + symbol: 'mSQ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msq.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh", - "exponent": 0 + denom: 'cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh', + exponent: 0 }, { - "denom": "mtsla", - "exponent": 6 + denom: 'mtsla', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh", - "base": "cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh", - "name": "Tesla, Inc.", - "display": "mtsla", - "symbol": "mTSLA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtsla.png" + type_asset: 'cw20', + address: 'terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh', + base: 'cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh', + name: 'Tesla, Inc.', + display: 'mtsla', + symbol: 'mTSLA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtsla.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg", - "exponent": 0 + denom: 'cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg', + exponent: 0 }, { - "denom": "mtwtr", - "exponent": 6 + denom: 'mtwtr', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg", - "base": "cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg", - "name": "Twitter, Inc.", - "display": "mtwtr", - "symbol": "mTWTR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtwtr.png" + type_asset: 'cw20', + address: 'terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg', + base: 'cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg', + name: 'Twitter, Inc.', + display: 'mtwtr', + symbol: 'mTWTR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mtwtr.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf", - "exponent": 0 + denom: 'cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf', + exponent: 0 }, { - "denom": "muso", - "exponent": 6 + denom: 'muso', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf", - "base": "cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf", - "name": "United States Oil Fund, LP", - "display": "muso", - "symbol": "mUSO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/muso.png" + type_asset: 'cw20', + address: 'terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf', + base: 'cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf', + name: 'United States Oil Fund, LP', + display: 'muso', + symbol: 'mUSO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/muso.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx", - "exponent": 0 + denom: 'cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx', + exponent: 0 }, { - "denom": "mvixy", - "exponent": 6 + denom: 'mvixy', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx", - "base": "cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx", - "name": "ProShares VIX Short-Term Futures ETF", - "display": "mvixy", - "symbol": "mVIXY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" + type_asset: 'cw20', + address: 'terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx', + base: 'cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx', + name: 'ProShares VIX Short-Term Futures ETF', + display: 'mvixy', + symbol: 'mVIXY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45", - "exponent": 0 + denom: 'cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45', + exponent: 0 }, { - "denom": "mvixy", - "exponent": 6 + denom: 'mvixy', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45", - "base": "cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45", - "name": "ProShares VIX Short-Term Futures ETF", - "display": "mvixy", - "symbol": "mVIXY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png" + type_asset: 'cw20', + address: 'terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45', + base: 'cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45', + name: 'ProShares VIX Short-Term Futures ETF', + display: 'mvixy', + symbol: 'mVIXY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mvixy.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr", - "exponent": 0 + denom: 'cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr', + exponent: 0 }, { - "denom": "lota", - "exponent": 6 + denom: 'lota', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr", - "base": "cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr", - "name": "loterra", - "display": "lota", - "symbol": "LOTA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lota.png" + type_asset: 'cw20', + address: 'terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr', + base: 'cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr', + name: 'loterra', + display: 'lota', + symbol: 'LOTA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lota.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7", - "exponent": 0 + denom: 'cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7', + exponent: 0 }, { - "denom": "dph", - "exponent": 6 + denom: 'dph', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7", - "base": "cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7", - "name": "Digipharm", - "display": "dph", - "symbol": "DPH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dph.png" + type_asset: 'cw20', + address: 'terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7', + base: 'cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7', + name: 'Digipharm', + display: 'dph', + symbol: 'DPH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dph.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy", - "exponent": 0 + denom: 'cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy', + exponent: 0 }, { - "denom": "mine", - "exponent": 6 + denom: 'mine', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy", - "base": "cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy", - "name": "Pylon MINE Token", - "display": "mine", - "symbol": "MINE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mine.png" + type_asset: 'cw20', + address: 'terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy', + base: 'cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy', + name: 'Pylon MINE Token', + display: 'mine', + symbol: 'MINE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mine.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y", - "exponent": 0 + denom: 'cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y', + exponent: 0 }, { - "denom": "bpsidp-24m", - "exponent": 6 + denom: 'bpsidp-24m', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y", - "base": "cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y", - "name": "Pylon bDP Token for Gateway Psi 24m Pool", - "display": "bpsidp-24m", - "symbol": "bPsiDP-24m", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bpsidp-24m.png" + type_asset: 'cw20', + address: 'terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y', + base: 'cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y', + name: 'Pylon bDP Token for Gateway Psi 24m Pool', + display: 'bpsidp-24m', + symbol: 'bPsiDP-24m', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bpsidp-24m.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr", - "exponent": 0 + denom: 'cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr', + exponent: 0 }, { - "denom": "spec", - "exponent": 6 + denom: 'spec', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr", - "base": "cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr", - "name": "Spectrum Token", - "display": "spec", - "symbol": "SPEC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/spec.png" + type_asset: 'cw20', + address: 'terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr', + base: 'cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr', + name: 'Spectrum Token', + display: 'spec', + symbol: 'SPEC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/spec.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4", - "exponent": 0 + denom: 'cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4', + exponent: 0 }, { - "denom": "loop", - "exponent": 6 + denom: 'loop', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4", - "base": "cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4", - "name": "LOOP token", - "display": "loop", - "symbol": "LOOP", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loop.png" + type_asset: 'cw20', + address: 'terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4', + base: 'cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4', + name: 'LOOP token', + display: 'loop', + symbol: 'LOOP', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loop.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q", - "exponent": 0 + denom: 'cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q', + exponent: 0 }, { - "denom": "loopr", - "exponent": 6 + denom: 'loopr', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q", - "base": "cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q", - "name": "LOOPR token", - "display": "loopr", - "symbol": "LOOPR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loopr.png" + type_asset: 'cw20', + address: 'terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q', + base: 'cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q', + name: 'LOOPR token', + display: 'loopr', + symbol: 'LOOPR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/loopr.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n", - "exponent": 0 + denom: 'cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n', + exponent: 0 }, { - "denom": "stt", - "exponent": 6 + denom: 'stt', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n", - "base": "cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n", - "name": "StarTerra Token", - "display": "stt", - "symbol": "STT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stt.png" + type_asset: 'cw20', + address: 'terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n', + base: 'cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n', + name: 'StarTerra Token', + display: 'stt', + symbol: 'STT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stt.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6", - "exponent": 0 + denom: 'cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6', + exponent: 0 }, { - "denom": "twd", - "exponent": 6 + denom: 'twd', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6", - "base": "cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6", - "name": "TWD Token", - "display": "twd", - "symbol": "TWD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twd.png" + type_asset: 'cw20', + address: 'terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6', + base: 'cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6', + name: 'TWD Token', + display: 'twd', + symbol: 'TWD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twd.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc", - "exponent": 0 + denom: 'cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc', + exponent: 0 }, { - "denom": "xtra", - "exponent": 6 + denom: 'xtra', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc", - "base": "cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc", - "name": "xterra Token", - "display": "xtra", - "symbol": "XTRA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xtra.png" + type_asset: 'cw20', + address: 'terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc', + base: 'cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc', + name: 'xterra Token', + display: 'xtra', + symbol: 'XTRA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xtra.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63", - "exponent": 0 + denom: 'cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63', + exponent: 0 }, { - "denom": "miaw", - "exponent": 6 + denom: 'miaw', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63", - "base": "cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63", - "name": "MIAW Token", - "display": "miaw", - "symbol": "MIAW", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miaw.png" + type_asset: 'cw20', + address: 'terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63', + base: 'cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63', + name: 'MIAW Token', + display: 'miaw', + symbol: 'MIAW', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/miaw.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608", - "exponent": 0 + denom: 'cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608', + exponent: 0 }, { - "denom": "psi", - "exponent": 6 + denom: 'psi', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra12897djskt9rge8dtmm86w654g7kzckkd698608", - "base": "cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608", - "name": "Nexus Governance Token", - "display": "psi", - "symbol": "Psi", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/psi.png" + type_asset: 'cw20', + address: 'terra12897djskt9rge8dtmm86w654g7kzckkd698608', + base: 'cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608', + name: 'Nexus Governance Token', + display: 'psi', + symbol: 'Psi', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/psi.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j", - "exponent": 0 + denom: 'cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j', + exponent: 0 }, { - "denom": "nluna", - "exponent": 6 + denom: 'nluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j", - "base": "cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j", - "name": "Nexus nLuna Token", - "display": "nluna", - "symbol": "nLuna", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nluna.svg" + type_asset: 'cw20', + address: 'terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j', + base: 'cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j', + name: 'Nexus nLuna Token', + display: 'nluna', + symbol: 'nLuna', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nluna.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn", - "exponent": 0 + denom: 'cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn', + exponent: 0 }, { - "denom": "neth", - "exponent": 6 + denom: 'neth', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn", - "base": "cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn", - "name": "Nexus nETH Token", - "display": "neth", - "symbol": "nETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neth.svg" + type_asset: 'cw20', + address: 'terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn', + base: 'cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn', + name: 'Nexus nETH Token', + display: 'neth', + symbol: 'nETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neth.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj", - "exponent": 0 + denom: 'cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj', + exponent: 0 }, { - "denom": "cnluna", - "exponent": 6 + denom: 'cnluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj", - "base": "cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj", - "name": "nLuna autocompounder share representation", - "display": "cnluna", - "symbol": "cnLuna", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnluna.svg" + type_asset: 'cw20', + address: 'terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj', + base: 'cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj', + name: 'nLuna autocompounder share representation', + display: 'cnluna', + symbol: 'cnLuna', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnluna.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756", - "exponent": 0 + denom: 'cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756', + exponent: 0 }, { - "denom": "cneth", - "exponent": 6 + denom: 'cneth', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756", - "base": "cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756", - "name": "nETH autocompounder share representation", - "display": "cneth", - "symbol": "cnETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cneth.svg" + type_asset: 'cw20', + address: 'terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756', + base: 'cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756', + name: 'nETH autocompounder share representation', + display: 'cneth', + symbol: 'cnETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cneth.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636", - "exponent": 0 + denom: 'cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636', + exponent: 0 }, { - "denom": "navax", - "exponent": 6 + denom: 'navax', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636", - "base": "cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636", - "name": "Nexus nAVAX Token", - "display": "navax", - "symbol": "nAVAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/navax.svg" + type_asset: 'cw20', + address: 'terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636', + base: 'cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636', + name: 'Nexus nAVAX Token', + display: 'navax', + symbol: 'nAVAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/navax.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade", - "exponent": 0 + denom: 'cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade', + exponent: 0 }, { - "denom": "natom", - "exponent": 6 + denom: 'natom', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade", - "base": "cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade", - "name": "Nexus nATOM Token", - "display": "natom", - "symbol": "nATOM", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/natom.svg" + type_asset: 'cw20', + address: 'terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade', + base: 'cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade', + name: 'Nexus nATOM Token', + display: 'natom', + symbol: 'nATOM', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/natom.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5", - "exponent": 0 + denom: 'cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5', + exponent: 0 }, { - "denom": "vkr", - "exponent": 6 + denom: 'vkr', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5", - "base": "cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5", - "name": "VKR Token", - "display": "vkr", - "symbol": "VKR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vkr.png" + type_asset: 'cw20', + address: 'terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5', + base: 'cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5', + name: 'VKR Token', + display: 'vkr', + symbol: 'VKR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vkr.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", - "exponent": 0 + denom: 'cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03', + exponent: 0 }, { - "denom": "orion", - "exponent": 8 + denom: 'orion', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", - "base": "cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03", - "name": "Orion Money (Portal)", - "display": "orion", - "symbol": "ORION", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orion.png" + type_asset: 'cw20', + address: 'terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03', + base: 'cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03', + name: 'Orion Money (Portal)', + display: 'orion', + symbol: 'ORION', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orion.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc", - "exponent": 0 + denom: 'cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc', + exponent: 0 }, { - "denom": "tland", - "exponent": 6 + denom: 'tland', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc", - "base": "cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc", - "name": "TerraLand Token", - "display": "tland", - "symbol": "TLAND", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tland.png" + type_asset: 'cw20', + address: 'terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc', + base: 'cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc', + name: 'TerraLand Token', + display: 'tland', + symbol: 'TLAND', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tland.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg", - "exponent": 0 + denom: 'cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg', + exponent: 0 }, { - "denom": "vust", - "exponent": 6 + denom: 'vust', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg", - "base": "cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg", - "name": "Vault UST", - "display": "vust", - "symbol": "vUST", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vust.png" + type_asset: 'cw20', + address: 'terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg', + base: 'cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg', + name: 'Vault UST', + display: 'vust', + symbol: 'vUST', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vust.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", - "exponent": 0 + denom: 'cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r', + exponent: 0 }, { - "denom": "eth", - "exponent": 8 + denom: 'eth', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", - "base": "cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r", - "name": "Ether (Portal)", - "display": "eth", - "symbol": "ETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eth.png" + type_asset: 'cw20', + address: 'terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r', + base: 'cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r', + name: 'Ether (Portal)', + display: 'eth', + symbol: 'ETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eth.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", - "exponent": 0 + denom: 'cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55', + exponent: 0 }, { - "denom": "wbtc", - "exponent": 8 + denom: 'wbtc', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", - "base": "cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55", - "name": "Wrapped BTC (Portal)", - "display": "wbtc", - "symbol": "WBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wbtc.png" + type_asset: 'cw20', + address: 'terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55', + base: 'cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55', + name: 'Wrapped BTC (Portal)', + display: 'wbtc', + symbol: 'WBTC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wbtc.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", - "exponent": 0 + denom: 'cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk', + exponent: 0 }, { - "denom": "sol", - "exponent": 8 + denom: 'sol', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", - "base": "cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk", - "name": "SOL (Portal)", - "display": "sol", - "symbol": "SOL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sol.png" + type_asset: 'cw20', + address: 'terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk', + base: 'cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk', + name: 'SOL (Portal)', + display: 'sol', + symbol: 'SOL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sol.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq", - "exponent": 0 + denom: 'cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq', + exponent: 0 }, { - "denom": "maticet", - "exponent": 8 + denom: 'maticet', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq", - "base": "cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq", - "name": "MATIC (Portal from Ethereum)", - "display": "maticet", - "symbol": "MATICet", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticet.png" + type_asset: 'cw20', + address: 'terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq', + base: 'cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq', + name: 'MATIC (Portal from Ethereum)', + display: 'maticet', + symbol: 'MATICet', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticet.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", - "exponent": 0 + denom: 'cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8', + exponent: 0 }, { - "denom": "bnb", - "exponent": 8 + denom: 'bnb', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", - "base": "cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8", - "name": "Binance Coin (Portal)", - "display": "bnb", - "symbol": "BNB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bnb.png" + type_asset: 'cw20', + address: 'terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8', + base: 'cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8', + name: 'Binance Coin (Portal)', + display: 'bnb', + symbol: 'BNB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bnb.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", - "exponent": 0 + denom: 'cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av', + exponent: 0 }, { - "denom": "cake", - "exponent": 8 + denom: 'cake', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", - "base": "cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av", - "name": "PancakeSwap Token (Portal)", - "display": "cake", - "symbol": "CAKE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cake.png" + type_asset: 'cw20', + address: 'terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av', + base: 'cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av', + name: 'PancakeSwap Token (Portal)', + display: 'cake', + symbol: 'CAKE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cake.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", - "exponent": 0 + denom: 'cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym', + exponent: 0 }, { - "denom": "link", - "exponent": 8 + denom: 'link', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", - "base": "cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym", - "name": "Chainlink (Portal)", - "display": "link", - "symbol": "LINK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" + type_asset: 'cw20', + address: 'terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym', + base: 'cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym', + name: 'Chainlink (Portal)', + display: 'link', + symbol: 'LINK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", - "exponent": 0 + denom: 'cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a', + exponent: 0 }, { - "denom": "sushi", - "exponent": 8 + denom: 'sushi', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", - "base": "cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a", - "name": "SushiToken (Portal)", - "display": "sushi", - "symbol": "SUSHI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sushi.png" + type_asset: 'cw20', + address: 'terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a', + base: 'cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a', + name: 'SushiToken (Portal)', + display: 'sushi', + symbol: 'SUSHI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sushi.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", - "exponent": 0 + denom: 'cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf', + exponent: 0 }, { - "denom": "uni", - "exponent": 8 + denom: 'uni', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", - "base": "cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf", - "name": "Uniswap (Portal)", - "display": "uni", - "symbol": "UNI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/uni.png" + type_asset: 'cw20', + address: 'terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf', + base: 'cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf', + name: 'Uniswap (Portal)', + display: 'uni', + symbol: 'UNI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/uni.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", - "exponent": 0 + denom: 'cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva', + exponent: 0 }, { - "denom": "usdtet", - "exponent": 6 + denom: 'usdtet', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", - "base": "cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva", - "name": "Tether USD (Portal from Ethereum)", - "display": "usdtet", - "symbol": "USDTet", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtet.png" + type_asset: 'cw20', + address: 'terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva', + base: 'cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva', + name: 'Tether USD (Portal from Ethereum)', + display: 'usdtet', + symbol: 'USDTet', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtet.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", - "exponent": 0 + denom: 'cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06', + exponent: 0 }, { - "denom": "usdcet", - "exponent": 6 + denom: 'usdcet', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", - "base": "cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06", - "name": "USD Coin (Portal from Ethereum)", - "display": "usdcet", - "symbol": "USDCet", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcet.png" + type_asset: 'cw20', + address: 'terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06', + base: 'cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06', + name: 'USD Coin (Portal from Ethereum)', + display: 'usdcet', + symbol: 'USDCet', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcet.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn", - "exponent": 0 + denom: 'cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn', + exponent: 0 }, { - "denom": "kuji", - "exponent": 6 + denom: 'kuji', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn", - "base": "cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn", - "name": "Kujira Token", - "display": "kuji", - "symbol": "KUJI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kuji.png" + type_asset: 'cw20', + address: 'terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn', + base: 'cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn', + name: 'Kujira Token', + display: 'kuji', + symbol: 'KUJI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kuji.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw", - "exponent": 0 + denom: 'cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw', + exponent: 0 }, { - "denom": "skuji", - "exponent": 6 + denom: 'skuji', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra188w26t95tf4dz77raftme8p75rggatxjxfeknw", - "base": "cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw", - "name": "Staked KUJI", - "display": "skuji", - "symbol": "sKUJI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/skuji.png" + type_asset: 'cw20', + address: 'terra188w26t95tf4dz77raftme8p75rggatxjxfeknw', + base: 'cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw', + name: 'Staked KUJI', + display: 'skuji', + symbol: 'sKUJI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/skuji.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", - "exponent": 0 + denom: 'cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur', + exponent: 0 }, { - "denom": "wsteth", - "exponent": 8 + denom: 'wsteth', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", - "base": "cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur", - "name": "Lido wstETH (Portal)", - "display": "wsteth", - "symbol": "wstETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsteth.png" + type_asset: 'cw20', + address: 'terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur', + base: 'cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur', + name: 'Lido wstETH (Portal)', + display: 'wsteth', + symbol: 'wstETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsteth.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap", - "exponent": 0 + denom: 'cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap', + exponent: 0 }, { - "denom": "wstsol", - "exponent": 8 + denom: 'wstsol', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap", - "base": "cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap", - "name": "Lido wstSOL (Portal)", - "display": "wstsol", - "symbol": "wstSOL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wstsol.png" + type_asset: 'cw20', + address: 'terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap', + base: 'cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap', + name: 'Lido wstSOL (Portal)', + display: 'wstsol', + symbol: 'wstSOL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wstsol.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj", - "exponent": 0 + denom: 'cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj', + exponent: 0 }, { - "denom": "wsbsol", - "exponent": 8 + denom: 'wsbsol', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj", - "base": "cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj", - "name": "Lido bonded SOL (Portal)", - "display": "wsbsol", - "symbol": "wsbSOL", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsbsol.svg" + type_asset: 'cw20', + address: 'terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj', + base: 'cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj', + name: 'Lido bonded SOL (Portal)', + display: 'wsbsol', + symbol: 'wsbSOL', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wsbsol.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", - "exponent": 0 + denom: 'cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z', + exponent: 0 }, { - "denom": "ldo", - "exponent": 8 + denom: 'ldo', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", - "base": "cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z", - "name": "Lido DAO (Portal)", - "display": "ldo", - "symbol": "LDO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ldo.png" + type_asset: 'cw20', + address: 'terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z', + base: 'cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z', + name: 'Lido DAO (Portal)', + display: 'ldo', + symbol: 'LDO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ldo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", - "exponent": 0 + denom: 'cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz', + exponent: 0 }, { - "denom": "webeth", - "exponent": 8 + denom: 'webeth', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", - "base": "cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz", - "name": "Lido Bonded ETH (Wormhole)", - "display": "webeth", - "symbol": "webETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webeth.svg" + type_asset: 'cw20', + address: 'terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz', + base: 'cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz', + name: 'Lido Bonded ETH (Wormhole)', + display: 'webeth', + symbol: 'webETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webeth.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc", - "exponent": 0 + denom: 'cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc', + exponent: 0 }, { - "denom": "stluna", - "exponent": 6 + denom: 'stluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc", - "base": "cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc", - "name": "Lido staked Luna", - "display": "stluna", - "symbol": "stLuna", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stluna.png" + type_asset: 'cw20', + address: 'terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc', + base: 'cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc', + name: 'Lido staked Luna', + display: 'stluna', + symbol: 'stLuna', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stluna.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "exponent": 0 + denom: 'cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh', + exponent: 0 }, { - "denom": "xdefi", - "exponent": 8 + denom: 'xdefi', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "base": "cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh", - "name": "XDEFI (Portal)", - "display": "xdefi", - "symbol": "XDEFI" + type_asset: 'cw20', + address: 'terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh', + base: 'cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh', + name: 'XDEFI (Portal)', + display: 'xdefi', + symbol: 'XDEFI' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl", - "exponent": 0 + denom: 'cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl', + exponent: 0 }, { - "denom": "btl", - "exponent": 6 + denom: 'btl', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl", - "base": "cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl", - "name": "Bitlocus Token", - "display": "btl", - "symbol": "BTL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/btl.png" + type_asset: 'cw20', + address: 'terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl', + base: 'cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl', + name: 'Bitlocus Token', + display: 'btl', + symbol: 'BTL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/btl.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup", - "exponent": 0 + denom: 'cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup', + exponent: 0 }, { - "denom": "lunax", - "exponent": 6 + denom: 'lunax', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup", - "base": "cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup", - "name": "LunaX Token", - "display": "lunax", - "symbol": "LunaX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lunax.png" + type_asset: 'cw20', + address: 'terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup', + base: 'cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup', + name: 'LunaX Token', + display: 'lunax', + symbol: 'LunaX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lunax.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7", - "exponent": 0 + denom: 'cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7', + exponent: 0 }, { - "denom": "luni", - "exponent": 6 + denom: 'luni', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7", - "base": "cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7", - "name": "LUNI", - "display": "luni", - "symbol": "LUNI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luni.png" + type_asset: 'cw20', + address: 'terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7', + base: 'cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7', + name: 'LUNI', + display: 'luni', + symbol: 'LUNI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luni.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu", - "exponent": 0 + denom: 'cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu', + exponent: 0 }, { - "denom": "ply", - "exponent": 6 + denom: 'ply', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu", - "base": "cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu", - "name": "PlayNity Token", - "display": "ply", - "symbol": "PLY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ply.png" + type_asset: 'cw20', + address: 'terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu', + base: 'cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu', + name: 'PlayNity Token', + display: 'ply', + symbol: 'PLY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ply.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj", - "exponent": 0 + denom: 'cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj', + exponent: 0 }, { - "denom": "tfloki", - "exponent": 6 + denom: 'tfloki', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj", - "base": "cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj", - "name": "TFLOKI", - "display": "tfloki", - "symbol": "TFLOKI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfloki.png" + type_asset: 'cw20', + address: 'terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj', + base: 'cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj', + name: 'TFLOKI', + display: 'tfloki', + symbol: 'TFLOKI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfloki.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u", - "exponent": 0 + denom: 'cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u', + exponent: 0 }, { - "denom": "tftic", - "exponent": 6 + denom: 'tftic', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u", - "base": "cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u", - "name": "TFLOKI Genesis Ticket", - "display": "tftic", - "symbol": "TFTIC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tftic.png" + type_asset: 'cw20', + address: 'terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u', + base: 'cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u', + name: 'TFLOKI Genesis Ticket', + display: 'tftic', + symbol: 'TFTIC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tftic.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86", - "exponent": 0 + denom: 'cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86', + exponent: 0 }, { - "denom": "tfticii", - "exponent": 6 + denom: 'tfticii', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86", - "base": "cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86", - "name": "TFLOKI New World Ticket", - "display": "tfticii", - "symbol": "TFTICII", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticii.png" + type_asset: 'cw20', + address: 'terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86', + base: 'cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86', + name: 'TFLOKI New World Ticket', + display: 'tfticii', + symbol: 'TFTICII', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticii.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28", - "exponent": 0 + denom: 'cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28', + exponent: 0 }, { - "denom": "tfticiii", - "exponent": 6 + denom: 'tfticiii', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28", - "base": "cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28", - "name": "TFLOKI Aviator Ticket", - "display": "tfticiii", - "symbol": "TFTICIII", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticiii.png" + type_asset: 'cw20', + address: 'terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28', + base: 'cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28', + name: 'TFLOKI Aviator Ticket', + display: 'tfticiii', + symbol: 'TFTICIII', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tfticiii.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26", - "exponent": 0 + denom: 'cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26', + exponent: 0 }, { - "denom": "moon", - "exponent": 6 + denom: 'moon', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26", - "base": "cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26", - "name": "Moon Token", - "display": "moon", - "symbol": "MOON", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/moon.png" + type_asset: 'cw20', + address: 'terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26', + base: 'cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26', + name: 'Moon Token', + display: 'moon', + symbol: 'MOON', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/moon.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3", - "exponent": 0 + denom: 'cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3', + exponent: 0 }, { - "denom": "astro", - "exponent": 6 + denom: 'astro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3", - "base": "cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3", - "name": "Astroport Token", - "display": "astro", - "symbol": "ASTRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png" + type_asset: 'cw20', + address: 'terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3', + base: 'cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3', + name: 'Astroport Token', + display: 'astro', + symbol: 'ASTRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", - "exponent": 0 + denom: 'cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7', + exponent: 0 }, { - "denom": "xastro", - "exponent": 6 + denom: 'xastro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", - "base": "cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7", - "name": "Staked Astroport Token", - "display": "xastro", - "symbol": "xASTRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png" + type_asset: 'cw20', + address: 'terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7', + base: 'cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7', + name: 'Staked Astroport Token', + display: 'xastro', + symbol: 'xASTRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xastro.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq", - "exponent": 0 + denom: 'cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq', + exponent: 0 }, { - "denom": "halo", - "exponent": 6 + denom: 'halo', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq", - "base": "cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq", - "name": "Angel Protocol Token", - "display": "halo", - "symbol": "HALO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/halo.png" + type_asset: 'cw20', + address: 'terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq', + base: 'cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq', + name: 'Angel Protocol Token', + display: 'halo', + symbol: 'HALO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/halo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j", - "exponent": 0 + denom: 'cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j', + exponent: 0 }, { - "denom": "pug", - "exponent": 6 + denom: 'pug', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j", - "base": "cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j", - "name": "AstroPug Token", - "display": "pug", - "symbol": "PUG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pug.png" + type_asset: 'cw20', + address: 'terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j', + base: 'cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j', + name: 'AstroPug Token', + display: 'pug', + symbol: 'PUG', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pug.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf", - "exponent": 0 + denom: 'cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf', + exponent: 0 }, { - "denom": "orne", - "exponent": 6 + denom: 'orne', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf", - "base": "cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf", - "name": "Orne Token", - "display": "orne", - "symbol": "ORNE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orne.png" + type_asset: 'cw20', + address: 'terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf', + base: 'cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf', + name: 'Orne Token', + display: 'orne', + symbol: 'ORNE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orne.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y", - "exponent": 0 + denom: 'cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y', + exponent: 0 }, { - "denom": "tns", - "exponent": 6 + denom: 'tns', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y", - "base": "cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y", - "name": "Terra Name Service", - "display": "tns", - "symbol": "TNS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tns.png" + type_asset: 'cw20', + address: 'terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y', + base: 'cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y', + name: 'Terra Name Service', + display: 'tns', + symbol: 'TNS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tns.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm", - "exponent": 0 + denom: 'cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm', + exponent: 0 }, { - "denom": "xrune", - "exponent": 6 + denom: 'xrune', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm", - "base": "cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm", - "name": "Thorstarter", - "display": "xrune", - "symbol": "XRUNE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xrune.png" + type_asset: 'cw20', + address: 'terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm', + base: 'cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm', + name: 'Thorstarter', + display: 'xrune', + symbol: 'XRUNE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xrune.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784", - "exponent": 0 + denom: 'cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784', + exponent: 0 }, { - "denom": "alot", - "exponent": 0 + denom: 'alot', + exponent: 0 } ], - "type_asset": "cw20", - "address": "terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784", - "base": "cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784", - "name": "Alpha Pack Token", - "display": "alot", - "symbol": "aLOT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/alot.png" + type_asset: 'cw20', + address: 'terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784', + base: 'cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784', + name: 'Alpha Pack Token', + display: 'alot', + symbol: 'aLOT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/alot.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe", - "exponent": 0 + denom: 'cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe', + exponent: 0 }, { - "denom": "sity", - "exponent": 6 + denom: 'sity', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe", - "base": "cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe", - "name": "CurioSITY play to earn token", - "display": "sity", - "symbol": "SITY", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sity.svg" + type_asset: 'cw20', + address: 'terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe', + base: 'cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe', + name: 'CurioSITY play to earn token', + display: 'sity', + symbol: 'SITY', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sity.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7", - "exponent": 0 + denom: 'cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7', + exponent: 0 }, { - "denom": "glow", - "exponent": 6 + denom: 'glow', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7", - "base": "cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7", - "name": "Glow Token", - "display": "glow", - "symbol": "GLOW", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/glow.png" + type_asset: 'cw20', + address: 'terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7', + base: 'cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7', + name: 'Glow Token', + display: 'glow', + symbol: 'GLOW', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/glow.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397", - "exponent": 0 + denom: 'cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397', + exponent: 0 }, { - "denom": "apollo", - "exponent": 6 + denom: 'apollo', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra100yeqvww74h4yaejj6h733thgcafdaukjtw397", - "base": "cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397", - "name": "Apollo DAO Token", - "display": "apollo", - "symbol": "APOLLO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/apollo.png" + type_asset: 'cw20', + address: 'terra100yeqvww74h4yaejj6h733thgcafdaukjtw397', + base: 'cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397', + name: 'Apollo DAO Token', + display: 'apollo', + symbol: 'APOLLO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/apollo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u", - "exponent": 0 + denom: 'cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u', + exponent: 0 }, { - "denom": "abr", - "exponent": 6 + denom: 'abr', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u", - "base": "cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u", - "name": "Allbridge", - "display": "abr", - "symbol": "ABR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/abr.svg" + type_asset: 'cw20', + address: 'terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u', + base: 'cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u', + name: 'Allbridge', + display: 'abr', + symbol: 'ABR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/abr.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "exponent": 0 + denom: 'cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc', + exponent: 0 }, { - "denom": "whgtps", - "exponent": 8 + denom: 'whgtps', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "base": "cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc", - "name": "Global Transaction Payment Solu", - "display": "whgtps", - "symbol": "whGTPS" + type_asset: 'cw20', + address: 'terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc', + base: 'cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc', + name: 'Global Transaction Payment Solu', + display: 'whgtps', + symbol: 'whGTPS' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw", - "exponent": 0 + denom: 'cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw', + exponent: 0 }, { - "denom": "prism", - "exponent": 6 + denom: 'prism', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw", - "base": "cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw", - "name": "Prism Protocol Token", - "display": "prism", - "symbol": "PRISM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/prism.png" + type_asset: 'cw20', + address: 'terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw', + base: 'cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw', + name: 'Prism Protocol Token', + display: 'prism', + symbol: 'PRISM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/prism.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "exponent": 0 + denom: 'cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq', + exponent: 0 }, { - "denom": "sdollar", - "exponent": 2 + denom: 'sdollar', + exponent: 2 } ], - "type_asset": "cw20", - "address": "terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "base": "cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq", - "name": "Space Dollar", - "display": "sdollar", - "symbol": "SDOLLAR" + type_asset: 'cw20', + address: 'terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq', + base: 'cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq', + name: 'Space Dollar', + display: 'sdollar', + symbol: 'SDOLLAR' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k", - "exponent": 0 + denom: 'cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k', + exponent: 0 }, { - "denom": "whsail", - "exponent": 6 + denom: 'whsail', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k", - "base": "cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k", - "name": "SAIL", - "display": "whsail", - "symbol": "whSAIL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whsail.png" + type_asset: 'cw20', + address: 'terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k', + base: 'cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k', + name: 'SAIL', + display: 'whsail', + symbol: 'whSAIL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whsail.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu", - "exponent": 0 + denom: 'cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu', + exponent: 0 }, { - "denom": "whgsail", - "exponent": 8 + denom: 'whgsail', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu", - "base": "cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu", - "name": "SolanaSail Governance Token V2", - "display": "whgsail", - "symbol": "whgSAIL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whgsail.png" + type_asset: 'cw20', + address: 'terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu', + base: 'cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu', + name: 'SolanaSail Governance Token V2', + display: 'whgsail', + symbol: 'whgSAIL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whgsail.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz", - "exponent": 0 + denom: 'cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz', + exponent: 0 }, { - "denom": "xprism", - "exponent": 6 + denom: 'xprism', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz", - "base": "cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz", - "name": "Prism Governance Token", - "display": "xprism", - "symbol": "xPRISM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xprism.png" + type_asset: 'cw20', + address: 'terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz', + base: 'cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz', + name: 'Prism Governance Token', + display: 'xprism', + symbol: 'xPRISM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xprism.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "exponent": 0 + denom: 'cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5', + exponent: 0 }, { - "denom": "cde", - "exponent": 9 + denom: 'cde', + exponent: 9 } ], - "type_asset": "cw20", - "address": "terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "base": "cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5", - "name": "CAPITRADE TOKEN", - "display": "cde", - "symbol": "CDE" + type_asset: 'cw20', + address: 'terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5', + base: 'cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5', + name: 'CAPITRADE TOKEN', + display: 'cde', + symbol: 'CDE' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8", - "exponent": 0 + denom: 'cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8', + exponent: 0 }, { - "denom": "ctx", - "exponent": 6 + denom: 'ctx', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8", - "base": "cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8", - "name": "C2X Token", - "display": "ctx", - "symbol": "CTX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ctx.png" + type_asset: 'cw20', + address: 'terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8', + base: 'cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8', + name: 'C2X Token', + display: 'ctx', + symbol: 'CTX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ctx.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau", - "exponent": 0 + denom: 'cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau', + exponent: 0 }, { - "denom": "cluna", - "exponent": 6 + denom: 'cluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau", - "base": "cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau", - "name": "Prism cLuna Token", - "display": "cluna", - "symbol": "cLuna", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cluna.png" + type_asset: 'cw20', + address: 'terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau', + base: 'cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau', + name: 'Prism cLuna Token', + display: 'cluna', + symbol: 'cLuna', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cluna.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2", - "exponent": 0 + denom: 'cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2', + exponent: 0 }, { - "denom": "pluna", - "exponent": 6 + denom: 'pluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2", - "base": "cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2", - "name": "Prism pLuna Token", - "display": "pluna", - "symbol": "pLuna", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pluna.png" + type_asset: 'cw20', + address: 'terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2', + base: 'cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2', + name: 'Prism pLuna Token', + display: 'pluna', + symbol: 'pLuna', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pluna.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz", - "exponent": 0 + denom: 'cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz', + exponent: 0 }, { - "denom": "yluna", - "exponent": 6 + denom: 'yluna', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz", - "base": "cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz", - "name": "Prism yLuna Token", - "display": "yluna", - "symbol": "yLuna", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/yluna.png" + type_asset: 'cw20', + address: 'terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz', + base: 'cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz', + name: 'Prism yLuna Token', + display: 'yluna', + symbol: 'yLuna', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/yluna.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx", - "exponent": 0 + denom: 'cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx', + exponent: 0 }, { - "denom": "atlo", - "exponent": 6 + denom: 'atlo', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx", - "base": "cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx", - "name": "Atlo Token", - "display": "atlo", - "symbol": "ATLO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlo.png" + type_asset: 'cw20', + address: 'terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx', + base: 'cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx', + name: 'Atlo Token', + display: 'atlo', + symbol: 'ATLO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp", - "exponent": 0 + denom: 'cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp', + exponent: 0 }, { - "denom": "local", - "exponent": 6 + denom: 'local', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp", - "base": "cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp", - "name": "LOCAL Token", - "display": "local", - "symbol": "LOCAL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/local.png" + type_asset: 'cw20', + address: 'terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp', + base: 'cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp', + name: 'LOCAL Token', + display: 'local', + symbol: 'LOCAL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/local.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6", - "exponent": 0 + denom: 'cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6', + exponent: 0 }, { - "denom": "luv", - "exponent": 6 + denom: 'luv', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6", - "base": "cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6", - "name": "Lunaverse", - "display": "luv", - "symbol": "LUV", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luv.png" + type_asset: 'cw20', + address: 'terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6', + base: 'cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6', + name: 'Lunaverse', + display: 'luv', + symbol: 'LUV', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luv.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp", - "exponent": 0 + denom: 'cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp', + exponent: 0 }, { - "denom": "robo", - "exponent": 6 + denom: 'robo', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp", - "base": "cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp", - "name": "RoboHero", - "display": "robo", - "symbol": "ROBO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/robo.png" + type_asset: 'cw20', + address: 'terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp', + base: 'cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp', + name: 'RoboHero', + display: 'robo', + symbol: 'ROBO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/robo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk", - "exponent": 0 + denom: 'cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk', + exponent: 0 }, { - "denom": "luart", - "exponent": 6 + denom: 'luart', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk", - "base": "cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk", - "name": "Luart Token", - "display": "luart", - "symbol": "LUART", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luart.png" + type_asset: 'cw20', + address: 'terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk', + base: 'cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk', + name: 'Luart Token', + display: 'luart', + symbol: 'LUART', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luart.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n", - "exponent": 0 + denom: 'cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n', + exponent: 0 }, { - "denom": "mars", - "exponent": 6 + denom: 'mars', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n", - "base": "cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n", - "name": "Mars Token", - "display": "mars", - "symbol": "MARS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mars.svg" + type_asset: 'cw20', + address: 'terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n', + base: 'cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n', + name: 'Mars Token', + display: 'mars', + symbol: 'MARS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mars.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4", - "exponent": 0 + denom: 'cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4', + exponent: 0 }, { - "denom": "xmars", - "exponent": 6 + denom: 'xmars', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4", - "base": "cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4", - "name": "xMars Token", - "display": "xmars", - "symbol": "XMARS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xmars.svg" + type_asset: 'cw20', + address: 'terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4', + base: 'cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4', + name: 'xMars Token', + display: 'xmars', + symbol: 'XMARS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xmars.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "exponent": 0 + denom: 'cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4', + exponent: 0 }, { - "denom": "dfiat", - "exponent": 8 + denom: 'dfiat', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "base": "cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4", - "name": "DeFiato", - "display": "dfiat", - "symbol": "DFIAT" + type_asset: 'cw20', + address: 'terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4', + base: 'cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4', + name: 'DeFiato', + display: 'dfiat', + symbol: 'DFIAT' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d", - "exponent": 0 + denom: 'cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d', + exponent: 0 }, { - "denom": "ceres", - "exponent": 6 + denom: 'ceres', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d", - "base": "cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d", - "name": "Ceres Governance Token", - "display": "ceres", - "symbol": "CERES", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ceres.svg" + type_asset: 'cw20', + address: 'terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d', + base: 'cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d', + name: 'Ceres Governance Token', + display: 'ceres', + symbol: 'CERES', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ceres.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58", - "exponent": 0 + denom: 'cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58', + exponent: 0 }, { - "denom": "wasavax", - "exponent": 8 + denom: 'wasavax', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58", - "base": "cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58", - "name": "BENQI Staked AVAX (Portal)", - "display": "wasavax", - "symbol": "wasAVAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wasavax.svg" + type_asset: 'cw20', + address: 'terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58', + base: 'cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58', + name: 'BENQI Staked AVAX (Portal)', + display: 'wasavax', + symbol: 'wasAVAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wasavax.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr", - "exponent": 0 + denom: 'cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr', + exponent: 0 }, { - "denom": "mint", - "exponent": 6 + denom: 'mint', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr", - "base": "cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr", - "name": "MintDAO", - "display": "mint", - "symbol": "MINT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mint.svg" + type_asset: 'cw20', + address: 'terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr', + base: 'cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr', + name: 'MintDAO', + display: 'mint', + symbol: 'MINT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mint.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02", - "exponent": 0 + denom: 'cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02', + exponent: 0 }, { - "denom": "sd", - "exponent": 8 + denom: 'sd', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02", - "base": "cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02", - "name": "Stader SD (Portal)", - "display": "sd", - "symbol": "SD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sd.png" + type_asset: 'cw20', + address: 'terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02', + base: 'cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02', + name: 'Stader SD (Portal)', + display: 'sd', + symbol: 'SD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sd.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep", - "exponent": 0 + denom: 'cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep', + exponent: 0 }, { - "denom": "xsd", - "exponent": 8 + denom: 'xsd', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep", - "base": "cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep", - "name": "Stader xSD", - "display": "xsd", - "symbol": "xSD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xsd.png" + type_asset: 'cw20', + address: 'terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep', + base: 'cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep', + name: 'Stader xSD', + display: 'xsd', + symbol: 'xSD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/xsd.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r", - "exponent": 0 + denom: 'cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r', + exponent: 0 }, { - "denom": "paxg", - "exponent": 8 + denom: 'paxg', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r", - "base": "cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r", - "name": "Paxos Gold (Portal)", - "display": "paxg", - "symbol": "PAXG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/paxg.png" + type_asset: 'cw20', + address: 'terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r', + base: 'cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r', + name: 'Paxos Gold (Portal)', + display: 'paxg', + symbol: 'PAXG', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/paxg.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl", - "exponent": 0 + denom: 'cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl', + exponent: 0 }, { - "denom": "whdao", - "exponent": 8 + denom: 'whdao', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl", - "base": "cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl", - "name": "DAO Maker", - "display": "whdao", - "symbol": "whDAO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whdao.png" + type_asset: 'cw20', + address: 'terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl', + base: 'cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl', + name: 'DAO Maker', + display: 'whdao', + symbol: 'whDAO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/whdao.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt", - "exponent": 0 + denom: 'cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt', + exponent: 0 }, { - "denom": "link", - "exponent": 18 + denom: 'link', + exponent: 18 } ], - "type_asset": "cw20", - "address": "terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt", - "base": "cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt", - "name": "ChainLink Token", - "display": "link", - "symbol": "LINK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png" + type_asset: 'cw20', + address: 'terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt', + base: 'cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt', + name: 'ChainLink Token', + display: 'link', + symbol: 'LINK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/link.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr", - "exponent": 0 + denom: 'cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr', + exponent: 0 }, { - "denom": "sayve", - "exponent": 6 + denom: 'sayve', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr", - "base": "cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr", - "name": "Sayve Token", - "display": "sayve", - "symbol": "SAYVE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sayve.png" + type_asset: 'cw20', + address: 'terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr', + base: 'cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr', + name: 'Sayve Token', + display: 'sayve', + symbol: 'SAYVE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sayve.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "exponent": 0 + denom: 'cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u', + exponent: 0 }, { - "denom": "guides", - "exponent": 6 + denom: 'guides', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "base": "cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u", - "name": "Guides Token", - "display": "guides", - "symbol": "GUIDES" + type_asset: 'cw20', + address: 'terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u', + base: 'cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u', + name: 'Guides Token', + display: 'guides', + symbol: 'GUIDES' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2", - "exponent": 0 + denom: 'cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2', + exponent: 0 }, { - "denom": "bro", - "exponent": 6 + denom: 'bro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2", - "base": "cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2", - "name": "BRO token", - "display": "bro", - "symbol": "BRO", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bro.svg" + type_asset: 'cw20', + address: 'terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2', + base: 'cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2', + name: 'BRO token', + display: 'bro', + symbol: 'BRO', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bro.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds", - "exponent": 0 + denom: 'cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds', + exponent: 0 }, { - "denom": "bbro", - "exponent": 6 + denom: 'bbro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds", - "base": "cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds", - "name": "bBRO token", - "display": "bbro", - "symbol": "bBRO", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bbro.svg" + type_asset: 'cw20', + address: 'terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds', + base: 'cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds', + name: 'bBRO token', + display: 'bbro', + symbol: 'bBRO', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bbro.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "exponent": 0 + denom: 'cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr', + exponent: 0 }, { - "denom": "gtps", - "exponent": 18 + denom: 'gtps', + exponent: 18 } ], - "type_asset": "cw20", - "address": "terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "base": "cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr", - "name": "Global Transaction Payment Solut", - "display": "gtps", - "symbol": "GTPS" + type_asset: 'cw20', + address: 'terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr', + base: 'cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr', + name: 'Global Transaction Payment Solut', + display: 'gtps', + symbol: 'GTPS' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "exponent": 0 + denom: 'cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se', + exponent: 0 }, { - "denom": "gfi", - "exponent": 18 + denom: 'gfi', + exponent: 18 } ], - "type_asset": "cw20", - "address": "terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "base": "cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se", - "name": "Gtps.Finance", - "display": "gfi", - "symbol": "GFI" + type_asset: 'cw20', + address: 'terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se', + base: 'cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se', + name: 'Gtps.Finance', + display: 'gfi', + symbol: 'GFI' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "exponent": 0 + denom: 'cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa', + exponent: 0 }, { - "denom": "ulc", - "exponent": 18 + denom: 'ulc', + exponent: 18 } ], - "type_asset": "cw20", - "address": "terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "base": "cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa", - "name": "Ultimatalioniscoin", - "display": "ulc", - "symbol": "ULC" + type_asset: 'cw20', + address: 'terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa', + base: 'cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa', + name: 'Ultimatalioniscoin', + display: 'ulc', + symbol: 'ULC' }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl", - "exponent": 0 + denom: 'cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl', + exponent: 0 }, { - "denom": "sst", - "exponent": 6 + denom: 'sst', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl", - "base": "cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl", - "name": "Sooah Studio Token", - "display": "sst", - "symbol": "SST", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sst.png" + type_asset: 'cw20', + address: 'terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl', + base: 'cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl', + name: 'Sooah Studio Token', + display: 'sst', + symbol: 'SST', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sst.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", - "exponent": 0 + denom: 'cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc', + exponent: 0 }, { - "denom": "atlas", - "exponent": 8 + denom: 'atlas', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", - "base": "cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc", - "name": "Star Atlas (Portal)", - "display": "atlas", - "symbol": "ATLAS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlas.png" + type_asset: 'cw20', + address: 'terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc', + base: 'cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc', + name: 'Star Atlas (Portal)', + display: 'atlas', + symbol: 'ATLAS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/atlas.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", - "exponent": 0 + denom: 'cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp', + exponent: 0 }, { - "denom": "audio", - "exponent": 8 + denom: 'audio', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", - "base": "cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp", - "name": "Audius (Portal)", - "display": "audio", - "symbol": "AUDIO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/audio.png" + type_asset: 'cw20', + address: 'terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp', + base: 'cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp', + name: 'Audius (Portal)', + display: 'audio', + symbol: 'AUDIO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/audio.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", - "exponent": 0 + denom: 'cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m', + exponent: 0 }, { - "denom": "avax", - "exponent": 8 + denom: 'avax', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", - "base": "cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m", - "name": "AVAX (Portal)", - "display": "avax", - "symbol": "AVAX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/avax.png" + type_asset: 'cw20', + address: 'terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m', + base: 'cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m', + name: 'AVAX (Portal)', + display: 'avax', + symbol: 'AVAX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/avax.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", - "exponent": 0 + denom: 'cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2', + exponent: 0 }, { - "denom": "bat", - "exponent": 8 + denom: 'bat', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", - "base": "cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2", - "name": "Basic Attention Token (Portal)", - "display": "bat", - "symbol": "BAT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bat.png" + type_asset: 'cw20', + address: 'terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2', + base: 'cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2', + name: 'Basic Attention Token (Portal)', + display: 'bat', + symbol: 'BAT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/bat.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", - "exponent": 0 + denom: 'cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd', + exponent: 0 }, { - "denom": "busdbs", - "exponent": 8 + denom: 'busdbs', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", - "base": "cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd", - "name": "Binance USD (Portal from BSC)", - "display": "busdbs", - "symbol": "BUSDbs", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/busdbs.png" + type_asset: 'cw20', + address: 'terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd', + base: 'cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd', + name: 'Binance USD (Portal from BSC)', + display: 'busdbs', + symbol: 'BUSDbs', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/busdbs.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", - "exponent": 0 + denom: 'cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95', + exponent: 0 }, { - "denom": "dai", - "exponent": 8 + denom: 'dai', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", - "base": "cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95", - "name": "DAI (Portal)", - "display": "dai", - "symbol": "DAI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dai.png" + type_asset: 'cw20', + address: 'terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95', + base: 'cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95', + name: 'DAI (Portal)', + display: 'dai', + symbol: 'DAI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dai.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", - "exponent": 0 + denom: 'cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8', + exponent: 0 }, { - "denom": "maticpo", - "exponent": 8 + denom: 'maticpo', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", - "base": "cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8", - "name": "MATIC (Portal from Polygon)", - "display": "maticpo", - "symbol": "MATICpo", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticpo.png" + type_asset: 'cw20', + address: 'terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8', + base: 'cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8', + name: 'MATIC (Portal from Polygon)', + display: 'maticpo', + symbol: 'MATICpo', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/maticpo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", - "exponent": 0 + denom: 'cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y', + exponent: 0 }, { - "denom": "mimet", - "exponent": 8 + denom: 'mimet', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", - "base": "cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y", - "name": "Magic Internet Money (Portal from Ethereum)", - "display": "mimet", - "symbol": "MIMet", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png" + type_asset: 'cw20', + address: 'terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y', + base: 'cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y', + name: 'Magic Internet Money (Portal from Ethereum)', + display: 'mimet', + symbol: 'MIMet', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mimet.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", - "exponent": 0 + denom: 'cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q', + exponent: 0 }, { - "denom": "ray", - "exponent": 6 + denom: 'ray', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", - "base": "cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q", - "name": "Raydium (Portal)", - "display": "ray", - "symbol": "RAY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ray.png" + type_asset: 'cw20', + address: 'terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q', + base: 'cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q', + name: 'Raydium (Portal)', + display: 'ray', + symbol: 'RAY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ray.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", - "exponent": 0 + denom: 'cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc', + exponent: 0 }, { - "denom": "sbr", - "exponent": 6 + denom: 'sbr', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", - "base": "cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc", - "name": "Saber (Portal)", - "display": "sbr", - "symbol": "SBR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sbr.png" + type_asset: 'cw20', + address: 'terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc', + base: 'cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc', + name: 'Saber (Portal)', + display: 'sbr', + symbol: 'SBR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sbr.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", - "exponent": 0 + denom: 'cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd', + exponent: 0 }, { - "denom": "shib", - "exponent": 8 + denom: 'shib', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", - "base": "cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd", - "name": "Shiba Inu (Portal)", - "display": "shib", - "symbol": "SHIB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/shib.png" + type_asset: 'cw20', + address: 'terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd', + base: 'cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd', + name: 'Shiba Inu (Portal)', + display: 'shib', + symbol: 'SHIB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/shib.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", - "exponent": 0 + denom: 'cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c', + exponent: 0 }, { - "denom": "srmso", - "exponent": 6 + denom: 'srmso', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", - "base": "cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c", - "name": "Serum (Portal from Solana)", - "display": "srmso", - "symbol": "SRMso", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/srmso.png" + type_asset: 'cw20', + address: 'terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c', + base: 'cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c', + name: 'Serum (Portal from Solana)', + display: 'srmso', + symbol: 'SRMso', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/srmso.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", - "exponent": 0 + denom: 'cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w', + exponent: 0 }, { - "denom": "usdcav", - "exponent": 6 + denom: 'usdcav', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", - "base": "cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w", - "name": "USD Coin (Portal from Avalanche)", - "display": "usdcav", - "symbol": "USDCav", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcav.png" + type_asset: 'cw20', + address: 'terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w', + base: 'cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w', + name: 'USD Coin (Portal from Avalanche)', + display: 'usdcav', + symbol: 'USDCav', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcav.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", - "exponent": 0 + denom: 'cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu', + exponent: 0 }, { - "denom": "usdcbs", - "exponent": 8 + denom: 'usdcbs', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", - "base": "cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu", - "name": "USD Coin (Portal from BSC)", - "display": "usdcbs", - "symbol": "USDCbs", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcbs.png" + type_asset: 'cw20', + address: 'terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu', + base: 'cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu', + name: 'USD Coin (Portal from BSC)', + display: 'usdcbs', + symbol: 'USDCbs', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcbs.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", - "exponent": 0 + denom: 'cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x', + exponent: 0 }, { - "denom": "usdcpo", - "exponent": 6 + denom: 'usdcpo', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", - "base": "cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x", - "name": "USD Coin (Portal from Polygon)", - "display": "usdcpo", - "symbol": "USDCpo", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcpo.png" + type_asset: 'cw20', + address: 'terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x', + base: 'cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x', + name: 'USD Coin (Portal from Polygon)', + display: 'usdcpo', + symbol: 'USDCpo', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcpo.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", - "exponent": 0 + denom: 'cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4', + exponent: 0 }, { - "denom": "usdcso", - "exponent": 6 + denom: 'usdcso', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", - "base": "cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4", - "name": "USD Coin (Portal from Solana)", - "display": "usdcso", - "symbol": "USDCso", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcso.png" + type_asset: 'cw20', + address: 'terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4', + base: 'cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4', + name: 'USD Coin (Portal from Solana)', + display: 'usdcso', + symbol: 'USDCso', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdcso.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", - "exponent": 0 + denom: 'cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx', + exponent: 0 }, { - "denom": "usdtav", - "exponent": 6 + denom: 'usdtav', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", - "base": "cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx", - "name": "Tether USD (Portal from Avalanche)", - "display": "usdtav", - "symbol": "USDTav", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtav.png" + type_asset: 'cw20', + address: 'terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx', + base: 'cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx', + name: 'Tether USD (Portal from Avalanche)', + display: 'usdtav', + symbol: 'USDTav', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtav.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", - "exponent": 0 + denom: 'cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd', + exponent: 0 }, { - "denom": "usdtbs", - "exponent": 8 + denom: 'usdtbs', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", - "base": "cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd", - "name": "Tether USD (Portal from BSC)", - "display": "usdtbs", - "symbol": "USDTbs", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtbs.png" + type_asset: 'cw20', + address: 'terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd', + base: 'cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd', + name: 'Tether USD (Portal from BSC)', + display: 'usdtbs', + symbol: 'USDTbs', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtbs.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", - "exponent": 0 + denom: 'cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5', + exponent: 0 }, { - "denom": "usdtso", - "exponent": 6 + denom: 'usdtso', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", - "base": "cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5", - "name": "Tether USD (Portal from Solana)", - "display": "usdtso", - "symbol": "USDTso", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtso.png" + type_asset: 'cw20', + address: 'terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5', + base: 'cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5', + name: 'Tether USD (Portal from Solana)', + display: 'usdtso', + symbol: 'USDTso', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/usdtso.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", - "exponent": 0 + denom: 'cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3', + exponent: 0 }, { - "denom": "gohm", - "exponent": 8 + denom: 'gohm', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", - "base": "cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3", - "name": "Governance OHM (Portal)", - "display": "gohm", - "symbol": "gOHM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gohm.png" + type_asset: 'cw20', + address: 'terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3', + base: 'cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3', + name: 'Governance OHM (Portal)', + display: 'gohm', + symbol: 'gOHM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gohm.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", - "exponent": 0 + denom: 'cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y', + exponent: 0 }, { - "denom": "msol", - "exponent": 8 + denom: 'msol', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", - "base": "cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y", - "name": "Marinade staked SOL (Portal)", - "display": "msol", - "symbol": "mSOL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msol.png" + type_asset: 'cw20', + address: 'terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y', + base: 'cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y', + name: 'Marinade staked SOL (Portal)', + display: 'msol', + symbol: 'mSOL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/msol.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", - "exponent": 0 + denom: 'cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d', + exponent: 0 }, { - "denom": "steth", - "exponent": 8 + denom: 'steth', + exponent: 8 } ], - "type_asset": "cw20", - "address": "terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", - "base": "cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d", - "name": "Lido Staked Ether (Portal)", - "display": "steth", - "symbol": "stETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steth.png" + type_asset: 'cw20', + address: 'terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d', + base: 'cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d', + name: 'Lido Staked Ether (Portal)', + display: 'steth', + symbol: 'stETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steth.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc", - "exponent": 0 + denom: 'cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc', + exponent: 0 }, { - "denom": "lct", - "exponent": 6 + denom: 'lct', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc", - "base": "cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc", - "name": "LCT Token", - "display": "lct", - "symbol": "LCT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lct.png" + type_asset: 'cw20', + address: 'terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc', + base: 'cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc', + name: 'LCT Token', + display: 'lct', + symbol: 'LCT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lct.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a", - "exponent": 0 + denom: 'cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a', + exponent: 0 }, { - "denom": "batom", - "exponent": 6 + denom: 'batom', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a", - "base": "cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a", - "name": "Bonded ATOM", - "display": "batom", - "symbol": "bATOM", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/batom.svg" + type_asset: 'cw20', + address: 'terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a', + base: 'cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a', + name: 'Bonded ATOM', + display: 'batom', + symbol: 'bATOM', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/batom.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn", - "exponent": 0 + denom: 'cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn', + exponent: 0 }, { - "denom": "webatom", - "exponent": 6 + denom: 'webatom', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn", - "base": "cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn", - "name": "pStake Bonded ATOM (Wormhole)", - "display": "webatom", - "symbol": "webATOM", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webatom.svg" + type_asset: 'cw20', + address: 'terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn', + base: 'cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn', + name: 'pStake Bonded ATOM (Wormhole)', + display: 'webatom', + symbol: 'webATOM', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/webatom.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn", - "exponent": 0 + denom: 'cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn', + exponent: 0 }, { - "denom": "wcoin", - "exponent": 6 + denom: 'wcoin', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn", - "base": "cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn", - "name": "Willisch Coin", - "display": "wcoin", - "symbol": "WCOIN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wcoin.svg" + type_asset: 'cw20', + address: 'terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn', + base: 'cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn', + name: 'Willisch Coin', + display: 'wcoin', + symbol: 'WCOIN', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/wcoin.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy", - "exponent": 0 + denom: 'cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy', + exponent: 0 }, { - "denom": "lctfancard", - "exponent": 0 + denom: 'lctfancard', + exponent: 0 } ], - "type_asset": "cw20", - "address": "terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy", - "base": "cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy", - "name": "LCT Fancard Token", - "display": "lctfancard", - "symbol": "LCTfancard", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lctfancard.png" + type_asset: 'cw20', + address: 'terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy', + base: 'cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy', + name: 'LCT Fancard Token', + display: 'lctfancard', + symbol: 'LCTfancard', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/lctfancard.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang", - "exponent": 0 + denom: 'cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang', + exponent: 0 }, { - "denom": "kntc", - "exponent": 6 + denom: 'kntc', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang", - "base": "cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang", - "name": "Kinetic Token", - "display": "kntc", - "symbol": "KNTC", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kntc.svg" + type_asset: 'cw20', + address: 'terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang', + base: 'cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang', + name: 'Kinetic Token', + display: 'kntc', + symbol: 'KNTC', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kntc.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex", - "exponent": 0 + denom: 'cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex', + exponent: 0 }, { - "denom": "kust", - "exponent": 6 + denom: 'kust', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex", - "base": "cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex", - "name": "Kinetic kUST Token", - "display": "kust", - "symbol": "kUST", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kust.svg" + type_asset: 'cw20', + address: 'terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex', + base: 'cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex', + name: 'Kinetic kUST Token', + display: 'kust', + symbol: 'kUST', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/kust.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv", - "exponent": 0 + denom: 'cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv', + exponent: 0 }, { - "denom": "steak", - "exponent": 6 + denom: 'steak', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv", - "base": "cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv", - "name": "Steak Token", - "display": "steak", - "symbol": "STEAK", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steak.svg" + type_asset: 'cw20', + address: 'terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv', + base: 'cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv', + name: 'Steak Token', + display: 'steak', + symbol: 'STEAK', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/steak.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m", - "exponent": 0 + denom: 'cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m', + exponent: 0 }, { - "denom": "cst", - "exponent": 6 + denom: 'cst', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m", - "base": "cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m", - "name": "CST Token", - "display": "cst", - "symbol": "CST", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cst.png" + type_asset: 'cw20', + address: 'terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m', + base: 'cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m', + name: 'CST Token', + display: 'cst', + symbol: 'CST', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cst.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam", - "exponent": 0 + denom: 'cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam', + exponent: 0 }, { - "denom": "cstfancard", - "exponent": 0 + denom: 'cstfancard', + exponent: 0 } ], - "type_asset": "cw20", - "address": "terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam", - "base": "cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam", - "name": "CST Fancard Token", - "display": "cstfancard", - "symbol": "CSTfancard", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cstfancard.png" + type_asset: 'cw20', + address: 'terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam', + base: 'cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam', + name: 'CST Fancard Token', + display: 'cstfancard', + symbol: 'CSTfancard', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cstfancard.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj", - "exponent": 0 + denom: 'cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj', + exponent: 0 }, { - "denom": "nwld", - "exponent": 9 + denom: 'nwld', + exponent: 9 } ], - "type_asset": "cw20", - "address": "terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj", - "base": "cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj", - "name": "Neworld Labs Develpper Token", - "display": "nwld", - "symbol": "NWLD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwld.png" + type_asset: 'cw20', + address: 'terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj', + base: 'cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj', + name: 'Neworld Labs Develpper Token', + display: 'nwld', + symbol: 'NWLD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwld.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k", - "exponent": 0 + denom: 'cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k', + exponent: 0 }, { - "denom": "fury", - "exponent": 6 + denom: 'fury', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k", - "base": "cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k", - "name": "FURY", - "display": "fury", - "symbol": "FURY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/fury.png" + type_asset: 'cw20', + address: 'terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k', + base: 'cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k', + name: 'FURY', + display: 'fury', + symbol: 'FURY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/fury.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93", - "exponent": 0 + denom: 'cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93', + exponent: 0 }, { - "denom": "rct", - "exponent": 6 + denom: 'rct', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93", - "base": "cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93", - "name": "Reactor Token", - "display": "rct", - "symbol": "RCT", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rct.svg" + type_asset: 'cw20', + address: 'terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93', + base: 'cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93', + name: 'Reactor Token', + display: 'rct', + symbol: 'RCT', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/rct.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu", - "exponent": 0 + denom: 'cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu', + exponent: 0 }, { - "denom": "vitc", - "exponent": 6 + denom: 'vitc', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu", - "base": "cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu", - "name": "Vitamin Coin", - "display": "vitc", - "symbol": "VITC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vitc.png" + type_asset: 'cw20', + address: 'terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu', + base: 'cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu', + name: 'Vitamin Coin', + display: 'vitc', + symbol: 'VITC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/vitc.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g", - "exponent": 0 + denom: 'cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g', + exponent: 0 }, { - "denom": "sb", - "exponent": 6 + denom: 'sb', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g", - "base": "cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g", - "name": "DragonSB", - "display": "sb", - "symbol": "SB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sb.png" + type_asset: 'cw20', + address: 'terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g', + base: 'cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g', + name: 'DragonSB', + display: 'sb', + symbol: 'SB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sb.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh", - "exponent": 0 + denom: 'cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh', + exponent: 0 }, { - "denom": "toad", - "exponent": 6 + denom: 'toad', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh", - "base": "cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh", - "name": "RESToad Token", - "display": "toad", - "symbol": "TOAD", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/toad.svg" + type_asset: 'cw20', + address: 'terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh', + base: 'cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh', + name: 'RESToad Token', + display: 'toad', + symbol: 'TOAD', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/toad.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd", - "exponent": 0 + denom: 'cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd', + exponent: 0 }, { - "denom": "orionastro", - "exponent": 6 + denom: 'orionastro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd", - "base": "cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd", - "name": "Orion Money xASTRO Derivative Token", - "display": "orionastro", - "symbol": "orionASTRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orionastro.png" + type_asset: 'cw20', + address: 'terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd', + base: 'cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd', + name: 'Orion Money xASTRO Derivative Token', + display: 'orionastro', + symbol: 'orionASTRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/orionastro.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp", - "exponent": 0 + denom: 'cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp', + exponent: 0 }, { - "denom": "retro", - "exponent": 6 + denom: 'retro', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp", - "base": "cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp", - "name": "Retrograde", - "display": "retro", - "symbol": "RETRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/retro.png" + type_asset: 'cw20', + address: 'terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp', + base: 'cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp', + name: 'Retrograde', + display: 'retro', + symbol: 'RETRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/retro.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d", - "exponent": 0 + denom: 'cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d', + exponent: 0 }, { - "denom": "tnd", - "exponent": 6 + denom: 'tnd', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra16wggm67a34msdxasg2vergm2pt289y7930wv7d", - "base": "cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d", - "name": "TerrnadoCash", - "display": "tnd", - "symbol": "TND", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tnd.png" + type_asset: 'cw20', + address: 'terra16wggm67a34msdxasg2vergm2pt289y7930wv7d', + base: 'cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d', + name: 'TerrnadoCash', + display: 'tnd', + symbol: 'TND', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tnd.png' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g", - "exponent": 0 + denom: 'cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g', + exponent: 0 }, { - "denom": "stnd", - "exponent": 6 + denom: 'stnd', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g", - "base": "cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g", - "name": "TerrnadoCash", - "display": "stnd", - "symbol": "sTND", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stnd.svg" + type_asset: 'cw20', + address: 'terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g', + base: 'cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g', + name: 'TerrnadoCash', + display: 'stnd', + symbol: 'sTND', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/stnd.svg' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe", - "exponent": 0 + denom: 'cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe', + exponent: 0 }, { - "denom": "nwt", - "exponent": 9 + denom: 'nwt', + exponent: 9 } ], - "type_asset": "cw20", - "address": "terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe", - "base": "cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe", - "name": "Neworld Token", - "display": "nwt", - "symbol": "NWT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwt.png" + type_asset: 'cw20', + address: 'terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe', + base: 'cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe', + name: 'Neworld Token', + display: 'nwt', + symbol: 'NWT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/nwt.png' } }, { - "description": "The AUD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The AUD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uaud", - "exponent": 0, - "aliases": [ - "microaud" - ] + denom: 'uaud', + exponent: 0, + aliases: ['microaud'] }, { - "denom": "maud", - "exponent": 3, - "aliases": [ - "milliaud" - ] + denom: 'maud', + exponent: 3, + aliases: ['milliaud'] }, { - "denom": "aut", - "exponent": 6, - "aliases": [ - "autc" - ] + denom: 'aut', + exponent: 6, + aliases: ['autc'] } ], - "base": "uaud", - "display": "aut", - "name": "TerraClassicAUD", - "symbol": "AUTC", - "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" + base: 'uaud', + display: 'aut', + name: 'TerraClassicAUD', + symbol: 'AUTC', + 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' } }, { - "description": "The CAD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CAD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ucad", - "exponent": 0, - "aliases": [ - "microcad" - ] + denom: 'ucad', + exponent: 0, + aliases: ['microcad'] }, { - "denom": "mcad", - "exponent": 3, - "aliases": [ - "millicad" - ] + denom: 'mcad', + exponent: 3, + aliases: ['millicad'] }, { - "denom": "cat", - "exponent": 6, - "aliases": [ - "catc" - ] + denom: 'cat', + exponent: 6, + aliases: ['catc'] } ], - "base": "ucad", - "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" + base: 'ucad', + 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' } }, { - "description": "The CHF stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CHF stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uchf", - "exponent": 0, - "aliases": [ - "microchf" - ] + denom: 'uchf', + exponent: 0, + aliases: ['microchf'] }, { - "denom": "mchf", - "exponent": 3, - "aliases": [ - "millichf" - ] + denom: 'mchf', + exponent: 3, + aliases: ['millichf'] }, { - "denom": "cht", - "exponent": 6, - "aliases": [ - "chtc" - ] + denom: 'cht', + exponent: 6, + aliases: ['chtc'] } ], - "base": "uchf", - "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" + base: 'uchf', + 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' } }, { - "description": "The CNY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CNY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ucny", - "exponent": 0, - "aliases": [ - "microcny" - ] + denom: 'ucny', + exponent: 0, + aliases: ['microcny'] }, { - "denom": "mcny", - "exponent": 3, - "aliases": [ - "millicny" - ] + denom: 'mcny', + exponent: 3, + aliases: ['millicny'] }, { - "denom": "cnt", - "exponent": 6, - "aliases": [ - "cntc" - ] + denom: 'cnt', + exponent: 6, + aliases: ['cntc'] } ], - "base": "ucny", - "display": "cnt", - "name": "TerraClassicCNY", - "symbol": "CNTC", - "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" + base: 'ucny', + display: 'cnt', + name: 'TerraClassicCNY', + symbol: 'CNTC', + 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' } }, { - "description": "The DKK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The DKK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "udkk", - "exponent": 0, - "aliases": [ - "microdkk" - ] + denom: 'udkk', + exponent: 0, + aliases: ['microdkk'] }, { - "denom": "mdkk", - "exponent": 3, - "aliases": [ - "millidkk" - ] + denom: 'mdkk', + exponent: 3, + aliases: ['millidkk'] }, { - "denom": "dkt", - "exponent": 6, - "aliases": [ - "dktc" - ] + denom: 'dkt', + exponent: 6, + aliases: ['dktc'] } ], - "base": "udkk", - "display": "dkt", - "name": "TerraClassicDKK", - "symbol": "DKTC", - "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" + base: 'udkk', + display: 'dkt', + name: 'TerraClassicDKK', + symbol: 'DKTC', + 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' } }, { - "description": "The EUR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The EUR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ueur", - "exponent": 0, - "aliases": [ - "microeur" - ] + denom: 'ueur', + exponent: 0, + aliases: ['microeur'] }, { - "denom": "meur", - "exponent": 3, - "aliases": [ - "millieur" - ] + denom: 'meur', + exponent: 3, + aliases: ['millieur'] }, { - "denom": "eut", - "exponent": 6, - "aliases": [ - "eutc" - ] + denom: 'eut', + exponent: 6, + aliases: ['eutc'] } ], - "base": "ueur", - "display": "eut", - "name": "TerraClassicEUR", - "symbol": "EUTC", - "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" + base: 'ueur', + display: 'eut', + name: 'TerraClassicEUR', + symbol: 'EUTC', + 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' } }, { - "description": "The GBP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The GBP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ugbp", - "exponent": 0, - "aliases": [ - "microgbp" - ] + denom: 'ugbp', + exponent: 0, + aliases: ['microgbp'] }, { - "denom": "mgbp", - "exponent": 3, - "aliases": [ - "milligbp" - ] + denom: 'mgbp', + exponent: 3, + aliases: ['milligbp'] }, { - "denom": "gbt", - "exponent": 6, - "aliases": [ - "gbtc" - ] + denom: 'gbt', + exponent: 6, + aliases: ['gbtc'] } ], - "base": "ugbp", - "display": "gbt", - "name": "TerraClassicGBP", - "symbol": "GBTC", - "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" + base: 'ugbp', + display: 'gbt', + name: 'TerraClassicGBP', + symbol: 'GBTC', + 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' } }, { - "description": "The HKD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The HKD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uhkd", - "exponent": 0, - "aliases": [ - "microhkd" - ] + denom: 'uhkd', + exponent: 0, + aliases: ['microhkd'] }, { - "denom": "mhkd", - "exponent": 3, - "aliases": [ - "millihkd" - ] + denom: 'mhkd', + exponent: 3, + aliases: ['millihkd'] }, { - "denom": "hkt", - "exponent": 6, - "aliases": [ - "hktc" - ] + denom: 'hkt', + exponent: 6, + aliases: ['hktc'] } ], - "base": "uhkd", - "display": "hkt", - "name": "TerraClassicHKD", - "symbol": "HKTC", - "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" + base: 'uhkd', + display: 'hkt', + name: 'TerraClassicHKD', + symbol: 'HKTC', + 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' } }, { - "description": "The IDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The IDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uidr", - "exponent": 0, - "aliases": [ - "microidr" - ] + denom: 'uidr', + exponent: 0, + aliases: ['microidr'] }, { - "denom": "midr", - "exponent": 3, - "aliases": [ - "milliidr" - ] + denom: 'midr', + exponent: 3, + aliases: ['milliidr'] }, { - "denom": "idt", - "exponent": 6, - "aliases": [ - "idtc" - ] + denom: 'idt', + exponent: 6, + aliases: ['idtc'] } ], - "base": "uidr", - "display": "idt", - "name": "TerraClassicIDR", - "symbol": "IDTC", - "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" + base: 'uidr', + display: 'idt', + name: 'TerraClassicIDR', + symbol: 'IDTC', + 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' } }, { - "description": "The INR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The INR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uinr", - "exponent": 0, - "aliases": [ - "microinr" - ] + denom: 'uinr', + exponent: 0, + aliases: ['microinr'] }, { - "denom": "minr", - "exponent": 3, - "aliases": [ - "milliinr" - ] + denom: 'minr', + exponent: 3, + aliases: ['milliinr'] }, { - "denom": "int", - "exponent": 6, - "aliases": [ - "intc" - ] + denom: 'int', + exponent: 6, + aliases: ['intc'] } ], - "base": "uinr", - "display": "int", - "name": "TerraClassicINR", - "symbol": "INTC", - "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" + base: 'uinr', + display: 'int', + name: 'TerraClassicINR', + symbol: 'INTC', + 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' } }, { - "description": "The JPY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The JPY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ujpy", - "exponent": 0, - "aliases": [ - "microjpy" - ] + denom: 'ujpy', + exponent: 0, + aliases: ['microjpy'] }, { - "denom": "mjpy", - "exponent": 3, - "aliases": [ - "millijpy" - ] + denom: 'mjpy', + exponent: 3, + aliases: ['millijpy'] }, { - "denom": "jpt", - "exponent": 6, - "aliases": [ - "jptc" - ] + denom: 'jpt', + exponent: 6, + aliases: ['jptc'] } ], - "base": "ujpy", - "display": "jpt", - "name": "TerraClassicJPY", - "symbol": "JPTC", - "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" + base: 'ujpy', + display: 'jpt', + name: 'TerraClassicJPY', + symbol: 'JPTC', + 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' } }, { - "description": "The MNT stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MNT stablecoin of Terra Classic.', + denom_units: [ { - "denom": "umnt", - "exponent": 0, - "aliases": [ - "micromnt" - ] + denom: 'umnt', + exponent: 0, + aliases: ['micromnt'] }, { - "denom": "mmnt", - "exponent": 3, - "aliases": [ - "millimnt" - ] + denom: 'mmnt', + exponent: 3, + aliases: ['millimnt'] }, { - "denom": "mnt", - "exponent": 6, - "aliases": [ - "mntc" - ] + denom: 'mnt', + exponent: 6, + aliases: ['mntc'] } ], - "base": "umnt", - "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" + base: 'umnt', + 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' } }, { - "description": "The MYR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MYR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "umyr", - "exponent": 0, - "aliases": [ - "micromyr" - ] + denom: 'umyr', + exponent: 0, + aliases: ['micromyr'] }, { - "denom": "mmyr", - "exponent": 3, - "aliases": [ - "millimyr" - ] + denom: 'mmyr', + exponent: 3, + aliases: ['millimyr'] }, { - "denom": "myt", - "exponent": 6, - "aliases": [ - "mytc" - ] + denom: 'myt', + exponent: 6, + aliases: ['mytc'] } ], - "base": "umyr", - "display": "myt", - "name": "TerraClassicMYR", - "symbol": "MYTC", - "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" + base: 'umyr', + display: 'myt', + name: 'TerraClassicMYR', + symbol: 'MYTC', + 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' } }, { - "description": "The NOK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The NOK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "unok", - "exponent": 0, - "aliases": [ - "micronok" - ] + denom: 'unok', + exponent: 0, + aliases: ['micronok'] }, { - "denom": "mnok", - "exponent": 3, - "aliases": [ - "millinok" - ] + denom: 'mnok', + exponent: 3, + aliases: ['millinok'] }, { - "denom": "not", - "exponent": 6, - "aliases": [ - "notc" - ] + denom: 'not', + exponent: 6, + aliases: ['notc'] } ], - "base": "unok", - "display": "not", - "name": "TerraClassicNOK", - "symbol": "NOTC", - "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" + base: 'unok', + display: 'not', + name: 'TerraClassicNOK', + symbol: 'NOTC', + 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' } }, { - "description": "The PHP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The PHP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uphp", - "exponent": 0, - "aliases": [ - "microphp" - ] + denom: 'uphp', + exponent: 0, + aliases: ['microphp'] }, { - "denom": "mphp", - "exponent": 3, - "aliases": [ - "milliphp" - ] + denom: 'mphp', + exponent: 3, + aliases: ['milliphp'] }, { - "denom": "pht", - "exponent": 6, - "aliases": [ - "phtc" - ] + denom: 'pht', + exponent: 6, + aliases: ['phtc'] } ], - "base": "uphp", - "display": "pht", - "name": "TerraClassicPHP", - "symbol": "PHTC", - "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" + base: 'uphp', + display: 'pht', + name: 'TerraClassicPHP', + symbol: 'PHTC', + 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' } }, { - "description": "The SDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "usdr", - "exponent": 0, - "aliases": [ - "microsdr" - ] + denom: 'usdr', + exponent: 0, + aliases: ['microsdr'] }, { - "denom": "msdr", - "exponent": 3, - "aliases": [ - "millisdr" - ] + denom: 'msdr', + exponent: 3, + aliases: ['millisdr'] }, { - "denom": "sdt", - "exponent": 6, - "aliases": [ - "sdtc" - ] + denom: 'sdt', + exponent: 6, + aliases: ['sdtc'] } ], - "base": "usdr", - "display": "sdt", - "name": "TerraClassicSDR", - "symbol": "SDTC", - "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" + base: 'usdr', + display: 'sdt', + name: 'TerraClassicSDR', + symbol: 'SDTC', + 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' } }, { - "description": "The SEK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SEK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "usek", - "exponent": 0, - "aliases": [ - "microsek" - ] + denom: 'usek', + exponent: 0, + aliases: ['microsek'] }, { - "denom": "msek", - "exponent": 3, - "aliases": [ - "millisek" - ] + denom: 'msek', + exponent: 3, + aliases: ['millisek'] }, { - "denom": "set", - "exponent": 6, - "aliases": [ - "setc" - ] + denom: 'set', + exponent: 6, + aliases: ['setc'] } ], - "base": "usek", - "display": "set", - "name": "TerraClassicSEK", - "symbol": "SETC", - "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" + base: 'usek', + display: 'set', + name: 'TerraClassicSEK', + symbol: 'SETC', + 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' } }, { - "description": "The SGD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SGD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "usgd", - "exponent": 0, - "aliases": [ - "microsgd" - ] + denom: 'usgd', + exponent: 0, + aliases: ['microsgd'] }, { - "denom": "msgd", - "exponent": 3, - "aliases": [ - "millisgd" - ] + denom: 'msgd', + exponent: 3, + aliases: ['millisgd'] }, { - "denom": "sgt", - "exponent": 6, - "aliases": [ - "sgtc" - ] + denom: 'sgt', + exponent: 6, + aliases: ['sgtc'] } ], - "base": "usgd", - "display": "sgt", - "name": "TerraClassicSGD", - "symbol": "SGTC", - "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" + base: 'usgd', + display: 'sgt', + name: 'TerraClassicSGD', + symbol: 'SGTC', + 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' } }, { - "description": "The THB stablecoin of Terra Classic.", - "denom_units": [ + description: 'The THB stablecoin of Terra Classic.', + denom_units: [ { - "denom": "uthb", - "exponent": 0, - "aliases": [ - "microthb" - ] + denom: 'uthb', + exponent: 0, + aliases: ['microthb'] }, { - "denom": "mthb", - "exponent": 3, - "aliases": [ - "millithb" - ] + denom: 'mthb', + exponent: 3, + aliases: ['millithb'] }, { - "denom": "tht", - "exponent": 6, - "aliases": [ - "thtc" - ] + denom: 'tht', + exponent: 6, + aliases: ['thtc'] } ], - "base": "uthb", - "display": "tht", - "name": "TerraClassicTHB", - "symbol": "THTC", - "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" + base: 'uthb', + display: 'tht', + name: 'TerraClassicTHB', + symbol: 'THTC', + 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' } }, { - "description": "The TWD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The TWD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "utwd", - "exponent": 0, - "aliases": [ - "microtwd" - ] + denom: 'utwd', + exponent: 0, + aliases: ['microtwd'] }, { - "denom": "mtwd", - "exponent": 3, - "aliases": [ - "millitwd" - ] + denom: 'mtwd', + exponent: 3, + aliases: ['millitwd'] }, { - "denom": "twt", - "exponent": 6, - "aliases": [ - "twtc" - ] + denom: 'twt', + exponent: 6, + aliases: ['twtc'] } ], - "base": "utwd", - "display": "twt", - "name": "TerraClassicTWD", - "symbol": "TWTC", - "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" + base: 'utwd', + display: 'twt', + name: 'TerraClassicTWD', + symbol: 'TWTC', + 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' } }, { - "denom_units": [ + denom_units: [ { - "denom": "cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn", - "exponent": 0 + denom: 'cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn', + exponent: 0 }, { - "denom": "neb", - "exponent": 6 + denom: 'neb', + exponent: 6 } ], - "type_asset": "cw20", - "address": "terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn", - "base": "cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn", - "name": "Nebula Token", - "display": "neb", - "symbol": "NEB", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png" + type_asset: 'cw20', + address: 'terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn', + base: 'cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn', + name: 'Nebula Token', + display: 'neb', + symbol: 'NEB', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/neb.png' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "terra2", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'terra2', + assets: [ { - "description": "The native staking token of Terra.", - "denom_units": [ + description: 'The native staking token of Terra.', + denom_units: [ { - "denom": "uluna", - "exponent": 0 + denom: 'uluna', + exponent: 0 }, { - "denom": "luna", - "exponent": 6 + denom: 'luna', + exponent: 6 } ], - "base": "uluna", - "name": "Luna", - "display": "luna", - "symbol": "LUNA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png" + base: 'uluna', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png' }, - "coingecko_id": "terra-luna-2" + coingecko_id: 'terra-luna-2' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_id": "stateset-1-testnet", - "assets": [ + $schema: '../assetlist.schema.json', + chain_id: 'stateset-1-testnet', + assets: [ { - "description": "The native token of the Stateset Network", - "denom_units": [ + description: 'The native token of the Stateset Network', + denom_units: [ { - "denom": "ustate", - "exponent": 0, - "aliases": [] + denom: 'ustate', + exponent: 0, + aliases: [] }, { - "denom": "state", - "exponent": 6, - "aliases": [] + denom: 'state', + exponent: 6, + aliases: [] } ], - "base": "ustate", - "name": "Stateset", - "display": "state", - "symbol": "STATE", - "logo_URIs": { - "jpeg": "https://app.stateset.zone/stateset.jpeg" + base: 'ustate', + name: 'Stateset', + display: 'state', + symbol: 'STATE', + logo_URIs: { + jpeg: 'https://app.stateset.zone/stateset.jpeg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_id": "theta-testnet-001", - "assets": [ + $schema: '../assetlist.schema.json', + chain_id: 'theta-testnet-001', + assets: [ { - "description": "The native staking and governance token of the Theta testnet version of the Cosmos Hub.", - "denom_units": [ + description: + 'The native staking and governance token of the Theta testnet version of the Cosmos Hub.', + denom_units: [ { - "denom": "uatom", - "exponent": 0 + denom: 'uatom', + exponent: 0 }, { - "denom": "atom", - "exponent": 6 + denom: 'atom', + exponent: 6 } ], - "base": "uatom", - "name": "Cosmos", - "display": "atom", - "symbol": "ATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/atom.png", - "svg": "https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/atom.svg" + base: 'uatom', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/atom.png', + svg: + 'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/atom.svg' } } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "ULAS", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'ULAS', + assets: [ { - "description": "WEB3 twitter", - "denom_units": [ + description: 'WEB3 twitter', + denom_units: [ { - "denom": "uulas", - "exponent": 0 + denom: 'uulas', + exponent: 0 }, { - "denom": "ulas", - "exponent": 6 + denom: 'ulas', + exponent: 6 } ], - "base": "uulas", - "name": "ULAS Network", - "display": "ULAS", - "symbol": "ULAS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulas/images/logo.png" + base: 'uulas', + name: 'ULAS Network', + display: 'ULAS', + symbol: 'ULAS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/ulas/images/logo.png' }, - "coingecko_id": "ulas" + coingecko_id: 'ulas' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "tgrade", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'tgrade', + assets: [ { - "description": "The native token of Tgrade", - "denom_units": [ + description: 'The native token of Tgrade', + denom_units: [ { - "denom": "utgd", - "exponent": 0, - "aliases": [] + denom: 'utgd', + exponent: 0, + aliases: [] }, { - "denom": "tgd", - "exponent": 6, - "aliases": [] + denom: 'tgd', + exponent: 6, + aliases: [] } ], - "base": "utgd", - "name": "Tgrade", - "display": "tgd", - "symbol": "TGD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" + base: 'utgd', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' }, - "coingecko_id": "tgrade" + coingecko_id: 'tgrade' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "umee", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'umee', + assets: [ { - "description": "The native token of Umee", - "denom_units": [ + description: 'The native token of Umee', + denom_units: [ { - "denom": "uumee", - "exponent": 0 + denom: 'uumee', + exponent: 0 }, { - "denom": "umee", - "exponent": 6 + denom: 'umee', + exponent: 6 } ], - "base": "uumee", - "name": "Umee", - "display": "umee", - "symbol": "UMEE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" + base: 'uumee', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png' }, - "coingecko_id": "umee" + coingecko_id: 'umee' } ] }, { - "$schema": "../assetlist.schema.json", - "chain_name": "vidulum", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'vidulum', + assets: [ { - "description": "The native token of Vidulum", - "denom_units": [ + description: 'The native token of Vidulum', + denom_units: [ { - "denom": "uvdl", - "exponent": 0, - "aliases": [] + denom: 'uvdl', + exponent: 0, + aliases: [] }, { - "denom": "vdl", - "exponent": 6, - "aliases": [] + denom: 'vdl', + exponent: 6, + aliases: [] } ], - "base": "uvdl", - "name": "Vidulum", - "display": "vdl", - "symbol": "VDL", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png" + base: 'uvdl', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png' }, - "coingecko_id": "vidulum" + coingecko_id: 'vidulum' } ] } ]; export default assets; - \ No newline at end of file diff --git a/packages/chain-registry/src/chains.ts b/packages/chain-registry/src/chains.ts index 8616ead19..7c930ba26 100644 --- a/packages/chain-registry/src/chains.ts +++ b/packages/chain-registry/src/chains.ts @@ -1,9946 +1,9890 @@ import { Chain } from '@chain-registry/types'; const chains: Chain[] = [ { - "$schema": "../chain.schema.json", - "chain_name": "agoric", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Agoric", - "chain_id": "agoric-3", - "bech32_prefix": "agoric", - "daemon_name": "ag0", - "node_home": "$HOME/.agoric", - "genesis": { - "genesis_url": "https://main.agoric.net/genesis.json" - }, - "slip44": 564, - "explorers": [ - { - "kind": "explorers.guru", - "url": "https://agoric.explorers.guru/", - "tx_page": "https://agoric.explorers.guru/transaction/{txHash}" + $schema: '../chain.schema.json', + chain_name: 'agoric', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Agoric', + chain_id: 'agoric-3', + bech32_prefix: 'agoric', + daemon_name: 'ag0', + node_home: '$HOME/.agoric', + genesis: { + genesis_url: 'https://main.agoric.net/genesis.json' + }, + slip44: 564, + explorers: [ + { + kind: 'explorers.guru', + url: 'https://agoric.explorers.guru/', + tx_page: 'https://agoric.explorers.guru/transaction/{txHash}' } ], - "codebase": { - "git_repo": "https://github.com/Agoric/ag0/", - "recommended_version": "agoric-3.1", - "compatible_versions": [ - "agoric-3.1" - ] + codebase: { + git_repo: 'https://github.com/Agoric/ag0/', + recommended_version: 'agoric-3.1', + compatible_versions: ['agoric-3.1'] }, - "peers": { - "seeds": [], - "persistent_peers": [ + peers: { + seeds: [], + persistent_peers: [ { - "id": "a26158a5cbb1df581dd6843ac427191af76d6d5d", - "address": "104.154.240.50:26656" + id: 'a26158a5cbb1df581dd6843ac427191af76d6d5d', + address: '104.154.240.50:26656' }, { - "id": "6e26a1b4afa6889f841d7957e8c2b5d50d32d485", - "address": "95.216.53.26:26656" + id: '6e26a1b4afa6889f841d7957e8c2b5d50d32d485', + address: '95.216.53.26:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://main.rpc.agoric.net:443" + address: 'https://main.rpc.agoric.net:443' }, { - "address": "https://agoric-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://agoric-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.agoric.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.agoric.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://main.api.agoric.net:443" + address: 'https://main.api.agoric.net:443' }, { - "address": "https://api.agoric.nodestake.top", - "provider": "NodeStake" + address: 'https://api.agoric.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.agoric.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.agoric.nodestake.top', + provider: 'NodeStake' } ] } }, { - "$schema": "../chain.schema.json", - "chain_name": "aioz", - "status": "live", - "network_type": "mainnet", - "pretty_name": "AIOZ Network", - "chain_id": "aioz_168-1", - "bech32_prefix": "aioz", - "daemon_name": "aiozd", - "node_home": "$HOME/.aioz", - "genesis": { - "genesis_url": "https://archive.aioz.network/aioz_168-1/genesis.json" - }, - "key_algos": [ - "ethsecp256k1" - ], - "slip44": 60, - "fees": { - "fee_tokens": [ - { - "denom": "attoaioz", - "fixed_min_gas_price": 1000000000 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/AIOZNetwork/go-aioz", - "recommended_version": "v1.2.0", - "compatible_versions": [ - "v1.2.0" - ], - "binaries": { - "linux/amd64": "https://archive.aioz.network/aiozd-v1.2.0-linux-amd64.tar.gz", - "darwin/amd64": "https://archive.aioz.network/aiozd-v1.2.0-darwin-amd64.tar.gz", - "windows/amd64": "https://archive.aioz.network/aiozd-v1.2.0-windows-amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'aioz', + status: 'live', + network_type: 'mainnet', + pretty_name: 'AIOZ Network', + chain_id: 'aioz_168-1', + bech32_prefix: 'aioz', + daemon_name: 'aiozd', + node_home: '$HOME/.aioz', + genesis: { + genesis_url: 'https://archive.aioz.network/aioz_168-1/genesis.json' + }, + key_algos: ['ethsecp256k1'], + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'attoaioz', + fixed_min_gas_price: 1000000000 + } + ] + }, + codebase: { + git_repo: 'https://github.com/AIOZNetwork/go-aioz', + recommended_version: 'v1.2.0', + compatible_versions: ['v1.2.0'], + binaries: { + 'linux/amd64': + 'https://archive.aioz.network/aiozd-v1.2.0-linux-amd64.tar.gz', + 'darwin/amd64': + 'https://archive.aioz.network/aiozd-v1.2.0-darwin-amd64.tar.gz', + 'windows/amd64': + 'https://archive.aioz.network/aiozd-v1.2.0-windows-amd64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "aab202d5648772a8b5be3db575a8a7dd577db78f", - "address": "167.172.6.76:26656" + id: 'aab202d5648772a8b5be3db575a8a7dd577db78f', + address: '167.172.6.76:26656' }, { - "id": "ef834ca8044d345db334fbf6a6bfe7230f429739", - "address": "35.236.45.174:26656" + id: 'ef834ca8044d345db334fbf6a6bfe7230f429739', + address: '35.236.45.174:26656' }, { - "id": "b13a849f59ff3e0558d248c3e9eb9bf4a360bb77", - "address": "20.187.94.254:26656" + id: 'b13a849f59ff3e0558d248c3e9eb9bf4a360bb77', + address: '20.187.94.254:26656' }, { - "id": "849e6023440355412bc9a9d5bc0731143e7d657a", - "address": "13.53.208.41:26656" + id: '849e6023440355412bc9a9d5bc0731143e7d657a', + address: '13.53.208.41:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "aab202d5648772a8b5be3db575a8a7dd577db78f", - "address": "167.172.6.76:26656" + id: 'aab202d5648772a8b5be3db575a8a7dd577db78f', + address: '167.172.6.76:26656' }, { - "id": "ef834ca8044d345db334fbf6a6bfe7230f429739", - "address": "35.236.45.174:26656" + id: 'ef834ca8044d345db334fbf6a6bfe7230f429739', + address: '35.236.45.174:26656' }, { - "id": "b13a849f59ff3e0558d248c3e9eb9bf4a360bb77", - "address": "20.187.94.254:26656" + id: 'b13a849f59ff3e0558d248c3e9eb9bf4a360bb77', + address: '20.187.94.254:26656' }, { - "id": "849e6023440355412bc9a9d5bc0731143e7d657a", - "address": "13.53.208.41:26656" + id: '849e6023440355412bc9a9d5bc0731143e7d657a', + address: '13.53.208.41:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-dataseed.aioz.network:443", - "provider": "AIOZ Network" + address: 'https://rpc-dataseed.aioz.network:443', + provider: 'AIOZ Network' } ], - "rest": [ + rest: [ { - "address": "https://lcd-dataseed.aioz.network", - "provider": "AIOZ Network" + address: 'https://lcd-dataseed.aioz.network', + provider: 'AIOZ Network' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc-dataseed.aioz.network:443", - "provider": "AIOZ Network" + address: 'https://grpc-dataseed.aioz.network:443', + provider: 'AIOZ Network' } ], - "evm-jsonrpc": [ + 'evm-jsonrpc': [ { - "address": "https://eth-dataseed.aioz.network", - "provider": "AIOZ Network" + address: 'https://eth-dataseed.aioz.network', + provider: 'AIOZ Network' } ] }, - "explorers": [ + explorers: [ { - "kind": "aioz", - "url": "https://explorer.aioz.network", - "tx_page": "https://explorer.aioz.network/tx/${txHash}" + kind: 'aioz', + url: 'https://explorer.aioz.network', + tx_page: 'https://explorer.aioz.network/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "akash", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Akash", - "chain_id": "akashnet-2", - "bech32_prefix": "akash", - "daemon_name": "akash", - "node_home": "$HOME/.akash", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ovrclk/net/master/mainnet/genesis.json" - }, - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/ovrclk/akash/", - "recommended_version": "v0.16.3", - "compatible_versions": [ - "v0.16.3" - ], - "binaries": { - "linux/amd64": "https://github.com/ovrclk/akash/releases/download/v0.16.3/akash_0.16.3_linux_amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'akash', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Akash', + chain_id: 'akashnet-2', + bech32_prefix: 'akash', + daemon_name: 'akash', + node_home: '$HOME/.akash', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ovrclk/net/master/mainnet/genesis.json' + }, + slip44: 118, + codebase: { + git_repo: 'https://github.com/ovrclk/akash/', + recommended_version: 'v0.16.3', + compatible_versions: ['v0.16.3'], + binaries: { + 'linux/amd64': + 'https://github.com/ovrclk/akash/releases/download/v0.16.3/akash_0.16.3_linux_amd64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "4acf579e2744268f834c713e894850995bbf0ffa", - "address": "50.18.31.225:26656" + id: '4acf579e2744268f834c713e894850995bbf0ffa', + address: '50.18.31.225:26656' }, { - "id": "3691ac1f56389ffec8579c13a6eb8eca41cf8ae3", - "address": "54.219.88.246:26656" + id: '3691ac1f56389ffec8579c13a6eb8eca41cf8ae3', + address: '54.219.88.246:26656' }, { - "id": "86afe23f116ba4754a19819a55d153008eb74b48", - "address": "15.164.87.75:26656" + id: '86afe23f116ba4754a19819a55d153008eb74b48', + address: '15.164.87.75:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "4acf579e2744268f834c713e894850995bbf0ffa", - "address": "50.18.31.225:26656" + id: '4acf579e2744268f834c713e894850995bbf0ffa', + address: '50.18.31.225:26656' }, { - "id": "3691ac1f56389ffec8579c13a6eb8eca41cf8ae3", - "address": "54.219.88.246:26656" + id: '3691ac1f56389ffec8579c13a6eb8eca41cf8ae3', + address: '54.219.88.246:26656' }, { - "id": "86afe23f116ba4754a19819a55d153008eb74b48", - "address": "15.164.87.75:26656" + id: '86afe23f116ba4754a19819a55d153008eb74b48', + address: '15.164.87.75:26656' }, { - "id": "43544bc781b88d6785420427926d86a5332940b3", - "address": "142.132.131.184:26656" + id: '43544bc781b88d6785420427926d86a5332940b3', + address: '142.132.131.184:26656' }, { - "id": "30b8008d4ea5069a8724a0aa73833493efa88e67", - "address": "65.108.140.62:26656" + id: '30b8008d4ea5069a8724a0aa73833493efa88e67', + address: '65.108.140.62:26656' }, { - "id": "2b19780ea3de3553f03847a397ac2dfda1d2e89e", - "address": "65.108.6.185:26656" + id: '2b19780ea3de3553f03847a397ac2dfda1d2e89e', + address: '65.108.6.185:26656' }, { - "id": "be3a538cebb28e7224db10920bb7fe32456e1aad", - "address": "116.202.244.153:26656" + id: 'be3a538cebb28e7224db10920bb7fe32456e1aad', + address: '116.202.244.153:26656' }, { - "id": "d2643edd1b3dce6615bc9925e20122c44d2ff763", - "address": "172.106.17.158:26656" + id: 'd2643edd1b3dce6615bc9925e20122c44d2ff763', + address: '172.106.17.158:26656' }, { - "id": "08fd59378ec5845a667f8608bd228f9251aec035", - "address": "3.64.67.110:27002" + id: '08fd59378ec5845a667f8608bd228f9251aec035', + address: '3.64.67.110:27002' }, { - "id": "6acf80cdbfba5ffbee23bd9e5b3ecac3234f3420", - "address": "147.75.32.107:26656" + id: '6acf80cdbfba5ffbee23bd9e5b3ecac3234f3420', + address: '147.75.32.107:26656' }, { - "id": "20180c45451739668f6e272e007818139dba31e7", - "address": "88.198.62.198:2020" + id: '20180c45451739668f6e272e007818139dba31e7', + address: '88.198.62.198:2020' }, { - "id": "89b5c363babe7c4983c3ef06c3c9ed1e39ec4246", - "address": "51.79.176.202:56656" + id: '89b5c363babe7c4983c3ef06c3c9ed1e39ec4246', + address: '51.79.176.202:56656' }, { - "id": "1c03b13f5f24f59ecc3cfe5d5fc36dabee3a5d78", - "address": "144.202.77.146:26656" + id: '1c03b13f5f24f59ecc3cfe5d5fc36dabee3a5d78', + address: '144.202.77.146:26656' }, { - "id": "070b3c936e2995bc269a2981702b87de05411baa", - "address": "148.251.13.186:28656" + id: '070b3c936e2995bc269a2981702b87de05411baa', + address: '148.251.13.186:28656' }, { - "id": "05c30fd95b888ca8df8171ce65a06f1de683d6e3", - "address": "84.252.129.17:26656" + id: '05c30fd95b888ca8df8171ce65a06f1de683d6e3', + address: '84.252.129.17:26656' }, { - "id": "b618556645ddac41dc871f7a0f6aa68feb0cc2a7", - "address": "38.75.137.161:26656" + id: 'b618556645ddac41dc871f7a0f6aa68feb0cc2a7', + address: '38.75.137.161:26656' }, { - "id": "97edd562862a905f087ccb02a39e6f660939e314", - "address": "216.202.234.76:26656" + id: '97edd562862a905f087ccb02a39e6f660939e314', + address: '216.202.234.76:26656' }, { - "id": "06788f62811879e1d0774c4e9152543e17fe8576", - "address": "145.40.65.227:26656" + id: '06788f62811879e1d0774c4e9152543e17fe8576', + address: '145.40.65.227:26656' }, { - "id": "2ecb6e24df48ee037234222c67ef963daa58bcfc", - "address": "65.108.102.99:29656" + id: '2ecb6e24df48ee037234222c67ef963daa58bcfc', + address: '65.108.102.99:29656' }, { - "id": "4e95c8f651de136b48c324ea9a687739a945f452", - "address": "185.107.95.88:26656" + id: '4e95c8f651de136b48c324ea9a687739a945f452', + address: '185.107.95.88:26656' }, { - "id": "1bfbbf77beeb2c1ace50443478035a255a7e510f", - "address": "136.24.44.100:26656" + id: '1bfbbf77beeb2c1ace50443478035a255a7e510f', + address: '136.24.44.100:26656' }, { - "id": "ce137ea95720b2d4e196920d12170d1a6aebcf69", - "address": "35.215.43.253:26656" + id: 'ce137ea95720b2d4e196920d12170d1a6aebcf69', + address: '35.215.43.253:26656' }, { - "id": "fb42bcf141eecc7a8a66fcfbf7d2573b3b8d00e6", - "address": "75.119.133.59:26656" + id: 'fb42bcf141eecc7a8a66fcfbf7d2573b3b8d00e6', + address: '75.119.133.59:26656' }, { - "id": "c6e0e5460aefcf3c5d5d26dee1ef1e99e5ed90b8", - "address": "198.57.27.14:26656" + id: 'c6e0e5460aefcf3c5d5d26dee1ef1e99e5ed90b8', + address: '198.57.27.14:26656' }, { - "id": "2640152c6359b03a3a4559b12110e96fcb95cd68", - "address": "74.91.27.138:26656" + id: '2640152c6359b03a3a4559b12110e96fcb95cd68', + address: '74.91.27.138:26656' }, { - "id": "aa01698ec0d8bb96398e89b57ecb08bcca50fa21", - "address": "65.21.199.148:26636" + id: 'aa01698ec0d8bb96398e89b57ecb08bcca50fa21', + address: '65.21.199.148:26636' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.akash.forbole.com:443", - "provider": "forbole" + address: 'https://rpc.akash.forbole.com:443', + provider: 'forbole' }, { - "address": "https://rpc-akash.ecostake.com:443", - "provider": "ecostake" + address: 'https://rpc-akash.ecostake.com:443', + provider: 'ecostake' }, { - "address": "https://akash-rpc.polkachu.com:443", - "provider": "Polkachu" + address: 'https://akash-rpc.polkachu.com:443', + provider: 'Polkachu' }, { - "address": "https://rpc-akash-ia.notional.ventures:443", - "provider": "Notional" + address: 'https://rpc-akash-ia.notional.ventures:443', + provider: 'Notional' }, { - "address": "http://akash.c29r3.xyz:80/rpc", - "provider": "c29r3" + address: 'http://akash.c29r3.xyz:80/rpc', + provider: 'c29r3' } ], - "rest": [ + rest: [ { - "address": "https://api.akash.forbole.com:443", - "provider": "forbole" + address: 'https://api.akash.forbole.com:443', + provider: 'forbole' }, { - "address": "https://rest-akash.ecostake.com", - "provider": "ecostake" + address: 'https://rest-akash.ecostake.com', + provider: 'ecostake' }, { - "address": "https://akash-api.polkachu.com:443", - "provider": "Polkachu" + address: 'https://akash-api.polkachu.com:443', + provider: 'Polkachu' }, { - "address": "https://api-akash-ia.notional.ventures", - "provider": "Notional" + address: 'https://api-akash-ia.notional.ventures', + provider: 'Notional' }, { - "address": "https://akash.c29r3.xyz:443/api", - "provider": "c29r3" + address: 'https://akash.c29r3.xyz:443/api', + provider: 'c29r3' } ], - "grpc": [ + grpc: [ { - "address": "grpc-akash-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-akash-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/akash", - "tx_page": "https://www.mintscan.io/akash/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/akash', + tx_page: 'https://www.mintscan.io/akash/txs/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/akash-network", - "tx_page": "https://ping.pub/akash-network/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/akash-network', + tx_page: 'https://ping.pub/akash-network/tx/${txHash}' }, { - "kind": "bigdipper", - "url": "https://akash.bigdipper.live/", - "tx_page": "https://akash.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://akash.bigdipper.live/', + tx_page: 'https://akash.bigdipper.live/transactions/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/akash", - "tx_page": "https://atomscan.com/akash/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/akash', + tx_page: 'https://atomscan.com/akash/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "arkh", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Arkhadian", - "chain_id": "arkh", - "bech32_prefix": "arkh", - "daemon_name": "arkhd", - "node_home": "$HOME/.arkhd", - "genesis": { - "genesis_url": "https://github.com/vincadian/arkh-blockchain/blob/master/genesis/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uarkh", - "fixed_min_gas_price": 1e-9 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/vincadian/arkh-blockchain", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/vincadian/arkh-blockchain/releases/download/latest/arkh-blockchain_latest_linux_amd64.tar.gz", - "darwin/amd64": "https://github.com/vincadian/arkh-blockchain/releases/download/latest/arkh-blockchain_latest_darwin_amd64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'arkh', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Arkhadian', + chain_id: 'arkh', + bech32_prefix: 'arkh', + daemon_name: 'arkhd', + node_home: '$HOME/.arkhd', + genesis: { + genesis_url: + 'https://github.com/vincadian/arkh-blockchain/blob/master/genesis/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uarkh', + fixed_min_gas_price: 1e-9 + } + ] + }, + codebase: { + git_repo: 'https://github.com/vincadian/arkh-blockchain', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/vincadian/arkh-blockchain/releases/download/latest/arkh-blockchain_latest_linux_amd64.tar.gz', + 'darwin/amd64': + 'https://github.com/vincadian/arkh-blockchain/releases/download/latest/arkh-blockchain_latest_darwin_amd64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "808f01d4a7507bf7478027a08d95c575e1b5fa3c", - "address": "asc-dataseed.arkhadian.com:26656" + id: '808f01d4a7507bf7478027a08d95c575e1b5fa3c', + address: 'asc-dataseed.arkhadian.com:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://asc-dataseed.arkhadian.com/", - "provider": "arkhnetwork" + address: 'https://asc-dataseed.arkhadian.com/', + provider: 'arkhnetwork' } ], - "rest": [ + rest: [ { - "address": "https://asc-blockchain-api.arkhadian.com/", - "provider": "arkhnetwork" + address: 'https://asc-blockchain-api.arkhadian.com/', + provider: 'arkhnetwork' } ] }, - "explorers": [ + explorers: [ { - "kind": "Ping", - "url": "https://testnet.ping.pub/arkh", - "tx_page": "https://testnet.ping.pub/arkh/tx/${txHash}" + kind: 'Ping', + url: 'https://testnet.ping.pub/arkh', + tx_page: 'https://testnet.ping.pub/arkh/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "assetmantle", - "status": "live", - "network_type": "mainnet", - "pretty_name": "AssetMantle", - "chain_id": "mantle-1", - "bech32_prefix": "mantle", - "daemon_name": "mantleNode", - "node_home": "$HOME/.mantleNode", - "genesis": { - "genesis_url": "https://github.com/AssetMantle/genesisTransactions/blob/main/mantle-1/final_genesis.json?raw=true" + $schema: '../chain.schema.json', + chain_name: 'assetmantle', + status: 'live', + network_type: 'mainnet', + pretty_name: 'AssetMantle', + chain_id: 'mantle-1', + bech32_prefix: 'mantle', + daemon_name: 'mantleNode', + node_home: '$HOME/.mantleNode', + genesis: { + genesis_url: + 'https://github.com/AssetMantle/genesisTransactions/blob/main/mantle-1/final_genesis.json?raw=true' }, - "codebase": { - "git_repo": "https://github.com/AssetMantle/node.git", - "recommended_version": "v0.3.0", - "compatible_versions": [ - "v0.3.0" - ] + codebase: { + git_repo: 'https://github.com/AssetMantle/node.git', + recommended_version: 'v0.3.0', + compatible_versions: ['v0.3.0'] }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "95a7b7eed1f5cd2894574bf0da4b884243e7d0f3", - "address": "43.204.38.118:26656" + id: '95a7b7eed1f5cd2894574bf0da4b884243e7d0f3', + address: '43.204.38.118:26656' }, { - "id": "0a58c9bbb5d7551eebb8e4ac79bd97f580aaf269", - "address": "65.0.131.189:26656" + id: '0a58c9bbb5d7551eebb8e4ac79bd97f580aaf269', + address: '65.0.131.189:26656' }, { - "id": "800a9f991c0bf2dba8ec9370f41951dab5927b32", - "address": "3.110.89.133:26656" + id: '800a9f991c0bf2dba8ec9370f41951dab5927b32', + address: '3.110.89.133:26656' }, { - "id": "5f72cdfd9adbb20cd880fd0d93943d40c426b5c2", - "address": "35.154.27.208:26656" + id: '5f72cdfd9adbb20cd880fd0d93943d40c426b5c2', + address: '35.154.27.208:26656' }, { - "id": "1048f75cdd92eedbe3935d07ccf662b45aa6c5f7", - "address": "15.206.189.215:26656" + id: '1048f75cdd92eedbe3935d07ccf662b45aa6c5f7', + address: '15.206.189.215:26656' }, { - "id": "a2289be9268ad08db32a59ef8dc243476d5c6f6a", - "address": "3.108.2.18:26656" + id: 'a2289be9268ad08db32a59ef8dc243476d5c6f6a', + address: '3.108.2.18:26656' }, { - "id": "4923caf1572e8925519fcd9eca27cc70c803d7d6", - "address": "3.108.218.178:26656" + id: '4923caf1572e8925519fcd9eca27cc70c803d7d6', + address: '3.108.218.178:26656' }, { - "id": "4c39bda705c8c8993f8a989e1375720352d9573f", - "address": "65.0.45.61:26656" + id: '4c39bda705c8c8993f8a989e1375720352d9573f', + address: '65.0.45.61:26656' }, { - "id": "8392653526200f757190c1f88ffd69726a20055b", - "address": "3.110.74.167:26656" + id: '8392653526200f757190c1f88ffd69726a20055b', + address: '3.110.74.167:26656' }, { - "id": "7da33184073d211e625848ce4ef2ba50cf5eeb36", - "address": "13.234.225.229:26656" + id: '7da33184073d211e625848ce4ef2ba50cf5eeb36', + address: '13.234.225.229:26656' }, { - "id": "880a8fc1a21d2908bd109dab1a2a074ebddec18a", - "address": "65.108.192.170:26656" + id: '880a8fc1a21d2908bd109dab1a2a074ebddec18a', + address: '65.108.192.170:26656' }, { - "id": "88873cf28bc552d39d4cb10523167aa24c3a4e85", - "address": "95.217.118.96:26876" + id: '88873cf28bc552d39d4cb10523167aa24c3a4e85', + address: '95.217.118.96:26876' }, { - "id": "f96b29b7df3fe6a59fc11bde6936d7109e66515b", - "address": "65.21.237.29:26656" + id: 'f96b29b7df3fe6a59fc11bde6936d7109e66515b', + address: '65.21.237.29:26656' }, { - "id": "b5c9a4607fc0494b25b703d08c4601ce44027215", - "address": "162.55.246.236:26656" + id: 'b5c9a4607fc0494b25b703d08c4601ce44027215', + address: '162.55.246.236:26656' }, { - "id": "5d3d2807baa4cd191205749a63cc30aab6a3caa1", - "address": "65.108.7.28:26656" + id: '5d3d2807baa4cd191205749a63cc30aab6a3caa1', + address: '65.108.7.28:26656' }, { - "id": "615e815366defb4c194233ea03c9879f183d49b9", - "address": "65.108.199.26:26656" + id: '615e815366defb4c194233ea03c9879f183d49b9', + address: '65.108.199.26:26656' }, { - "id": "4654c8bed4349e4800238cff1f88e97c1f880080", - "address": "207.244.245.125:26656" + id: '4654c8bed4349e4800238cff1f88e97c1f880080', + address: '207.244.245.125:26656' }, { - "id": "5622cc659818baa12ae9fa7f58bb8c0be23366fe", - "address": "52.8.59.124:26656" + id: '5622cc659818baa12ae9fa7f58bb8c0be23366fe', + address: '52.8.59.124:26656' }, { - "id": "c27d512e10d48e921e4fe88f0221a4e2c80567f1", - "address": "13.56.34.84:26656" + id: 'c27d512e10d48e921e4fe88f0221a4e2c80567f1', + address: '13.56.34.84:26656' }, { - "id": "a7aafd3330e57d3104be5b2820b6ad2d52ac19ec", - "address": "3.39.94.36:26656" + id: 'a7aafd3330e57d3104be5b2820b6ad2d52ac19ec', + address: '3.39.94.36:26656' }, { - "id": "9c97f6143d3fae032af5f155d472bbc52f4d90b3", - "address": "194.34.232.225:26656" + id: '9c97f6143d3fae032af5f155d472bbc52f4d90b3', + address: '194.34.232.225:26656' }, { - "id": "f61e5c1d7897dd445508a873248e57ae553ac258", - "address": "91.230.111.86:26656" + id: 'f61e5c1d7897dd445508a873248e57ae553ac258', + address: '91.230.111.86:26656' }, { - "id": "f073d57107004268a7c0f1e24433401f892eff94", - "address": "sentry-1.asset-mantle.ezstaking.io:26229", - "provider": "EZStaking.io" + id: 'f073d57107004268a7c0f1e24433401f892eff94', + address: 'sentry-1.asset-mantle.ezstaking.io:26229', + provider: 'EZStaking.io' }, { - "id": "68692140af51d0c41163340f6f1222eec914c18f", - "address": "sentry-2.asset-mantle.ezstaking.io:26746", - "provider": "EZStaking.io" + id: '68692140af51d0c41163340f6f1222eec914c18f', + address: 'sentry-2.asset-mantle.ezstaking.io:26746', + provider: 'EZStaking.io' }, { - "id": "01e2e8547bd17890a7af54d236ae19d16cb1b224", - "address": "65.108.201.154:2050" + id: '01e2e8547bd17890a7af54d236ae19d16cb1b224', + address: '65.108.201.154:2050' }, { - "id": "ac4512cf8969a9602b6c046be6fd24b9b3ecc2d7", - "address": "142.132.202.10:26656" + id: 'ac4512cf8969a9602b6c046be6fd24b9b3ecc2d7', + address: '142.132.202.10:26656' }, { - "id": "fd096224f9c918089410ac7ab6d42d21ec87db60", - "address": "65.21.230.230:26656" + id: 'fd096224f9c918089410ac7ab6d42d21ec87db60', + address: '65.21.230.230:26656' }, { - "id": "cc938d4354c61e4f59b9626737c2aa1e448f4d57", - "address": "5.161.80.214:26656" + id: 'cc938d4354c61e4f59b9626737c2aa1e448f4d57', + address: '5.161.80.214:26656' }, { - "id": "cbb1bb6b073e65bb5a9a349e8ac2bb86348b5da1", - "address": "142.132.210.135:26656" + id: 'cbb1bb6b073e65bb5a9a349e8ac2bb86348b5da1', + address: '142.132.210.135:26656' }, { - "id": "ab19fe08d8587df7a0aaec966198425a91de6278", - "address": "159.89.162.214:26656" + id: 'ab19fe08d8587df7a0aaec966198425a91de6278', + address: '159.89.162.214:26656' }, { - "id": "efcdd119e9a0f1ac5718c225e425aa1c0121b020", - "address": "65.20.97.129:26656" + id: 'efcdd119e9a0f1ac5718c225e425aa1c0121b020', + address: '65.20.97.129:26656' }, { - "id": "f33b2125c3b3a7c4838e22a060e38d2cefd66e78", - "address": "65.108.140.109:26656" + id: 'f33b2125c3b3a7c4838e22a060e38d2cefd66e78', + address: '65.108.140.109:26656' }, { - "id": "202c1e6de51f0d89872e62c8b8f998f479f17f12", - "address": "51.195.233.194:26656" + id: '202c1e6de51f0d89872e62c8b8f998f479f17f12', + address: '51.195.233.194:26656' }, { - "id": "f3210561bcfb3252343192c14f8364c14084749a", - "address": "135.125.5.48:26656" + id: 'f3210561bcfb3252343192c14f8364c14084749a', + address: '135.125.5.48:26656' }, { - "id": "60a13d44a8ae4165e83e4c3564b0bf36f5ae2615", - "address": "43.254.41.55:26656" + id: '60a13d44a8ae4165e83e4c3564b0bf36f5ae2615', + address: '43.254.41.55:26656' }, { - "id": "c64d745a479936d0b482c28239effd2e9fe24bf5", - "address": "45.77.144.250:26656" + id: 'c64d745a479936d0b482c28239effd2e9fe24bf5', + address: '45.77.144.250:26656' }, { - "id": "6261de9dac635a8fd8d19a70afc41f845c59db96", - "address": "116.203.35.46:26656" + id: '6261de9dac635a8fd8d19a70afc41f845c59db96', + address: '116.203.35.46:26656' }, { - "id": "af80c95f95301fab1778a722a0d8596ca10006cc", - "address": "136.243.105.182:26656" + id: 'af80c95f95301fab1778a722a0d8596ca10006cc', + address: '136.243.105.182:26656' }, { - "id": "df406a21ac70fbcd7ae06448fe0e7b428385ec6f", - "address": "65.21.195.98:26656" + id: 'df406a21ac70fbcd7ae06448fe0e7b428385ec6f', + address: '65.21.195.98:26656' }, { - "id": "e401ef970f15ed0da7321eb9401ada0729b12c8d", - "address": "157.90.248.195:26656" + id: 'e401ef970f15ed0da7321eb9401ada0729b12c8d', + address: '157.90.248.195:26656' }, { - "id": "e0deea2d5c15e77c9d5934305bb23148ce836709", - "address": "185.252.232.79:26656" + id: 'e0deea2d5c15e77c9d5934305bb23148ce836709', + address: '185.252.232.79:26656' }, { - "id": "bbf9c162fbcfbf3dc2c07a7a4ad19d84570ee290", - "address": "161.97.140.10:26656" + id: 'bbf9c162fbcfbf3dc2c07a7a4ad19d84570ee290', + address: '161.97.140.10:26656' }, { - "id": "f2b185dbf88277878b4989db31ac40a606829429", - "address": "65.108.41.72:26656" + id: 'f2b185dbf88277878b4989db31ac40a606829429', + address: '65.108.41.72:26656' }, { - "id": "8034d1f19724d11be0ad108ac54c63ead4705237", - "address": "3.110.47.238:26656" + id: '8034d1f19724d11be0ad108ac54c63ead4705237', + address: '3.110.47.238:26656' }, { - "id": "1f28c7cd884a76a022038f22923eea8101d3538f", - "address": "168.119.89.31:26656" + id: '1f28c7cd884a76a022038f22923eea8101d3538f', + address: '168.119.89.31:26656' }, { - "id": "d0dc9234db7b9e5bb853afbd96055c46990aa55f", - "address": "65.21.131.144:29656" + id: 'd0dc9234db7b9e5bb853afbd96055c46990aa55f', + address: '65.21.131.144:29656' }, { - "id": "7eeb595f1205c2c7230b3812badb1844185b3727", - "address": "65.108.99.224:46656" + id: '7eeb595f1205c2c7230b3812badb1844185b3727', + address: '65.108.99.224:46656' }, { - "id": "553d4a0727b3ee95208d3553e8e82175302ebeb9", - "address": "95.217.109.143:56656" + id: '553d4a0727b3ee95208d3553e8e82175302ebeb9', + address: '95.217.109.143:56656' }, { - "id": "606b884008171f6fa8a475d4e63a79fb8dd77c38", - "address": "51.250.107.51:26656" + id: '606b884008171f6fa8a475d4e63a79fb8dd77c38', + address: '51.250.107.51:26656' }, { - "id": "d2515865c79d286da7abe1007959af1b238278bf", - "address": "212.109.220.122:26656" + id: 'd2515865c79d286da7abe1007959af1b238278bf', + address: '212.109.220.122:26656' }, { - "id": "4fc4fa6ec44f6da10830ffcb6344a8635156e11e", - "address": "141.95.65.26:26656" + id: '4fc4fa6ec44f6da10830ffcb6344a8635156e11e', + address: '141.95.65.26:26656' }, { - "id": "2968bf003604fc82ead6a0aea7b718d97a307892", - "address": "54.205.3.65:26656" + id: '2968bf003604fc82ead6a0aea7b718d97a307892', + address: '54.205.3.65:26656' }, { - "id": "306f47eba6711ec325ddb692c988cadadb83b4b7", - "address": "144.126.136.22:26656" + id: '306f47eba6711ec325ddb692c988cadadb83b4b7', + address: '144.126.136.22:26656' }, { - "id": "adfcaf7a4d5b388aff901136a9d64423ef2215f9", - "address": "88.99.216.14:26456" + id: 'adfcaf7a4d5b388aff901136a9d64423ef2215f9', + address: '88.99.216.14:26456' }, { - "id": "77d64fd4c97a849d781913c8fe1b737cfb31957a", - "address": "134.209.139.2:15656" + id: '77d64fd4c97a849d781913c8fe1b737cfb31957a', + address: '134.209.139.2:15656' }, { - "id": "7362b3c4d082680aeffe137d18cea0e37cab5037", - "address": "146.19.24.101:26656" + id: '7362b3c4d082680aeffe137d18cea0e37cab5037', + address: '146.19.24.101:26656' }, { - "id": "5e8e8e7071259beb3b32e39cb3d2bb059cff4d66", - "address": "65.108.137.22:26656" + id: '5e8e8e7071259beb3b32e39cb3d2bb059cff4d66', + address: '65.108.137.22:26656' }, { - "id": "eef583258a773765e556fa723bae76d572933eaa", - "address": "23.88.37.143:21356" + id: 'eef583258a773765e556fa723bae76d572933eaa', + address: '23.88.37.143:21356' }, { - "id": "37648e05b086bb98432a1115fdacd9ce36c70a4d", - "address": "142.4.216.69:26656" + id: '37648e05b086bb98432a1115fdacd9ce36c70a4d', + address: '142.4.216.69:26656' }, { - "id": "ae4f04cea40f6d6047ed2baf3483b5ca6fce3482", - "address": "154.12.242.63:26656" + id: 'ae4f04cea40f6d6047ed2baf3483b5ca6fce3482', + address: '154.12.242.63:26656' }, { - "id": "8f47445897afc72dec187d65f8cbf14f5ed5c86f", - "address": "88.99.166.120:26656" + id: '8f47445897afc72dec187d65f8cbf14f5ed5c86f', + address: '88.99.166.120:26656' }, { - "id": "201aa01ed819a3544c77b8e12343c832a20f8136", - "address": "49.12.189.127:26656" + id: '201aa01ed819a3544c77b8e12343c832a20f8136', + address: '49.12.189.127:26656' }, { - "id": "8a152dd74a1f1f43895d3065686bdec7fb4510e7", - "address": "65.21.89.42:29656" + id: '8a152dd74a1f1f43895d3065686bdec7fb4510e7', + address: '65.21.89.42:29656' }, { - "id": "169a3e12d45903d961ace560a384d3bcb55092e2", - "address": "3.137.211.131:26656" + id: '169a3e12d45903d961ace560a384d3bcb55092e2', + address: '3.137.211.131:26656' }, { - "id": "38f4504f74a9fd70f158270751c31a4d146f987c", - "address": "65.21.226.249:26616" + id: '38f4504f74a9fd70f158270751c31a4d146f987c', + address: '65.21.226.249:26616' }, { - "id": "aa4cbf8284512c7d10dbc0542604f1fb89e1646b", - "address": "95.165.150.165:26956" + id: 'aa4cbf8284512c7d10dbc0542604f1fb89e1646b', + address: '95.165.150.165:26956' }, { - "id": "20dbc8f0c0fe5aeadde86976149b70e20fb2e87d", - "address": "95.217.73.93:24656" + id: '20dbc8f0c0fe5aeadde86976149b70e20fb2e87d', + address: '95.217.73.93:24656' }, { - "id": "7170a9a965b53966b5232fb64f02fbd260e26b82", - "address": "116.203.47.250:26656" + id: '7170a9a965b53966b5232fb64f02fbd260e26b82', + address: '116.203.47.250:26656' }, { - "id": "5b3c90e6c07e03ffddc5dc3aae786a2990bc5bd3", - "address": "148.251.81.179:26656" + id: '5b3c90e6c07e03ffddc5dc3aae786a2990bc5bd3', + address: '148.251.81.179:26656' }, { - "id": "7ae8a8e62efcccf15198525868b0873b3c9bd698", - "address": "65.108.121.37:36656" + id: '7ae8a8e62efcccf15198525868b0873b3c9bd698', + address: '65.108.121.37:36656' }, { - "id": "681ffbadff88c900660d2bc6bce0920929b529f7", - "address": "62.171.153.122:26656" + id: '681ffbadff88c900660d2bc6bce0920929b529f7', + address: '62.171.153.122:26656' }, { - "id": "13e82c193914d0db037566ff0e59dfd38ccf5193", - "address": "35.154.66.182:26656" + id: '13e82c193914d0db037566ff0e59dfd38ccf5193', + address: '35.154.66.182:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.assetmantle.one/", - "provider": "AssetMantle" + address: 'https://rpc.assetmantle.one/', + provider: 'AssetMantle' }, { - "address": "https://rpc-assetmantle.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-assetmantle.ecostake.com', + provider: 'ecostake' }, { - "address": "https://assetmantle-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://assetmantle-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.asset-mantle.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.asset-mantle.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc.assetmantle.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.assetmantle.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://rest.assetmantle.one/", - "provider": "AssetMantle" + address: 'https://rest.assetmantle.one/', + provider: 'AssetMantle' }, { - "address": "https://rest-assetmantle.ecostake.com", - "provider": "ecostake" + address: 'https://rest-assetmantle.ecostake.com', + provider: 'ecostake' }, { - "address": "https://lcd.asset-mantle.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.asset-mantle.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api.assetmantle.nodestake.top", - "provider": "NodeStake" + address: 'https://api.assetmantle.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.assetmantle.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.assetmantle.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/asset-mantle", - "tx_page": "https://www.mintscan.io/asset-mantle/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/asset-mantle', + tx_page: 'https://www.mintscan.io/asset-mantle/txs/${txHash}' }, { - "kind": "ping.pub", - "url": "https://explorer.postcapitalist.io/AssetMantle", - "tx_page": "https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}" + kind: 'ping.pub', + url: 'https://explorer.postcapitalist.io/AssetMantle', + tx_page: 'https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}' }, { - "kind": "other", - "url": "https://explorer.assetmantle.one", - "tx_page": "https://explorer.assetmantle.one/transactions/${txHash}" + kind: 'other', + url: 'https://explorer.assetmantle.one', + tx_page: 'https://explorer.assetmantle.one/transactions/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://assetmantle.explorers.guru", - "tx_page": "https://assetmantle.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://assetmantle.explorers.guru', + tx_page: 'https://assetmantle.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/assetmantle", - "tx_page": "https://atomscan.com/assetmantle/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/assetmantle', + tx_page: 'https://atomscan.com/assetmantle/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "axelar", - "chain_id": "axelar-dojo-1", - "pretty_name": "Axelar", - "status": "live", - "network_type": "mainnet", - "bech32_prefix": "axelar", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/axelarnetwork/axelarate-community/main/resources/mainnet/genesis.json" - }, - "daemon_name": "axelard", - "node_home": "$HOME/.axelard", - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uaxl", - "fixed_min_gas_price": 0.00005 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/axelarnetwork/axelar-core", - "recommended_version": "v0.17.3", - "compatible_versions": [ - "v0.17.3" - ], - "binaries": { - "linux/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v0.17.3/axelard-linux-amd64-v0.17.3", - "darwin/amd64": "https://github.com/axelarnetwork/axelar-core/releases/download/v0.17.3/axelard-darwin-amd64-v0.17.3" + $schema: '../chain.schema.json', + chain_name: 'axelar', + chain_id: 'axelar-dojo-1', + pretty_name: 'Axelar', + status: 'live', + network_type: 'mainnet', + bech32_prefix: 'axelar', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/axelarnetwork/axelarate-community/main/resources/mainnet/genesis.json' + }, + daemon_name: 'axelard', + node_home: '$HOME/.axelard', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uaxl', + fixed_min_gas_price: 0.00005 + } + ] + }, + codebase: { + git_repo: 'https://github.com/axelarnetwork/axelar-core', + recommended_version: 'v0.17.3', + compatible_versions: ['v0.17.3'], + binaries: { + 'linux/amd64': + 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.17.3/axelard-linux-amd64-v0.17.3', + 'darwin/amd64': + 'https://github.com/axelarnetwork/axelar-core/releases/download/v0.17.3/axelard-darwin-amd64-v0.17.3' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "3d67d0646cddcc203b41434aceea64ade22ba6fc", - "address": "k8s-mainnet-axelarco-79b464ee93-f03cb16c57cf7cb2.elb.us-east-2.amazonaws.com:26656", - "provider": "axelar-core" + id: '3d67d0646cddcc203b41434aceea64ade22ba6fc', + address: + 'k8s-mainnet-axelarco-79b464ee93-f03cb16c57cf7cb2.elb.us-east-2.amazonaws.com:26656', + provider: 'axelar-core' }, { - "id": "9c9b8eb8cad8648f31d3c9da3d14e825f11a7b52", - "address": "public-seed.mainnet.axelar.lunanova.tech:26656", - "provider": "lunanova" + id: '9c9b8eb8cad8648f31d3c9da3d14e825f11a7b52', + address: 'public-seed.mainnet.axelar.lunanova.tech:26656', + provider: 'lunanova' }, { - "id": "82846f20e20dc80191bc96aa4c72321dd338faa7", - "address": "207.180.252.206:26656", - "provider": "chainode" + id: '82846f20e20dc80191bc96aa4c72321dd338faa7', + address: '207.180.252.206:26656', + provider: 'chainode' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "353f7d0962594bcbfb63c81594e35e39c4c89a1a", - "address": "18.223.127.165:26656" + id: '353f7d0962594bcbfb63c81594e35e39c4c89a1a', + address: '18.223.127.165:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://axelar-rpc.quickapi.com:443", - "provider": "chainlayer" + address: 'https://axelar-rpc.quickapi.com:443', + provider: 'chainlayer' }, { - "address": "https://axelar-rpc.chainode.tech:443", - "provider": "chainode" + address: 'https://axelar-rpc.chainode.tech:443', + provider: 'chainode' }, { - "address": "https://axelar-rpc.pops.one:443", - "provider": "p-ops" + address: 'https://axelar-rpc.pops.one:443', + provider: 'p-ops' }, { - "address": "https://rpc-1.axelar.nodes.guru:443", - "provider": "nodes.guru" + address: 'https://rpc-1.axelar.nodes.guru:443', + provider: 'nodes.guru' }, { - "address": "https://rpc-axelar-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-axelar-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://axelar-lcd.quickapi.com:443", - "provider": "chainlayer" + address: 'https://axelar-lcd.quickapi.com:443', + provider: 'chainlayer' }, { - "address": "https://api-1.axelar.nodes.guru:443", - "provider": "nodes.guru" + address: 'https://api-1.axelar.nodes.guru:443', + provider: 'nodes.guru' }, { - "address": "https://api-axelar-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-axelar-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-axelar-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-axelar-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "axelarscan", - "url": "https://axelarscan.io", - "tx_page": "https://axelarscan.io/tx/${txHash}" + kind: 'axelarscan', + url: 'https://axelarscan.io', + tx_page: 'https://axelarscan.io/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/axelar", - "tx_page": "https://www.mintscan.io/axelar/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/axelar', + tx_page: 'https://www.mintscan.io/axelar/txs/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://axelar.explorers.guru", - "tx_page": "https://axelar.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://axelar.explorers.guru', + tx_page: 'https://axelar.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/axelar", - "tx_page": "https://atomscan.com/axelar/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/axelar', + tx_page: 'https://atomscan.com/axelar/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "bandchain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "BandChain", - "chain_id": "laozi-mainnet", - "daemon_name": "bandd", - "node_home": "$HOME/.band", - "bech32_prefix": "band", - "slip44": 494, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'bandchain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'BandChain', + chain_id: 'laozi-mainnet', + daemon_name: 'bandd', + node_home: '$HOME/.band', + bech32_prefix: 'band', + slip44: 494, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/bandprotocol/chain", - "recommended_version": "v2.3.2", - "compatible_versions": [ - "v2.3.2" - ] + codebase: { + git_repo: 'https://github.com/bandprotocol/chain', + recommended_version: 'v2.3.2', + compatible_versions: ['v2.3.2'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "8d42bdcb6cced03e0b67fa3957e4e9c8fd89015a", - "address": "34.87.86.195:26656" + id: '8d42bdcb6cced03e0b67fa3957e4e9c8fd89015a', + address: '34.87.86.195:26656' }, { - "id": "543e0cab9c3016a0e99775443a17bcf163038912", - "address": "34.150.156.78:26656" + id: '543e0cab9c3016a0e99775443a17bcf163038912', + address: '34.150.156.78:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "98823087b61d442a4ab86998709c77b2e517ee78", - "address": "35.240.152.216:26656" + id: '98823087b61d442a4ab86998709c77b2e517ee78', + address: '35.240.152.216:26656' }, { - "id": "3ea84babead3d6bc488810a0f2cf0744cf5c68fe", - "address": "34.86.22.251:26656" + id: '3ea84babead3d6bc488810a0f2cf0744cf5c68fe', + address: '34.86.22.251:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://rpc.laozi1.bandchain.org:80", - "provider": "bandprotocol" + address: 'http://rpc.laozi1.bandchain.org:80', + provider: 'bandprotocol' }, { - "address": "https://rpc-bandchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-bandchain-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://laozi1.bandchain.org/api", - "provider": "bandprotocol" + address: 'https://laozi1.bandchain.org/api', + provider: 'bandprotocol' }, { - "address": "https://api-bandchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-bandchain-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-bandchain-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-bandchain-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "cosmoscan", - "url": "https://cosmoscan.io", - "tx_page": "https://cosmoscan.io/tx/{txHash}" + kind: 'cosmoscan', + url: 'https://cosmoscan.io', + tx_page: 'https://cosmoscan.io/tx/{txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/band", - "tx_page": "https://www.mintscan.io/band/txs{txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/band', + tx_page: 'https://www.mintscan.io/band/txs{txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/band-protocol", - "tx_page": "https://ping.pub/band-protocol/tx/{txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/band-protocol', + tx_page: 'https://ping.pub/band-protocol/tx/{txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/band-protocol", - "tx_page": "https://atomscan.com/band-protocol/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/band-protocol', + tx_page: 'https://atomscan.com/band-protocol/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "bitcanna", - "status": "live", - "network_type": "mainnet", - "pretty_name": "BitCanna", - "chain_id": "bitcanna-1", - "bech32_prefix": "bcna", - "daemon_name": "bcnad", - "node_home": "$HOME/.bcna", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/BitCannaGlobal/bcna/main/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ubcna", - "fixed_min_gas_price": 0.001 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/BitCannaGlobal/bcna", - "recommended_version": "v1.3.1", - "compatible_versions": [ - "v1.3.1" - ], - "binaries": { - "linux/amd64": "https://github.com/BitCannaGlobal/bcna/releases/download/v.1.3.1/bcnad" + $schema: '../chain.schema.json', + chain_name: 'bitcanna', + status: 'live', + network_type: 'mainnet', + pretty_name: 'BitCanna', + chain_id: 'bitcanna-1', + bech32_prefix: 'bcna', + daemon_name: 'bcnad', + node_home: '$HOME/.bcna', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/BitCannaGlobal/bcna/main/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ubcna', + fixed_min_gas_price: 0.001 + } + ] + }, + codebase: { + git_repo: 'https://github.com/BitCannaGlobal/bcna', + recommended_version: 'v1.3.1', + compatible_versions: ['v1.3.1'], + binaries: { + 'linux/amd64': + 'https://github.com/BitCannaGlobal/bcna/releases/download/v.1.3.1/bcnad' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "d6aa4c9f3ccecb0cc52109a95962b4618d69dd3f", - "address": "seed1.bitcanna.io:26656", - "provider": "bitcanna" + id: 'd6aa4c9f3ccecb0cc52109a95962b4618d69dd3f', + address: 'seed1.bitcanna.io:26656', + provider: 'bitcanna' }, { - "id": "23671067d0fd40aec523290585c7d8e91034a771", - "address": "seed2.bitcanna.io:26656", - "provider": "bitcanna" + id: '23671067d0fd40aec523290585c7d8e91034a771', + address: 'seed2.bitcanna.io:26656', + provider: 'bitcanna' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "bee230fb347722d7f87d22414f57bf9cbe37a410", - "address": "95.217.226.95:26039", - "provider": "EZStaking.io" + id: 'bee230fb347722d7f87d22414f57bf9cbe37a410', + address: '95.217.226.95:26039', + provider: 'EZStaking.io' }, { - "id": "90ee680b1738344354c48c23ba1e1fd68e071d80", - "address": "65.108.128.241:26696", - "provider": "EZStaking.io" + id: '90ee680b1738344354c48c23ba1e1fd68e071d80', + address: '65.108.128.241:26696', + provider: 'EZStaking.io' }, { - "id": "21484408a7bcf0134689ddf52a7d9c8299cb65b5", - "address": "176.9.139.74:36656", - "provider": "BitCanna" + id: '21484408a7bcf0134689ddf52a7d9c8299cb65b5', + address: '176.9.139.74:36656', + provider: 'BitCanna' }, { - "id": "7b2d10d188926ea25eb209f037fe4e67e16e06b6", - "address": "92.222.25.18:26656", - "provider": "StakeLab" + id: '7b2d10d188926ea25eb209f037fe4e67e16e06b6', + address: '92.222.25.18:26656', + provider: 'StakeLab' }, { - "id": "5eb75c20a77ccf960df396b187b86d6324b40123", - "address": "51.68.226.61:26656", - "provider": "StakeLab" + id: '5eb75c20a77ccf960df396b187b86d6324b40123', + address: '51.68.226.61:26656', + provider: 'StakeLab' }, { - "id": "6bd989f063b89be680fb3c55c4cf1720a892b12c", - "address": "161.97.96.253:26656", - "provider": "StakeLab" + id: '6bd989f063b89be680fb3c55c4cf1720a892b12c', + address: '161.97.96.253:26656', + provider: 'StakeLab' }, { - "id": "3cdfe02efd4432280707d2949e064a9d8db412b3", - "address": "178.62.98.158:26656", - "provider": "Stakely" + id: '3cdfe02efd4432280707d2949e064a9d8db412b3', + address: '178.62.98.158:26656', + provider: 'Stakely' }, { - "id": "d806bb39349751c142627a547c23c586a787ef26", - "address": "138.68.78.210:26656", - "provider": "Stakely" + id: 'd806bb39349751c142627a547c23c586a787ef26', + address: '138.68.78.210:26656', + provider: 'Stakely' }, { - "id": "ddb620e7c7a6b5a8a53352037cde927681012ab4", - "address": "65.21.229.209:37656", - "provider": "Blockscope" + id: 'ddb620e7c7a6b5a8a53352037cde927681012ab4', + address: '65.21.229.209:37656', + provider: 'Blockscope' }, { - "id": "df99de6cec9152c517990317b340b8b9a307493c", - "address": "193.34.144.156:26656", - "provider": "ParanormalBrothers" + id: 'df99de6cec9152c517990317b340b8b9a307493c', + address: '193.34.144.156:26656', + provider: 'ParanormalBrothers' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.bitcanna.io/", - "provider": "bitcanna" + address: 'https://rpc.bitcanna.io/', + provider: 'bitcanna' }, { - "address": "http://bcna.paranorm.pro:26657/", - "provider": "ParanormalBrothers" + address: 'http://bcna.paranorm.pro:26657/', + provider: 'ParanormalBrothers' }, { - "address": "https://rpc.bitcanna.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.bitcanna.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-bitcanna.itastakers.com/", - "provider": "itastaker" + address: 'https://rpc-bitcanna.itastakers.com/', + provider: 'itastaker' }, { - "address": "https://bitcanna-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://bitcanna-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-bitcanna-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-bitcanna-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://bitcannarpc.panthea.eu", - "provider": "Panthea EU" + address: 'https://bitcannarpc.panthea.eu', + provider: 'Panthea EU' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.bitcanna.io", - "provider": "bitcanna" + address: 'https://grpc.bitcanna.io', + provider: 'bitcanna' }, { - "address": "grpc-bitcanna-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-bitcanna-ia.notional.ventures:443', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd.bitcanna.io", - "provider": "bitcanna" + address: 'https://lcd.bitcanna.io', + provider: 'bitcanna' }, { - "address": "https://lcd.bitcanna.ezstaking.io/", - "provider": "EZStaking.io" + address: 'https://lcd.bitcanna.ezstaking.io/', + provider: 'EZStaking.io' }, { - "address": "https://lcd-bitcanna.itastakers.com/", - "provider": "itastaker" + address: 'https://lcd-bitcanna.itastakers.com/', + provider: 'itastaker' }, { - "address": "https://api-bitcanna-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-bitcanna-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://bitcannaapi.panthea.eu", - "provider": "Panthea EU" + address: 'https://bitcannaapi.panthea.eu', + provider: 'Panthea EU' } ] }, - "explorers": [ + explorers: [ { - "kind": "forbole", - "url": "https://cosmos-explorer.bitcanna.io", - "tx_page": "https://cosmos-explorer.bitcanna.io/transactions/${txHash}" + kind: 'forbole', + url: 'https://cosmos-explorer.bitcanna.io', + tx_page: 'https://cosmos-explorer.bitcanna.io/transactions/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/bitcanna", - "tx_page": "https://ping.pub/bitcanna/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/bitcanna', + tx_page: 'https://ping.pub/bitcanna/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/bitcanna/", - "tx_page": "https://www.mintscan.io/bitcanna/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/bitcanna/', + tx_page: 'https://www.mintscan.io/bitcanna/txs/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/bitcanna", - "tx_page": "https://atomscan.com/bitcanna/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/bitcanna', + tx_page: 'https://atomscan.com/bitcanna/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "bitsong", - "status": "live", - "network_type": "mainnet", - "pretty_name": "BitSong", - "chain_id": "bitsong-2b", - "bech32_prefix": "bitsong", - "slip44": 639, - "daemon_name": "bitsongd", - "node_home": "$HOME/.bitsongd", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'bitsong', + status: 'live', + network_type: 'mainnet', + pretty_name: 'BitSong', + chain_id: 'bitsong-2b', + bech32_prefix: 'bitsong', + slip44: 639, + daemon_name: 'bitsongd', + node_home: '$HOME/.bitsongd', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/bitsongofficial/networks/master/bitsong-2b/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/bitsongofficial/go-bitsong", - "recommended_version": "v0.11.0", - "compatible_versions": [ - "v0.11.0" - ] + codebase: { + git_repo: 'https://github.com/bitsongofficial/go-bitsong', + recommended_version: 'v0.11.0', + compatible_versions: ['v0.11.0'] }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "a62038142844828483dbf16fa6dd159f6857c81b", - "address": "173.212.247.98:26656" + id: 'a62038142844828483dbf16fa6dd159f6857c81b', + address: '173.212.247.98:26656' }, { - "id": "e9fea0509b1a2d16a10ef9fdea0a4e3edc7ca485", - "address": "185.144.83.158:26656" + id: 'e9fea0509b1a2d16a10ef9fdea0a4e3edc7ca485', + address: '185.144.83.158:26656' }, { - "id": "8208adac8b09f3e2499dfaef24bb89a2d190a7a3", - "address": "164.68.109.246:26656" + id: '8208adac8b09f3e2499dfaef24bb89a2d190a7a3', + address: '164.68.109.246:26656' }, { - "id": "cf031ac1cf44c9c311b5967712899391a434da9a", - "address": "161.97.97.61:26656" + id: 'cf031ac1cf44c9c311b5967712899391a434da9a', + address: '161.97.97.61:26656' }, { - "id": "d6b2ae82c38927fa7b7630346bd84772e632983a", - "address": "157.90.95.104:15631" + id: 'd6b2ae82c38927fa7b7630346bd84772e632983a', + address: '157.90.95.104:15631' }, { - "id": "a5885669c1f7860bfe28071a7ec00cc45b2fcbc3", - "address": "144.91.85.56:26656" + id: 'a5885669c1f7860bfe28071a7ec00cc45b2fcbc3', + address: '144.91.85.56:26656' }, { - "id": "325a5920a614e2375fea90f8a08d8b8d612fdd1e", - "address": "137.74.18.30:26656" + id: '325a5920a614e2375fea90f8a08d8b8d612fdd1e', + address: '137.74.18.30:26656' }, { - "id": "ae2787a337c3599b16410f3ac09d6918da2e5c37", - "address": "46.101.238.149:26656" + id: 'ae2787a337c3599b16410f3ac09d6918da2e5c37', + address: '46.101.238.149:26656' }, { - "id": "9336f75cd99ff6e5cdb6335e8d1a2c91b81d84b9", - "address": "65.21.0.232:26656" + id: '9336f75cd99ff6e5cdb6335e8d1a2c91b81d84b9', + address: '65.21.0.232:26656' }, { - "id": "9c6e52e78f112a55146b09110d1d1be47702df27", - "address": "135.181.211.184:36656" + id: '9c6e52e78f112a55146b09110d1d1be47702df27', + address: '135.181.211.184:36656' } ], - "seeds": [ + seeds: [ { - "id": "ffa27441ca78a5d41a36f6d505b67a145fd54d8a", - "address": "95.217.156.228:26656" + id: 'ffa27441ca78a5d41a36f6d505b67a145fd54d8a', + address: '95.217.156.228:26656' }, { - "id": "efd52c1e56b460b1f37d73c8d2bd5f860b41d2ba", - "address": "65.21.62.83:26656" + id: 'efd52c1e56b460b1f37d73c8d2bd5f860b41d2ba', + address: '65.21.62.83:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-bitsong.itastakers.com", - "provider": "itastakers" + address: 'https://rpc-bitsong.itastakers.com', + provider: 'itastakers' }, { - "address": "https://rpc.bitsong.interbloc.org", - "provider": "interbloc" + address: 'https://rpc.bitsong.interbloc.org', + provider: 'interbloc' }, { - "address": "https://rpc-bitsong-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-bitsong-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc.explorebitsong.com", - "provider": "stake.systems" + address: 'https://rpc.explorebitsong.com', + provider: 'stake.systems' } ], - "rest": [ + rest: [ { - "address": "https://lcd-bitsong.itastakers.com", - "provider": "itastakers" + address: 'https://lcd-bitsong.itastakers.com', + provider: 'itastakers' }, { - "address": "https://api.bitsong.interbloc.org", - "provider": "interbloc" + address: 'https://api.bitsong.interbloc.org', + provider: 'interbloc' }, { - "address": "https://api-bitsong-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-bitsong-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://lcd.explorebitsong.com/", - "provider": "stake.systems" + address: 'https://lcd.explorebitsong.com/', + provider: 'stake.systems' } ], - "grpc": [ + grpc: [ { - "address": "grpc-bitsong-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-bitsong-ia.notional.ventures:443', + provider: 'Notional' }, { - "address": "bitsong.stakesystems.io:2083", - "provider": "stake.systems" + address: 'bitsong.stakesystems.io:2083', + provider: 'stake.systems' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://ping.pub/bitsong", - "tx_page": "https://ping.pub/bitsong/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/bitsong', + tx_page: 'https://ping.pub/bitsong/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/bitsong", - "tx_page": "https://www.mintscan.io/bitsong/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/bitsong', + tx_page: 'https://www.mintscan.io/bitsong/txs/${txHash}' }, { - "kind": "big-dipper", - "url": "https://explorebitsong.com", - "tx_page": "https://explorebitsong.com/transactions/${txHash}" + kind: 'big-dipper', + url: 'https://explorebitsong.com', + tx_page: 'https://explorebitsong.com/transactions/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/bitsong", - "tx_page": "https://atomscan.com/bitsong/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/bitsong', + tx_page: 'https://atomscan.com/bitsong/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "bostrom", - "status": "live", - "network_type": "mainnet", - "pretty_name": "bostrom", - "chain_id": "bostrom", - "bech32_prefix": "bostrom", - "daemon_name": "cyber", - "node_home": "$HOME/.cyber", - "genesis": { - "genesis_url": "https://cloudflare-ipfs.com/ipfs/QmYubyVNfghD4xCrTFj26zBwrF9s5GJhi1TmxvrwmJCipr" - }, - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/cybercongress/go-cyber", - "recommended_version": "v0.3.0", - "compatible_versions": [ - "v0.3.0" - ], - "binaries": { - "linux/amd64": "https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_linux-amd64.tar.gz", - "darwin/amd64": "https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_darwin-amd64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'bostrom', + status: 'live', + network_type: 'mainnet', + pretty_name: 'bostrom', + chain_id: 'bostrom', + bech32_prefix: 'bostrom', + daemon_name: 'cyber', + node_home: '$HOME/.cyber', + genesis: { + genesis_url: + 'https://cloudflare-ipfs.com/ipfs/QmYubyVNfghD4xCrTFj26zBwrF9s5GJhi1TmxvrwmJCipr' + }, + slip44: 118, + codebase: { + git_repo: 'https://github.com/cybercongress/go-cyber', + recommended_version: 'v0.3.0', + compatible_versions: ['v0.3.0'], + binaries: { + 'linux/amd64': + 'https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_linux-amd64.tar.gz', + 'darwin/amd64': + 'https://github.com/cybercongress/go-cyber/releases/download/v0.2.0/cyber_v0.2.0_darwin-amd64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "d0518ce9881a4b0c5872e5e9b7c4ea8d760dad3f", - "address": "85.10.207.173:26656", - "provider": "cybercongress" + id: 'd0518ce9881a4b0c5872e5e9b7c4ea8d760dad3f', + address: '85.10.207.173:26656', + provider: 'cybercongress' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "5d542c0eb40ae48dc2cac0c140aedb605ded77dc", - "address": "195.201.105.229:26656" + id: '5d542c0eb40ae48dc2cac0c140aedb605ded77dc', + address: '195.201.105.229:26656' }, { - "id": "c72de1e20beed51b779d89b1cf08d8146016eec4", - "address": "185.186.208.37:26656" + id: 'c72de1e20beed51b779d89b1cf08d8146016eec4', + address: '185.186.208.37:26656' }, { - "id": "4c130ed1c58f6d6be981c59a748511e581969c51", - "address": "93.180.175.201:36656" + id: '4c130ed1c58f6d6be981c59a748511e581969c51', + address: '93.180.175.201:36656' }, { - "id": "df79a86dc236b8dff250c402e95cd6853e8ad7c4", - "address": "46.166.165.4:26656" + id: 'df79a86dc236b8dff250c402e95cd6853e8ad7c4', + address: '46.166.165.4:26656' }, { - "id": "39a20a7d84c6e91c6638f5a685a13f655e050ee0", - "address": "176.37.214.146:26656" + id: '39a20a7d84c6e91c6638f5a685a13f655e050ee0', + address: '176.37.214.146:26656' }, { - "id": "77d27615009fc703ece46901792cc8750cccd0de", - "address": "185.230.90.71:26656" + id: '77d27615009fc703ece46901792cc8750cccd0de', + address: '185.230.90.71:26656' }, { - "id": "dd22cffccafaece970cfa9e7eb3c8468f6fa1c84", - "address": "46.166.165.14:26656" + id: 'dd22cffccafaece970cfa9e7eb3c8468f6fa1c84', + address: '46.166.165.14:26656' }, { - "id": "5e8522bef5ceca507e05aa0d5f67f37a70222c73", - "address": "185.230.90.202:26656" + id: '5e8522bef5ceca507e05aa0d5f67f37a70222c73', + address: '185.230.90.202:26656' }, { - "id": "55937c36959ea3984cc6e6ebd3354d73bbbdbcda", - "address": "95.165.24.115:26656" + id: '55937c36959ea3984cc6e6ebd3354d73bbbdbcda', + address: '95.165.24.115:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.bostrom.cybernode.ai", - "provider": "cybercongress" + address: 'https://rpc.bostrom.cybernode.ai', + provider: 'cybercongress' }, { - "address": "https://rpc.cyber.posthuman.digital", - "provider": "posthuman" + address: 'https://rpc.cyber.posthuman.digital', + provider: 'posthuman' }, { - "address": "https://rpc-cyber-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-cyber-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd.bostrom.cybernode.ai", - "provider": "cybercongress" + address: 'https://lcd.bostrom.cybernode.ai', + provider: 'cybercongress' }, { - "address": "https://lcd.cyber.posthuman.digital", - "provider": "posthuman" + address: 'https://lcd.cyber.posthuman.digital', + provider: 'posthuman' }, { - "address": "https://api-cyber-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-cyber-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-cyber-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-cyber-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "cyb", - "url": "https://cyb.ai/", - "tx_page": "https://cyb.ai/network/bostrom/tx/${txHash}" + kind: 'cyb', + url: 'https://cyb.ai/', + tx_page: 'https://cyb.ai/network/bostrom/tx/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/bostrom", - "tx_page": "https://ping.pub/bostrom/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/bostrom', + tx_page: 'https://ping.pub/bostrom/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/bostrom", - "tx_page": "https://atomscan.com/bostrom/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/bostrom', + tx_page: 'https://atomscan.com/bostrom/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "carbon", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Carbon", - "chain_id": "carbon-1", - "bech32_prefix": "swth", - "daemon_name": "carbond", - "node_home": "$HOME/.carbond", - "genesis": { - "genesis_url": "https://github.com/Switcheo/carbon-bootstrap/raw/master/carbon-1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "swth", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/Switcheo/carbon-bootstrap", - "recommended_version": "v2.3.1", - "compatible_versions": [ - "v2.3.0" - ], - "binaries": { - "linux/amd64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.3.1/carbond2.3.1-mainnet.linux-amd64.tar.gz", - "linux/arm64": "https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.3.1/carbond2.3.1-mainnet.linux-ard64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'carbon', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Carbon', + chain_id: 'carbon-1', + bech32_prefix: 'swth', + daemon_name: 'carbond', + node_home: '$HOME/.carbond', + genesis: { + genesis_url: + 'https://github.com/Switcheo/carbon-bootstrap/raw/master/carbon-1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'swth', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/Switcheo/carbon-bootstrap', + recommended_version: 'v2.3.1', + compatible_versions: ['v2.3.0'], + binaries: { + 'linux/amd64': + 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.3.1/carbond2.3.1-mainnet.linux-amd64.tar.gz', + 'linux/arm64': + 'https://github.com/Switcheo/carbon-bootstrap/releases/download/v2.3.1/carbond2.3.1-mainnet.linux-ard64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "d93ed6a1f43dd0904dc5e2ab8680d4049b057b17", - "address": "13.215.17.91:26656", - "provider": "switcheo-labs" + id: 'd93ed6a1f43dd0904dc5e2ab8680d4049b057b17', + address: '13.215.17.91:26656', + provider: 'switcheo-labs' }, { - "id": "70581c625fc1933bc273ca7a8d5e9ded3d1bcc97", - "address": "13.213.113.113:26656", - "provider": "switcheo-labs" + id: '70581c625fc1933bc273ca7a8d5e9ded3d1bcc97', + address: '13.213.113.113:26656', + provider: 'switcheo-labs' }, { - "id": "e3f02a9f3ca22724b3a67bba9183113645c9c7d9", - "address": "54.179.11.177:26656", - "provider": "switcheo-labs" + id: 'e3f02a9f3ca22724b3a67bba9183113645c9c7d9', + address: '54.179.11.177:26656', + provider: 'switcheo-labs' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b638cc8fc5b3d7867281081efce15e5a989339ac", - "address": "188.166.191.195:26656", - "provider": "intsol" + id: 'b638cc8fc5b3d7867281081efce15e5a989339ac', + address: '188.166.191.195:26656', + provider: 'intsol' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://tm-api.carbon.network", - "provider": "switcheo-labs" + address: 'https://tm-api.carbon.network', + provider: 'switcheo-labs' } ], - "rest": [ + rest: [ { - "address": "https://api.carbon.network", - "provider": "switcheo-labs" + address: 'https://api.carbon.network', + provider: 'switcheo-labs' } ] }, - "explorers": [ + explorers: [ { - "kind": "carbonscan", - "url": "https://scan.carbon.network", - "tx_page": "https://scan.carbon.network/transaction/${txHash}?net=main" + kind: 'carbonscan', + url: 'https://scan.carbon.network', + tx_page: 'https://scan.carbon.network/transaction/${txHash}?net=main' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cerberus", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Cerberus", - "chain_id": "cerberus-chain-1", - "bech32_prefix": "cerberus", - "daemon_name": "cerberusd", - "node_home": "$HOME/.cerberus", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/cerberus-zone/cerberus_genesis/main/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'cerberus', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Cerberus', + chain_id: 'cerberus-chain-1', + bech32_prefix: 'cerberus', + daemon_name: 'cerberusd', + node_home: '$HOME/.cerberus', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/cerberus-zone/cerberus_genesis/main/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/cerberus-zone/cerberus", - "recommended_version": "v1.0.1", - "compatible_versions": [ - "v1.0.1" - ] + codebase: { + git_repo: 'https://github.com/cerberus-zone/cerberus', + recommended_version: 'v1.0.1', + compatible_versions: ['v1.0.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0", - "address": "seeds.polkachu.com:38656", - "provider": "Polkachu" + id: 'ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0', + address: 'seeds.polkachu.com:38656', + provider: 'Polkachu' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "d8a04beba9fb95c70368b303f701c36b4e3b4a63", - "address": "185.215.165.29:26656" + id: 'd8a04beba9fb95c70368b303f701c36b4e3b4a63', + address: '185.215.165.29:26656' }, { - "id": "aaa2eba32286074fb575a48e033ac2ba7f4c94e6", - "address": "98.113.93.139:26661" + id: 'aaa2eba32286074fb575a48e033ac2ba7f4c94e6', + address: '98.113.93.139:26661' }, { - "id": "89ee9a502d4d84e5632a1f5b17cbedfb0aaae088", - "address": "116.202.133.77:26656" + id: '89ee9a502d4d84e5632a1f5b17cbedfb0aaae088', + address: '116.202.133.77:26656' }, { - "id": "1d7be8ba88c4d1d36d94f493b31018b832ecb5be", - "address": "116.202.223.110:26656" + id: '1d7be8ba88c4d1d36d94f493b31018b832ecb5be', + address: '116.202.223.110:26656' }, { - "id": "7bc4a76ea8ada51695bb2797ae24eec011f4bb86", - "address": "194.163.175.85:26656" + id: '7bc4a76ea8ada51695bb2797ae24eec011f4bb86', + address: '194.163.175.85:26656' }, { - "id": "17e1441d760583ab5cf79a93ea01ced685948bf7", - "address": "168.119.110.93:26656" + id: '17e1441d760583ab5cf79a93ea01ced685948bf7', + address: '168.119.110.93:26656' }, { - "id": "d7f578c4295c7cf05164a2f786601050bf2f2356", - "address": "142.132.202.98:46656", - "provider": "ecostake" + id: 'd7f578c4295c7cf05164a2f786601050bf2f2356', + address: '142.132.202.98:46656', + provider: 'ecostake' }, { - "id": "21cca2db122c48a11f426799131ef08235d46671", - "address": "148.251.177.45:10656" + id: '21cca2db122c48a11f426799131ef08235d46671', + address: '148.251.177.45:10656' }, { - "id": "bae90c7f3aca48e7ae8b3e28dc3b01a2143f068e", - "address": "194.163.169.187:26656" + id: 'bae90c7f3aca48e7ae8b3e28dc3b01a2143f068e', + address: '194.163.169.187:26656' }, { - "id": "2cee125f1f1d852b08ef3530154da2eb54ed72ac", - "address": "66.94.127.8:26656" + id: '2cee125f1f1d852b08ef3530154da2eb54ed72ac', + address: '66.94.127.8:26656' }, { - "id": "081e114c7452e3b148cc1a796d75f702b60b0219", - "address": "85.237.192.125:26656" + id: '081e114c7452e3b148cc1a796d75f702b60b0219', + address: '85.237.192.125:26656' }, { - "id": "22e0968f91aba1b3d4d9ad2db2ae47af8cc0a81a", - "address": "34.139.66.39:26656" + id: '22e0968f91aba1b3d4d9ad2db2ae47af8cc0a81a', + address: '34.139.66.39:26656' }, { - "id": "c346db0db91a940e87e9ae7df28c3d4947672f54", - "address": "65.108.121.239:26656" + id: 'c346db0db91a940e87e9ae7df28c3d4947672f54', + address: '65.108.121.239:26656' }, { - "id": "5180ecb20880706a14f99b8982f37a5c23da21ec", - "address": "65.21.235.249:26656" + id: '5180ecb20880706a14f99b8982f37a5c23da21ec', + address: '65.21.235.249:26656' }, { - "id": "f03e64d46713068da60b096d528053a57e0e5fec", - "address": "157.90.36.33:29563" + id: 'f03e64d46713068da60b096d528053a57e0e5fec', + address: '157.90.36.33:29563' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.cerberus.zone:26657/", - "provider": "Cerberus" + address: 'https://rpc.cerberus.zone:26657/', + provider: 'Cerberus' }, { - "address": "https://rpc-cerberus.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-cerberus.ecostake.com', + provider: 'ecostake' }, { - "address": "https://cerberus-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://cerberus-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-cerberus-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-cerberus-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://cerberusrpc.panthea.eu", - "provider": "Panthea EU" + address: 'https://cerberusrpc.panthea.eu', + provider: 'Panthea EU' } ], - "rest": [ + rest: [ { - "address": "https://api.cerberus.zone:1317/", - "provider": "Cerberus" + address: 'https://api.cerberus.zone:1317/', + provider: 'Cerberus' }, { - "address": "https://rest-cerberus.ecostake.com", - "provider": "ecostake" + address: 'https://rest-cerberus.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api-cerberus-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-cerberus-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://cerberusapi.panthea.eu", - "provider": "Panthea EU" + address: 'https://cerberusapi.panthea.eu', + provider: 'Panthea EU' } ], - "grpc": [ + grpc: [ { - "address": "grpc-cerberus-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-cerberus-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "SkyNet", - "url": "https://skynetexplorers.com/cerberus", - "tx_page": "https://skynetexplorers.com/cerberus/tx/${txHash}" + kind: 'SkyNet', + url: 'https://skynetexplorers.com/cerberus', + tx_page: 'https://skynetexplorers.com/cerberus/tx/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/cerberus", - "tx_page": "https://ping.pub/cerberus/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/cerberus', + tx_page: 'https://ping.pub/cerberus/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/cerberus", - "tx_page": "https://www.mintscan.io/cerberus/txs/{txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/cerberus', + tx_page: 'https://www.mintscan.io/cerberus/txs/{txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/cerberus", - "tx_page": "https://atomscan.com/cerberus/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/cerberus', + tx_page: 'https://atomscan.com/cerberus/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cheqd", - "status": "live", - "network_type": "mainnet", - "pretty_name": "cheqd", - "chain_id": "cheqd-mainnet-1", - "bech32_prefix": "cheqd", - "daemon_name": "cheqd-noded", - "node_home": "$HOME/.cheqdnode", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json" - }, - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ncheq", - "fixed_min_gas_price": 25, - "low_gas_price": 25, - "average_gas_price": 50, - "high_gas_price": 100 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/cheqd/cheqd-node", - "recommended_version": "v0.6.0", - "compatible_versions": [ - "v0.6.0" - ], - "binaries": { - "linux/amd64": "https://github.com/cheqd/cheqd-node/releases/download/v0.6.0/cheqd-noded" + $schema: '../chain.schema.json', + chain_name: 'cheqd', + status: 'live', + network_type: 'mainnet', + pretty_name: 'cheqd', + chain_id: 'cheqd-mainnet-1', + bech32_prefix: 'cheqd', + daemon_name: 'cheqd-noded', + node_home: '$HOME/.cheqdnode', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json' + }, + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ncheq', + fixed_min_gas_price: 25, + low_gas_price: 25, + average_gas_price: 50, + high_gas_price: 100 + } + ] + }, + codebase: { + git_repo: 'https://github.com/cheqd/cheqd-node', + recommended_version: 'v0.6.0', + compatible_versions: ['v0.6.0'], + binaries: { + 'linux/amd64': + 'https://github.com/cheqd/cheqd-node/releases/download/v0.6.0/cheqd-noded' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "258a9bfb822637bfca87daaab6181c10e7fd0910", - "address": "seed1.eu.cheqd.net:26656", - "provider": "cheqd" + id: '258a9bfb822637bfca87daaab6181c10e7fd0910', + address: 'seed1.eu.cheqd.net:26656', + provider: 'cheqd' }, { - "id": "f565ff792b20977face9817df6acb268d41d4092", - "address": "seed2.eu.cheqd.net:26656", - "provider": "cheqd" + id: 'f565ff792b20977face9817df6acb268d41d4092', + address: 'seed2.eu.cheqd.net:26656', + provider: 'cheqd' }, { - "id": "388947cc7d901c5c06fedc4c26751634564d68e6", - "address": "seed3.eu.cheqd.net:26656", - "provider": "cheqd" + id: '388947cc7d901c5c06fedc4c26751634564d68e6', + address: 'seed3.eu.cheqd.net:26656', + provider: 'cheqd' }, { - "id": "9b30307a2a2819790d68c04bb62f5cf4028f447e", - "address": "seed1.ap.cheqd.net:26656", - "provider": "cheqd" + id: '9b30307a2a2819790d68c04bb62f5cf4028f447e', + address: 'seed1.ap.cheqd.net:26656', + provider: 'cheqd' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "d1ebb60825e2c29181b499f93493dd440fb87997", - "address": "sentry1.eu.cheqd.net:26656", - "provider": "cheqd" + id: 'd1ebb60825e2c29181b499f93493dd440fb87997', + address: 'sentry1.eu.cheqd.net:26656', + provider: 'cheqd' }, { - "id": "513d334bb044296796939e57b522fef7fd4b9c6c", - "address": "sentry2.eu.cheqd.net:26656", - "provider": "cheqd" + id: '513d334bb044296796939e57b522fef7fd4b9c6c', + address: 'sentry2.eu.cheqd.net:26656', + provider: 'cheqd' }, { - "id": "9201b408d24941fd342e739f0814aa3eb8ab7577", - "address": "sentry1.ap.cheqd.net:26656", - "provider": "cheqd" + id: '9201b408d24941fd342e739f0814aa3eb8ab7577', + address: 'sentry1.ap.cheqd.net:26656', + provider: 'cheqd' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.cheqd.net", - "provider": "cheqd" + address: 'https://rpc.cheqd.net', + provider: 'cheqd' }, { - "address": "https://rpc.cheqd.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.cheqd.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-cheqd-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-cheqd-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.cheqd.net", - "provider": "cheqd" + address: 'https://api.cheqd.net', + provider: 'cheqd' }, { - "address": "https://lcd.cheqd.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.cheqd.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-cheqd-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-cheqd-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc.cheqd.net:443", - "provider": "cheqd" + address: 'grpc.cheqd.net:443', + provider: 'cheqd' }, { - "address": "grpc-cheqd-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-cheqd-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "bigdipper", - "url": "https://explorer.cheqd.io/", - "tx_page": "https://explorer.cheqd.io/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://explorer.cheqd.io/', + tx_page: 'https://explorer.cheqd.io/transactions/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/cheqd", - "tx_page": "https://ping.pub/cheqd/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/cheqd', + tx_page: 'https://ping.pub/cheqd/tx/${txHash}' }, { - "kind": "atomscan.com", - "url": "https://atomscan.com/cheqd", - "tx_page": "https://atomscan.com/cheqd/transactions/${txHash}", - "account_page": "https://atomscan.com/cheqd/accounts/${accountAddress}" + kind: 'atomscan.com', + url: 'https://atomscan.com/cheqd', + tx_page: 'https://atomscan.com/cheqd/transactions/${txHash}', + account_page: 'https://atomscan.com/cheqd/accounts/${accountAddress}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "chihuahua", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Chihuahua", - "chain_id": "chihuahua-1", - "bech32_prefix": "chihuahua", - "daemon_name": "chihuahuad", - "node_home": "$HOME/.chihuahua", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ChihuahuaChain/mainnet/main/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'chihuahua', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Chihuahua', + chain_id: 'chihuahua-1', + bech32_prefix: 'chihuahua', + daemon_name: 'chihuahuad', + node_home: '$HOME/.chihuahua', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ChihuahuaChain/mainnet/main/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/ChihuahuaChain/chihuahua/", - "recommended_version": "v2.0.1", - "compatible_versions": [ - "v2.0.1" - ] + codebase: { + git_repo: 'https://github.com/ChihuahuaChain/chihuahua/', + recommended_version: 'v2.0.1', + compatible_versions: ['v2.0.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "4936e377b4d4f17048f8961838a5035a4d21240c", - "address": "chihuahua-seed-01.mercury-nodes.net:29540" + id: '4936e377b4d4f17048f8961838a5035a4d21240c', + address: 'chihuahua-seed-01.mercury-nodes.net:29540' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b140eb36b20f3d201936c4757d5a1dcbf03a42f1", - "address": "216.238.79.138:26656", - "provider": "artifact" + id: 'b140eb36b20f3d201936c4757d5a1dcbf03a42f1', + address: '216.238.79.138:26656', + provider: 'artifact' }, { - "id": "19900e1d2b10be9c6672dae7abd1827c8e1aad1e", - "address": "161.97.96.253:26656", - "provider": "StakeLab" + id: '19900e1d2b10be9c6672dae7abd1827c8e1aad1e', + address: '161.97.96.253:26656', + provider: 'StakeLab' }, { - "id": "c382a9a0d4c0606d785d2c7c2673a0825f7c53b2", - "address": "88.99.94.120:26656", - "provider": "Chihuahua" + id: 'c382a9a0d4c0606d785d2c7c2673a0825f7c53b2', + address: '88.99.94.120:26656', + provider: 'Chihuahua' }, { - "id": "a5dfb048e4ed5c3b7d246aea317ab302426b37a1", - "address": "137.184.250.180:26656", - "provider": "CHILL" + id: 'a5dfb048e4ed5c3b7d246aea317ab302426b37a1', + address: '137.184.250.180:26656', + provider: 'CHILL' }, { - "id": "3bad0326026ca4e29c64c8d206c90a968f38edbe", - "address": "128.199.165.78:26656", - "provider": "KingNodes" + id: '3bad0326026ca4e29c64c8d206c90a968f38edbe', + address: '128.199.165.78:26656', + provider: 'KingNodes' }, { - "id": "89b576c3eb72a4f0c66dc0899bec7c21552ea2a5", - "address": "23.88.7.73:29538", - "provider": "Mercury" + id: '89b576c3eb72a4f0c66dc0899bec7c21552ea2a5', + address: '23.88.7.73:29538', + provider: 'Mercury' }, { - "id": "38547b7b6868f93af1664d9ab0e718949b8853ec", - "address": "54.184.20.240:30758", - "provider": "0base.vc" + id: '38547b7b6868f93af1664d9ab0e718949b8853ec', + address: '54.184.20.240:30758', + provider: '0base.vc' }, { - "id": "a9640eb569620d1f7be018a9e1919b0357a18b8c", - "address": "38.146.3.160:26656", - "provider": "RHINO" + id: 'a9640eb569620d1f7be018a9e1919b0357a18b8c', + address: '38.146.3.160:26656', + provider: 'RHINO' }, { - "id": "7e2239a0d4a0176fe4daf7a3fecd15ac663a8eb6", - "address": "144.91.126.23:26656", - "provider": "LavenderFive" + id: '7e2239a0d4a0176fe4daf7a3fecd15ac663a8eb6', + address: '144.91.126.23:26656', + provider: 'LavenderFive' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.chihuahua.wtf/", - "provider": "Chihuahua" + address: 'https://rpc.chihuahua.wtf/', + provider: 'Chihuahua' }, { - "address": "https://rpc-chihuahua.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-chihuahua.ecostake.com', + provider: 'ecostake' }, { - "address": "https://chihuahua-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://chihuahua-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-chihuahua-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-chihuahua-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.chihuahua.wtf/", - "provider": "Chihuahua" + address: 'https://api.chihuahua.wtf/', + provider: 'Chihuahua' }, { - "address": "https://rest-chihuahua.ecostake.com", - "provider": "ecostake" + address: 'https://rest-chihuahua.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api-chihuahua-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-chihuahua-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-chihuahua-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-chihuahua-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping.pub", - "url": "https://ping.pub/chihuahua", - "tx_page": "https://ping.pub/chihuahua/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/chihuahua', + tx_page: 'https://ping.pub/chihuahua/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://mintscan.io/chihuahua", - "tx_page": "https://mintscan.io/chihuahua/txs/${txHash}" + kind: 'mintscan', + url: 'https://mintscan.io/chihuahua', + tx_page: 'https://mintscan.io/chihuahua/txs/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/chihuahua", - "tx_page": "https://atomscan.com/chihuahua/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/chihuahua', + tx_page: 'https://atomscan.com/chihuahua/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "chronicnetwork", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Chronic", - "chain_id": "morocco-1", - "bech32_prefix": "chronic", - "daemon_name": "chtd", - "node_home": "$HOME/.cht", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ChronicNetwork/net/main/mainnet/v1.1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ucgas", - "fixed_min_gas_price": 0.001 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/ChronicNetwork/cht", - "recommended_version": "v1.1.0", - "compatible_versions": [ - "v1.1.0" - ], - "binaries": { - "linux/amd64": "https://github.com/ChronicNetwork/cht/releases/download/v.1.1.0/cht" + $schema: '../chain.schema.json', + chain_name: 'chronicnetwork', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Chronic', + chain_id: 'morocco-1', + bech32_prefix: 'chronic', + daemon_name: 'chtd', + node_home: '$HOME/.cht', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ChronicNetwork/net/main/mainnet/v1.1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ucgas', + fixed_min_gas_price: 0.001 + } + ] + }, + codebase: { + git_repo: 'https://github.com/ChronicNetwork/cht', + recommended_version: 'v1.1.0', + compatible_versions: ['v1.1.0'], + binaries: { + 'linux/amd64': + 'https://github.com/ChronicNetwork/cht/releases/download/v.1.1.0/cht' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "ba4c7434bdb00f49b26450242713d52e7c6c8f73", - "address": "147.182.180.205:26656", - "provider": "Third Party" + id: 'ba4c7434bdb00f49b26450242713d52e7c6c8f73', + address: '147.182.180.205:26656', + provider: 'Third Party' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "9dd99f5aaebac6027e842a5678c2ad2663942506", - "address": "185.16.39.128:26456", - "provider": "StingRay" + id: '9dd99f5aaebac6027e842a5678c2ad2663942506', + address: '185.16.39.128:26456', + provider: 'StingRay' }, { - "id": "694ddedde37bb211c827834e27e39d4c85f36f5f", - "address": "46.4.119.90:46656", - "provider": "Chill Validation" + id: '694ddedde37bb211c827834e27e39d4c85f36f5f', + address: '46.4.119.90:46656', + provider: 'Chill Validation' }, { - "id": "31cc2cd1735ff7b51bb44dada4d984741208fc39", - "address": "65.21.88.252:29656", - "provider": "hdmiidmh" + id: '31cc2cd1735ff7b51bb44dada4d984741208fc39', + address: '65.21.88.252:29656', + provider: 'hdmiidmh' }, { - "id": "998340bc75690a0479fa028f5bdf275b829b9f1a", - "address": "65.21.132.226:28656", - "provider": "Blockscope.net" + id: '998340bc75690a0479fa028f5bdf275b829b9f1a', + address: '65.21.132.226:28656', + provider: 'Blockscope.net' }, { - "id": "4e9a1be76e5f2bf6c34748b85aed0cedca892cc8", - "address": "143.244.182.230:26656", - "provider": "xiti" + id: '4e9a1be76e5f2bf6c34748b85aed0cedca892cc8', + address: '143.244.182.230:26656', + provider: 'xiti' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.chronic.nodestake.top/", - "provider": "NodeStake.top" + address: 'https://rpc.chronic.nodestake.top/', + provider: 'NodeStake.top' }, { - "address": "https://rpc-chronic.zenchainlabs.io/", - "provider": "ZenChainLabs" + address: 'https://rpc-chronic.zenchainlabs.io/', + provider: 'ZenChainLabs' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.chronic.nodestake.top/", - "provider": "NodeStake.top" + address: 'https://grpc.chronic.nodestake.top/', + provider: 'NodeStake.top' } ], - "rest": [ + rest: [ { - "address": "https://api.chronic.nodestake.top/", - "provider": "NodeStake.top" + address: 'https://api.chronic.nodestake.top/', + provider: 'NodeStake.top' }, { - "address": "https://api-chronic.zenchainlabs.io/", - "provider": "ZenChainLabs" + address: 'https://api-chronic.zenchainlabs.io/', + provider: 'ZenChainLabs' } ] }, - "explorers": [ + explorers: [ { - "kind": "skynetexplorers", - "url": "https://www.skynetexplorers.com/chronic-token", - "tx_page": "" + kind: 'skynetexplorers', + url: 'https://www.skynetexplorers.com/chronic-token', + tx_page: '' }, { - "kind": "Zenscan.io", - "url": "https://www.chronic.zenscan.io", - "tx_page": "" + kind: 'Zenscan.io', + url: 'https://www.chronic.zenscan.io', + tx_page: '' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "comdex", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Comdex", - "chain_id": "comdex-1", - "bech32_prefix": "comdex", - "slip44": 118, - "genesis": { - "genesis_url": "https://comdex-mainnet-genesis.s3.ap-southeast-1.amazonaws.com/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/comdex-official/comdex", - "recommended_version": "v0.0.4", - "compatible_versions": [ - "v0.0.4" - ] - }, - "daemon_name": "comdex", - "node_home": "$HOME/.comdex", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + $schema: '../chain.schema.json', + chain_name: 'comdex', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Comdex', + chain_id: 'comdex-1', + bech32_prefix: 'comdex', + slip44: 118, + genesis: { + genesis_url: + 'https://comdex-mainnet-genesis.s3.ap-southeast-1.amazonaws.com/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/comdex-official/comdex', + recommended_version: 'v0.0.4', + compatible_versions: ['v0.0.4'] + }, + daemon_name: 'comdex', + node_home: '$HOME/.comdex', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "aef35f45db2d9f5590baa088c27883ac3d5e0b33", - "address": "3.108.102.92:26656" + id: 'aef35f45db2d9f5590baa088c27883ac3d5e0b33', + address: '3.108.102.92:26656' }, { - "id": "7ca14a1d156299999eba9c394ca060368022d52f", - "address": "54.194.178.110:26656" + id: '7ca14a1d156299999eba9c394ca060368022d52f', + address: '54.194.178.110:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "f74518ad134630da8d2405570f6a3639954c985f", - "address": "65.0.173.217:26656" + id: 'f74518ad134630da8d2405570f6a3639954c985f', + address: '65.0.173.217:26656' }, { - "id": "d478882a80674fa10a32da63cc20cae13e3a2a57", - "address": "43.204.0.243:26656" + id: 'd478882a80674fa10a32da63cc20cae13e3a2a57', + address: '43.204.0.243:26656' }, { - "id": "61d743ea796ad1e1ff838c9e84adb38dfffd1d9d", - "address": "15.235.9.222:26656" + id: '61d743ea796ad1e1ff838c9e84adb38dfffd1d9d', + address: '15.235.9.222:26656' }, { - "id": "b8468f64788a17dbf34a891d9cd29d54b2b6485d", - "address": "194.163.178.25:26656" + id: 'b8468f64788a17dbf34a891d9cd29d54b2b6485d', + address: '194.163.178.25:26656' }, { - "id": "d8b74791ee56f1b345d822f62bd9bc969668d8df", - "address": "194.163.128.55:36656" + id: 'd8b74791ee56f1b345d822f62bd9bc969668d8df', + address: '194.163.128.55:36656' }, { - "id": "81444353d70bab79742b8da447a9564583ed3d6a", - "address": "164.68.105.248:26656" + id: '81444353d70bab79742b8da447a9564583ed3d6a', + address: '164.68.105.248:26656' }, { - "id": "5b1ceb8110da4e90c38c794d574eb9418a7574d6", - "address": "43.254.41.56:26656" + id: '5b1ceb8110da4e90c38c794d574eb9418a7574d6', + address: '43.254.41.56:26656' }, { - "id": "98b4522a541a69007d87141184f146a8f04be5b9", - "address": "40.112.90.170:26656" + id: '98b4522a541a69007d87141184f146a8f04be5b9', + address: '40.112.90.170:26656' }, { - "id": "9a59b6dc59903d036dd476de26e8d2b9f1acf466", - "address": "195.201.195.111:26656" + id: '9a59b6dc59903d036dd476de26e8d2b9f1acf466', + address: '195.201.195.111:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://api.comdex.audit.one/rpc", - "provider": "audit" + address: 'https://api.comdex.audit.one/rpc', + provider: 'audit' }, { - "address": "https://rpc.comdex.one", - "provider": "comdex" + address: 'https://rpc.comdex.one', + provider: 'comdex' }, { - "address": "http://comdex.node.vitwit.com:26657/", - "provider": "vitwit" + address: 'http://comdex.node.vitwit.com:26657/', + provider: 'vitwit' }, { - "address": "https://rpc-comdex.zenchainlabs.io/", - "provider": "zenchainlabs" + address: 'https://rpc-comdex.zenchainlabs.io/', + provider: 'zenchainlabs' }, { - "address": "https://comdex-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://comdex-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.comdex.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.comdex.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-comdex-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-comdex-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.comdex.audit.one/rest", - "provider": "audit" + address: 'https://api.comdex.audit.one/rest', + provider: 'audit' }, { - "address": "https://rest.comdex.one", - "provider": "comdex" + address: 'https://rest.comdex.one', + provider: 'comdex' }, { - "address": "http://comdex.node.vitwit.com:1317/", - "provider": "vitwit" + address: 'http://comdex.node.vitwit.com:1317/', + provider: 'vitwit' }, { - "address": "https://api-comdex.zenchainlabs.io/", - "provider": "zenchainlabs" + address: 'https://api-comdex.zenchainlabs.io/', + provider: 'zenchainlabs' }, { - "address": "https://lcd.comdex.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.comdex.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-comdex-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-comdex-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-comdex-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-comdex-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/comdex", - "tx_page": "https://www.mintscan.io/comdex/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/comdex', + tx_page: 'https://www.mintscan.io/comdex/txs/${txHash}' }, { - "kind": "aneka", - "url": "https://comdex.aneka.io/", - "tx_page": "https://comdex.aneka.io/txs/${txHash}" + kind: 'aneka', + url: 'https://comdex.aneka.io/', + tx_page: 'https://comdex.aneka.io/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/comdex", - "tx_page": "https://ping.pub/comdex/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/comdex', + tx_page: 'https://ping.pub/comdex/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/comdex", - "tx_page": "https://atomscan.com/comdex/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/comdex', + tx_page: 'https://atomscan.com/comdex/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cosmoshub", - "chain_id": "cosmoshub-4", - "pretty_name": "Cosmos Hub", - "status": "live", - "network_type": "mainnet", - "bech32_prefix": "cosmos", - "genesis": { - "genesis_url": "https://github.com/cosmos/mainnet/raw/master/genesis.cosmoshub-4.json.gz" - }, - "daemon_name": "gaiad", - "node_home": "$HOME/.gaia", - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uatom", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v7.0.1", - "compatible_versions": [ - "v7.0.0", - "v7.0.1" - ], - "binaries": { - "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-linux-amd64", - "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-linux-arm64", - "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-darwin-amd64", - "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'cosmoshub', + chain_id: 'cosmoshub-4', + pretty_name: 'Cosmos Hub', + status: 'live', + network_type: 'mainnet', + bech32_prefix: 'cosmos', + genesis: { + genesis_url: + 'https://github.com/cosmos/mainnet/raw/master/genesis.cosmoshub-4.json.gz' + }, + daemon_name: 'gaiad', + node_home: '$HOME/.gaia', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uatom', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/cosmos/gaia', + recommended_version: 'v7.0.1', + compatible_versions: ['v7.0.0', 'v7.0.1'], + binaries: { + 'linux/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-linux-amd64', + 'linux/arm64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-linux-arm64', + 'darwin/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-darwin-amd64', + 'windows/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.1/gaiad-v7.0.1-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "bf8328b66dceb4987e5cd94430af66045e59899f", - "address": "public-seed.cosmos.vitwit.com:26656", - "provider": "vitwit" + id: 'bf8328b66dceb4987e5cd94430af66045e59899f', + address: 'public-seed.cosmos.vitwit.com:26656', + provider: 'vitwit' }, { - "id": "cfd785a4224c7940e9a10f6c1ab24c343e923bec", - "address": "164.68.107.188:26656" + id: 'cfd785a4224c7940e9a10f6c1ab24c343e923bec', + address: '164.68.107.188:26656' }, { - "id": "d72b3011ed46d783e369fdf8ae2055b99a1e5074", - "address": "173.249.50.25:26656" + id: 'd72b3011ed46d783e369fdf8ae2055b99a1e5074', + address: '173.249.50.25:26656' }, { - "id": "ba3bacc714817218562f743178228f23678b2873", - "address": "public-seed-node.cosmoshub.certus.one:26656", - "provider": "certusone" + id: 'ba3bacc714817218562f743178228f23678b2873', + address: 'public-seed-node.cosmoshub.certus.one:26656', + provider: 'certusone' }, { - "id": "3c7cad4154967a294b3ba1cc752e40e8779640ad", - "address": "84.201.128.115:26656" + id: '3c7cad4154967a294b3ba1cc752e40e8779640ad', + address: '84.201.128.115:26656' }, { - "id": "366ac852255c3ac8de17e11ae9ec814b8c68bddb", - "address": "51.15.94.196:26656" + id: '366ac852255c3ac8de17e11ae9ec814b8c68bddb', + address: '51.15.94.196:26656' }, { - "id": "bcef90de8a83673c336bf3b3a352445b3a3a1f08", - "address": "cosmos-seed.sunshinevalidation.io:31038", - "provider": "sunshine-validation" + id: 'bcef90de8a83673c336bf3b3a352445b3a3a1f08', + address: 'cosmos-seed.sunshinevalidation.io:31038', + provider: 'sunshine-validation' }, { - "id": "3b67739570f921cc5e0db4b3efe488ce184155a9", - "address": "seeds.pupmos.network:2000", - "provider": "PUPMØS" + id: '3b67739570f921cc5e0db4b3efe488ce184155a9', + address: 'seeds.pupmos.network:2000', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "ee27245d88c632a556cf72cc7f3587380c09b469", - "address": "45.79.249.253:26656" + id: 'ee27245d88c632a556cf72cc7f3587380c09b469', + address: '45.79.249.253:26656' }, { - "id": "538ebe0086f0f5e9ca922dae0462cc87e22f0a50", - "address": "34.122.34.67:26656" + id: '538ebe0086f0f5e9ca922dae0462cc87e22f0a50', + address: '34.122.34.67:26656' }, { - "id": "d3209b9f88eec64f10555a11ecbf797bb0fa29f4", - "address": "34.125.169.233:26656" + id: 'd3209b9f88eec64f10555a11ecbf797bb0fa29f4', + address: '34.125.169.233:26656' }, { - "id": "bdc2c3d410ca7731411b7e46a252012323fbbf37", - "address": "34.83.209.166:26656" + id: 'bdc2c3d410ca7731411b7e46a252012323fbbf37', + address: '34.83.209.166:26656' }, { - "id": "585794737e6b318957088e645e17c0669f3b11fc", - "address": "54.160.123.34:26656" + id: '585794737e6b318957088e645e17c0669f3b11fc', + address: '54.160.123.34:26656' }, { - "id": "11dfe200894f38e411beca77928e9dd118e66813", - "address": "94.130.98.157:26656" + id: '11dfe200894f38e411beca77928e9dd118e66813', + address: '94.130.98.157:26656' }, { - "id": "5b4ed476e01c49b23851258d867cc0cfc0c10e58", - "address": "206.189.4.227:26656" + id: '5b4ed476e01c49b23851258d867cc0cfc0c10e58', + address: '206.189.4.227:26656' }, { - "id": "654f47a762c8f9257aef4a44c1fb5014916d8b20", - "address": "99.79.60.15:26656" + id: '654f47a762c8f9257aef4a44c1fb5014916d8b20', + address: '99.79.60.15:26656' }, { - "id": "366ac852255c3ac8de17e11ae9ec814b8c68bddb", - "address": "51.15.94.196:26656" + id: '366ac852255c3ac8de17e11ae9ec814b8c68bddb', + address: '51.15.94.196:26656' }, { - "id": "d6318b3bd51a5e2b8ed08f2e520d50289ed32bf1", - "address": "52.79.43.100:26656" + id: 'd6318b3bd51a5e2b8ed08f2e520d50289ed32bf1', + address: '52.79.43.100:26656' }, { - "id": "1bfda3d59e70290a3dada9bb809dd954371850d3", - "address": "54.180.225.240:26656" + id: '1bfda3d59e70290a3dada9bb809dd954371850d3', + address: '54.180.225.240:26656' }, { - "id": "6ee94c2093505e8790442c054e6e1e0211d36583", - "address": "44.239.140.195:26656" + id: '6ee94c2093505e8790442c054e6e1e0211d36583', + address: '44.239.140.195:26656' }, { - "id": "ec779a2741da6dd2ccdaa6dfc0bebb10e595dfa4", - "address": "50.18.113.67:26656" + id: 'ec779a2741da6dd2ccdaa6dfc0bebb10e595dfa4', + address: '50.18.113.67:26656' }, { - "id": "cfd785a4224c7940e9a10f6c1ab24c343e923bec", - "address": "164.68.107.188:26656" + id: 'cfd785a4224c7940e9a10f6c1ab24c343e923bec', + address: '164.68.107.188:26656' }, { - "id": "d72b3011ed46d783e369fdf8ae2055b99a1e5074", - "address": "173.249.50.25:26656" + id: 'd72b3011ed46d783e369fdf8ae2055b99a1e5074', + address: '173.249.50.25:26656' }, { - "id": "047f723806ee702b211e7227f89eacd829aabd86", - "address": "52.9.212.125:26656" + id: '047f723806ee702b211e7227f89eacd829aabd86', + address: '52.9.212.125:26656' }, { - "id": "b0e746acb6fbed7a0311fe21cfb2ee94581ca3bc", - "address": "51.79.21.187:26656" + id: 'b0e746acb6fbed7a0311fe21cfb2ee94581ca3bc', + address: '51.79.21.187:26656' }, { - "id": "82772547c4575c18dfe6e75aafe521cf7d4dc8de", - "address": "142.93.157.186:26656" + id: '82772547c4575c18dfe6e75aafe521cf7d4dc8de', + address: '142.93.157.186:26656' }, { - "id": "3c7cad4154967a294b3ba1cc752e40e8779640ad", - "address": "84.201.128.115:26656" + id: '3c7cad4154967a294b3ba1cc752e40e8779640ad', + address: '84.201.128.115:26656' }, { - "id": "f122129f53b7c584df6cee77716dcc636d5c5e18", - "address": "167.172.59.196:26656" + id: 'f122129f53b7c584df6cee77716dcc636d5c5e18', + address: '167.172.59.196:26656' }, { - "id": "241b17dba97a2ed3c3747d12781fb86c9706e2d4", - "address": "95.179.136.131:26656" + id: '241b17dba97a2ed3c3747d12781fb86c9706e2d4', + address: '95.179.136.131:26656' }, { - "id": "f1b16c603f3a0e59f0ce5179dc80f549a7ecd0e2", - "address": "sentries.us-east1.iqext.net:26656" + id: 'f1b16c603f3a0e59f0ce5179dc80f549a7ecd0e2', + address: 'sentries.us-east1.iqext.net:26656' }, { - "id": "64bd8eaf08b05f17ccd88425f80b59ab48934004", - "address": "157.90.18.35:26656", - "provider": "in3s.com" + id: '64bd8eaf08b05f17ccd88425f80b59ab48934004', + address: '157.90.18.35:26656', + provider: 'in3s.com' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://cosmos-rpc.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://cosmos-rpc.quickapi.com:443', + provider: 'Chainlayer' }, { - "address": "https://rpc-cosmoshub.whispernode.com", - "provider": " WhisperNode🤐" + address: 'https://rpc-cosmoshub.whispernode.com', + provider: ' WhisperNode🤐' }, { - "address": "https://rpc-cosmoshub.blockapsis.com", - "provider": "chainapsis" + address: 'https://rpc-cosmoshub.blockapsis.com', + provider: 'chainapsis' }, { - "address": "https://cosmoshub.validator.network/", - "provider": "validatornetwork" + address: 'https://cosmoshub.validator.network/', + provider: 'validatornetwork' }, { - "address": "https://rpc.cosmoshub.strange.love", - "provider": "strangelove-ventures" + address: 'https://rpc.cosmoshub.strange.love', + provider: 'strangelove-ventures' }, { - "address": "https://rpc.cosmos.network:443", - "provider": "tendermint-inc" + address: 'https://rpc.cosmos.network:443', + provider: 'tendermint-inc' }, { - "address": "https://rpc-cosmoshub.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-cosmoshub.ecostake.com', + provider: 'ecostake' }, { - "address": "https://rpc.cosmoshub.pupmos.network", - "provider": "PUPMØS" + address: 'https://rpc.cosmoshub.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://cosmos-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://cosmos-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.cosmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.cosmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-cosmoshub-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-cosmoshub-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://cosmos-lcd.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://cosmos-lcd.quickapi.com:443', + provider: 'Chainlayer' }, { - "address": "https://lcd-cosmoshub.whispernode.com", - "provider": " WhisperNode🤐" + address: 'https://lcd-cosmoshub.whispernode.com', + provider: ' WhisperNode🤐' }, { - "address": "https://lcd-cosmoshub.blockapsis.com", - "provider": "chainapsis" + address: 'https://lcd-cosmoshub.blockapsis.com', + provider: 'chainapsis' }, { - "address": "https://rest-cosmoshub.ecostake.com", - "provider": "ecostake" + address: 'https://rest-cosmoshub.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api.cosmoshub.pupmos.network", - "provider": "PUPMØS" + address: 'https://api.cosmoshub.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://lcd.cosmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.cosmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-cosmoshub-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-cosmoshub-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-cosmoshub.blockapsis.com:429", - "provider": "chainapsis" + address: 'grpc-cosmoshub.blockapsis.com:429', + provider: 'chainapsis' }, { - "address": "cosmoshub.strange.love:9090", - "provider": "strangelove" + address: 'cosmoshub.strange.love:9090', + provider: 'strangelove' }, { - "address": "grpc-cosmoshub-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-cosmoshub-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/cosmos", - "tx_page": "https://www.mintscan.io/cosmos/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/cosmos', + tx_page: 'https://www.mintscan.io/cosmos/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/cosmos", - "tx_page": "https://ping.pub/cosmos/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/cosmos', + tx_page: 'https://ping.pub/cosmos/tx/${txHash}' }, { - "kind": "bigdipper", - "url": "https://cosmos.bigdipper.live/", - "tx_page": "https://cosmos.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://cosmos.bigdipper.live/', + tx_page: 'https://cosmos.bigdipper.live/transactions/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com", - "tx_page": "https://atomscan.com/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com', + tx_page: 'https://atomscan.com/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "crescent", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Crescent", - "chain_id": "crescent-1", - "bech32_prefix": "cre", - "daemon_name": "crescentd", - "node_home": "$HOME/.crescent", - "genesis": { - "genesis_url": "https://github.com/crescent-network/launch/raw/main/mainnet/crescent-1/genesis.json.tar.gz" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ucre", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/crescent-network/crescent", - "recommended_version": "v2.1.1", - "compatible_versions": [ - "v2.1.0", - "v2.1.1" - ], - "binaries": { - "linux/amd64": "https://github.com/crescent-network/crescent/releases/download/v2.1.0/crescentd-v2.1.0-linux-amd64", - "darwin/amd64": "https://github.com/crescent-network/crescent/releases/download/v2.1.0/crescentd-v2.1.0-darwin-amd64" + $schema: '../chain.schema.json', + chain_name: 'crescent', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Crescent', + chain_id: 'crescent-1', + bech32_prefix: 'cre', + daemon_name: 'crescentd', + node_home: '$HOME/.crescent', + genesis: { + genesis_url: + 'https://github.com/crescent-network/launch/raw/main/mainnet/crescent-1/genesis.json.tar.gz' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ucre', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/crescent-network/crescent', + recommended_version: 'v2.1.1', + compatible_versions: ['v2.1.0', 'v2.1.1'], + binaries: { + 'linux/amd64': + 'https://github.com/crescent-network/crescent/releases/download/v2.1.0/crescentd-v2.1.0-linux-amd64', + 'darwin/amd64': + 'https://github.com/crescent-network/crescent/releases/download/v2.1.0/crescentd-v2.1.0-darwin-amd64' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "929f22a7b04ff438da9edcfebd8089908239de44", - "address": "18.180.232.184:26656", - "provider": "crescent" + id: '929f22a7b04ff438da9edcfebd8089908239de44', + address: '18.180.232.184:26656', + provider: 'crescent' }, { - "id": "c312d41ef52b7c890674e808ef28c57a7746057c", - "address": "seeds.pupmos.network:2003", - "provider": "PUPMØS" + id: 'c312d41ef52b7c890674e808ef28c57a7746057c', + address: 'seeds.pupmos.network:2003', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b34115ba926eb12059ca0ade4d1013cac2f8d289", - "address": "crescent-mainnet-01.01node.com:26656", - "provider": "01node" + id: 'b34115ba926eb12059ca0ade4d1013cac2f8d289', + address: 'crescent-mainnet-01.01node.com:26656', + provider: '01node' }, { - "id": "06415494b86316c55245d162da065c3c0fee83fc", - "address": "172.104.108.21:26656", - "provider": "Forbole" + id: '06415494b86316c55245d162da065c3c0fee83fc', + address: '172.104.108.21:26656', + provider: 'Forbole' }, { - "id": "3bcffbcb11e96edc84c04a5628639f5ed94b9db2", - "address": "128.0.51.5:26656", - "provider": "Dokia-capital" + id: '3bcffbcb11e96edc84c04a5628639f5ed94b9db2', + address: '128.0.51.5:26656', + provider: 'Dokia-capital' }, { - "id": "68787e8412ab97d99af7595c46514b9ab4b3df45", - "address": "54.250.202.17:26656", - "provider": "DSRV" + id: '68787e8412ab97d99af7595c46514b9ab4b3df45', + address: '54.250.202.17:26656', + provider: 'DSRV' }, { - "id": "3b468af82b8ffa049b3e1f67dc4615a31ec8f01e", - "address": "50.21.167.131:26656", - "provider": "Simply Staking" + id: '3b468af82b8ffa049b3e1f67dc4615a31ec8f01e', + address: '50.21.167.131:26656', + provider: 'Simply Staking' }, { - "id": "dc7c0e331165ba047cc6b304ce467ee25518e0f9", - "address": "34.85.89.74:26656", - "provider": "Strangelove" + id: 'dc7c0e331165ba047cc6b304ce467ee25518e0f9', + address: '34.85.89.74:26656', + provider: 'Strangelove' }, { - "id": "b840926fb6a2bd04fc70e501002f9286655c9179", - "address": "52.199.91.143:30732", - "provider": "0base.vc" + id: 'b840926fb6a2bd04fc70e501002f9286655c9179', + address: '52.199.91.143:30732', + provider: '0base.vc' }, { - "id": "d7556e41ba2f333379f6d87b1af3cce2ca545f79", - "address": "34.88.102.246:26656", - "provider": "P2P validator" + id: 'd7556e41ba2f333379f6d87b1af3cce2ca545f79', + address: '34.88.102.246:26656', + provider: 'P2P validator' }, { - "id": "4293ce6b47ee2603236437ab44dc499519c71e62", - "address": "45.76.97.48:26656", - "provider": "Nodes.Guru" + id: '4293ce6b47ee2603236437ab44dc499519c71e62', + address: '45.76.97.48:26656', + provider: 'Nodes.Guru' }, { - "id": "24be64cd648958d9f685f95516cb3b248537c386", - "address": "52.197.140.210:26656", - "provider": "Cosmostation" + id: '24be64cd648958d9f685f95516cb3b248537c386', + address: '52.197.140.210:26656', + provider: 'Cosmostation' }, { - "id": "0ed5ed53ec3542202d02d0d47ac04a2823188fc2", - "address": "52.194.172.170:26656", - "provider": "Provalidator" + id: '0ed5ed53ec3542202d02d0d47ac04a2823188fc2', + address: '52.194.172.170:26656', + provider: 'Provalidator' }, { - "id": "c64f03deb3127d41401ef57d9762c64673f225f3", - "address": "172.105.221.43:46656", - "provider": "in3s.com" + id: 'c64f03deb3127d41401ef57d9762c64673f225f3', + address: '172.105.221.43:46656', + provider: 'in3s.com' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://mainnet.crescent.network:26657", - "provider": "crescent" + address: 'https://mainnet.crescent.network:26657', + provider: 'crescent' }, { - "address": "https://crescent-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://crescent-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.crescent.pupmos.network", - "provider": "PUPMØS" + address: 'https://rpc.crescent.pupmos.network', + provider: 'PUPMØS' } ], - "rest": [ + rest: [ { - "address": "https://mainnet.crescent.network:1317", - "provider": "crescent" + address: 'https://mainnet.crescent.network:1317', + provider: 'crescent' }, { - "address": "https://api.crescent.pupmos.network", - "provider": "PUPMØS" + address: 'https://api.crescent.pupmos.network', + provider: 'PUPMØS' } ], - "grpc": [ + grpc: [ { - "address": "mainnet.crescent.network:9090", - "provider": "crescent" + address: 'mainnet.crescent.network:9090', + provider: 'crescent' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/crescent", - "tx_page": "https://www.mintscan.io/crescent/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/crescent', + tx_page: 'https://www.mintscan.io/crescent/txs/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/crescent", - "tx_page": "https://ping.pub/crescent/tx/{txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/crescent', + tx_page: 'https://ping.pub/crescent/tx/{txHash}' }, { - "kind": "explorers.guru", - "url": "https://crescent.explorers.guru", - "tx_page": "https://crescent.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://crescent.explorers.guru', + tx_page: 'https://crescent.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/crescent", - "tx_page": "https://atomscan.com/crescent/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/crescent', + tx_page: 'https://atomscan.com/crescent/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cronos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Cronos", - "chain_id": "cronosmainnet_25-1", - "bech32_prefix": "crc", - "node_home": "$HOME/.cronos", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json" - }, - "slip44": 60, - "fees": { - "fee_tokens": [ - { - "denom": "basecro" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/crypto-org-chain/cronos", - "recommended_version": "v0.7.0", - "compatible_versions": [ - "v0.7.0" - ], - "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Windows_x86_64.zip" + $schema: '../chain.schema.json', + chain_name: 'cronos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Cronos', + chain_id: 'cronosmainnet_25-1', + bech32_prefix: 'crc', + node_home: '$HOME/.cronos', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/crypto-org-chain/cronos-mainnet/master/cronosmainnet_25-1/genesis.json' + }, + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'basecro' + } + ] + }, + codebase: { + git_repo: 'https://github.com/crypto-org-chain/cronos', + recommended_version: 'v0.7.0', + compatible_versions: ['v0.7.0'], + binaries: { + 'linux/amd64': + 'https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Linux_x86_64.tar.gz', + 'linux/arm64': + 'https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Darwin_x86_64.tar.gz', + 'darwin/arm64': + 'https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/crypto-org-chain/cronos/releases/download/v0.7.0/cronos_0.7.0_Windows_x86_64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "0d5cf1394a1cfde28dc8f023567222abc0f47534", - "address": "cronos-seed-0.crypto.org:26656", - "provider": "crypto-org" + id: '0d5cf1394a1cfde28dc8f023567222abc0f47534', + address: 'cronos-seed-0.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "3032073adc06d710dd512240281637c1bd0c8a7b", - "address": "cronos-seed-1.crypto.org:26656", - "provider": "crypto-org" + id: '3032073adc06d710dd512240281637c1bd0c8a7b', + address: 'cronos-seed-1.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "04f43116b4c6c70054d9c2b7485383df5b1ed1da", - "address": "cronos-seed-2.crypto.org:26656", - "provider": "crypto-org" + id: '04f43116b4c6c70054d9c2b7485383df5b1ed1da', + address: 'cronos-seed-2.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "337377dcda43d79c537d2c4d93ad3b698ce9452e", - "address": "bd-cronos-mainnet-seed-node-01.bdnodes.net:26656", - "provider": "Blockdaemon.com" + id: '337377dcda43d79c537d2c4d93ad3b698ce9452e', + address: 'bd-cronos-mainnet-seed-node-01.bdnodes.net:26656', + provider: 'Blockdaemon.com' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "0d5cf1394a1cfde28dc8f023567222abc0f47534", - "address": "cronos-seed-0.crypto.org:26656", - "provider": "crypto-org" + id: '0d5cf1394a1cfde28dc8f023567222abc0f47534', + address: 'cronos-seed-0.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "3032073adc06d710dd512240281637c1bd0c8a7b", - "address": "cronos-seed-1.crypto.org:26656", - "provider": "crypto-org" + id: '3032073adc06d710dd512240281637c1bd0c8a7b', + address: 'cronos-seed-1.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "04f43116b4c6c70054d9c2b7485383df5b1ed1da", - "address": "cronos-seed-2.crypto.org:26656", - "provider": "crypto-org" + id: '04f43116b4c6c70054d9c2b7485383df5b1ed1da', + address: 'cronos-seed-2.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "337377dcda43d79c537d2c4d93ad3b698ce9452e", - "address": "bd-cronos-mainnet-seed-node-01.bdnodes.net:26656", - "provider": "Blockdaemon.com" + id: '337377dcda43d79c537d2c4d93ad3b698ce9452e', + address: 'bd-cronos-mainnet-seed-node-01.bdnodes.net:26656', + provider: 'Blockdaemon.com' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.cronos.org/", - "provider": "crypto.org" + address: 'https://rpc.cronos.org/', + provider: 'crypto.org' } ], - "rest": [ + rest: [ { - "address": "https://rest.cronos.org/", - "provider": "crypto.org" + address: 'https://rest.cronos.org/', + provider: 'crypto.org' } ], - "grpc": [ + grpc: [ { - "address": "http://grpc.cronos.org/", - "provider": "crypto.org" + address: 'http://grpc.cronos.org/', + provider: 'crypto.org' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://evm.cronos.org/", - "provider": "crypto.org" + address: 'https://evm.cronos.org/', + provider: 'crypto.org' } ] }, - "explorers": [ + explorers: [ { - "kind": "cronoscan", - "url": "https://cronoscan.com", - "tx_page": "https://cronoscan.com/tx/${txHash}" + kind: 'cronoscan', + url: 'https://cronoscan.com', + tx_page: 'https://cronoscan.com/tx/${txHash}' }, { - "kind": "crypto-org", - "url": "https://cronos.org/explorer", - "tx_page": "https://cronos.org/explorer/tx/${txHash}" + kind: 'crypto-org', + url: 'https://cronos.org/explorer', + tx_page: 'https://cronos.org/explorer/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cryptoorgchain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Crypto.org", - "chain_id": "crypto-org-chain-mainnet-1", - "bech32_prefix": "cro", - "node_home": "$HOME/.chain-maind", - "genesis": { - "genesis_url": "https://github.com/crypto-org-chain/mainnet/raw/main/crypto-org-chain-mainnet-1/genesis.json" - }, - "slip44": 394, - "fees": { - "fee_tokens": [ - { - "denom": "basecro" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/crypto-org-chain/chain-main", - "recommended_version": "v3.3.3", - "compatible_versions": [ - "v3.3.3" - ], - "binaries": { - "linux/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Windows_x86_64.zip" + $schema: '../chain.schema.json', + chain_name: 'cryptoorgchain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Crypto.org', + chain_id: 'crypto-org-chain-mainnet-1', + bech32_prefix: 'cro', + node_home: '$HOME/.chain-maind', + genesis: { + genesis_url: + 'https://github.com/crypto-org-chain/mainnet/raw/main/crypto-org-chain-mainnet-1/genesis.json' + }, + slip44: 394, + fees: { + fee_tokens: [ + { + denom: 'basecro' + } + ] + }, + codebase: { + git_repo: 'https://github.com/crypto-org-chain/chain-main', + recommended_version: 'v3.3.3', + compatible_versions: ['v3.3.3'], + binaries: { + 'linux/amd64': + 'https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Linux_x86_64.tar.gz', + 'linux/arm64': + 'https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Darwin_x86_64.tar.gz', + 'darwin/arm64': + 'https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/crypto-org-chain/chain-main/releases/download/v3.3.3/chain-main_3.3.3_Windows_x86_64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "87c3adb7d8f649c51eebe0d3335d8f9e28c362f2", - "address": "seed-0.crypto.org:26656", - "provider": "crypto-org" + id: '87c3adb7d8f649c51eebe0d3335d8f9e28c362f2', + address: 'seed-0.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "e1d7ff02b78044795371beb1cd5fb803f9389256", - "address": "seed-1.crypto.org:26656", - "provider": "crypto-org" + id: 'e1d7ff02b78044795371beb1cd5fb803f9389256', + address: 'seed-1.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "2c55809558a4e491e9995962e10c026eb9014655", - "address": "seed-2.crypto.org:26656", - "provider": "crypto-org" + id: '2c55809558a4e491e9995962e10c026eb9014655', + address: 'seed-2.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "8dc1863d1d23cf9ad7cbea215c19bcbe8bf39702", - "address": "p2p.baaa7e56-cc71-4ae4-b4b3-c6a9d4a9596a.cryptodotorg.bison.run:26656", - "provider": "bison-trails" + id: '8dc1863d1d23cf9ad7cbea215c19bcbe8bf39702', + address: + 'p2p.baaa7e56-cc71-4ae4-b4b3-c6a9d4a9596a.cryptodotorg.bison.run:26656', + provider: 'bison-trails' }, { - "id": "8a7922f3fb3fb4cfe8cb57281b9d159ca7fd29c6", - "address": "p2p.aef59b2a-d77e-4922-817a-d1eea614aef4.cryptodotorg.bison.run:26656", - "provider": "bison-trails" + id: '8a7922f3fb3fb4cfe8cb57281b9d159ca7fd29c6', + address: + 'p2p.aef59b2a-d77e-4922-817a-d1eea614aef4.cryptodotorg.bison.run:26656', + provider: 'bison-trails' }, { - "id": "494d860a2869b90c458b07d4da890539272785c9", - "address": "p2p.fabc23d9-e0a1-4ced-8cd7-eb3efd6d9ef3.cryptodotorg.bison.run:26656", - "provider": "bison-trails" + id: '494d860a2869b90c458b07d4da890539272785c9', + address: + 'p2p.fabc23d9-e0a1-4ced-8cd7-eb3efd6d9ef3.cryptodotorg.bison.run:26656', + provider: 'bison-trails' }, { - "id": "dc2540dabadb8302da988c95a3c872191061aed2", - "address": "p2p.7d1b53c0-b86b-44c8-8c02-e3b0e88a4bf7.cryptodotorg.herd.run:26656", - "provider": "bison-trails" + id: 'dc2540dabadb8302da988c95a3c872191061aed2', + address: + 'p2p.7d1b53c0-b86b-44c8-8c02-e3b0e88a4bf7.cryptodotorg.herd.run:26656', + provider: 'bison-trails' }, { - "id": "33b15c14f54f71a4a923ac264761eb3209784cf2", - "address": "p2p.0d20d4b3-6890-4f00-b9f3-596ad3df6533.cryptodotorg.herd.run:26656", - "provider": "bison-trails" + id: '33b15c14f54f71a4a923ac264761eb3209784cf2', + address: + 'p2p.0d20d4b3-6890-4f00-b9f3-596ad3df6533.cryptodotorg.herd.run:26656', + provider: 'bison-trails' }, { - "id": "d2862ef8f86f9976daa0c6f59455b2b1452dc53b", - "address": "p2p.a088961f-5dfd-4007-a15c-3a706d4be2c0.cryptodotorg.herd.run:26656", - "provider": "bison-trails" + id: 'd2862ef8f86f9976daa0c6f59455b2b1452dc53b', + address: + 'p2p.a088961f-5dfd-4007-a15c-3a706d4be2c0.cryptodotorg.herd.run:26656', + provider: 'bison-trails' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "87c3adb7d8f649c51eebe0d3335d8f9e28c362f2", - "address": "seed-0.crypto.org:26656", - "provider": "crypto-org" + id: '87c3adb7d8f649c51eebe0d3335d8f9e28c362f2', + address: 'seed-0.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "e1d7ff02b78044795371beb1cd5fb803f9389256", - "address": "seed-1.crypto.org:26656", - "provider": "crypto-org" + id: 'e1d7ff02b78044795371beb1cd5fb803f9389256', + address: 'seed-1.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "2c55809558a4e491e9995962e10c026eb9014655", - "address": "seed-2.crypto.org:26656", - "provider": "crypto-org" + id: '2c55809558a4e491e9995962e10c026eb9014655', + address: 'seed-2.crypto.org:26656', + provider: 'crypto-org' }, { - "id": "8dc1863d1d23cf9ad7cbea215c19bcbe8bf39702", - "address": "p2p.baaa7e56-cc71-4ae4-b4b3-c6a9d4a9596a.cryptodotorg.bison.run:26656", - "provider": "bison-trails" + id: '8dc1863d1d23cf9ad7cbea215c19bcbe8bf39702', + address: + 'p2p.baaa7e56-cc71-4ae4-b4b3-c6a9d4a9596a.cryptodotorg.bison.run:26656', + provider: 'bison-trails' }, { - "id": "8a7922f3fb3fb4cfe8cb57281b9d159ca7fd29c6", - "address": "p2p.aef59b2a-d77e-4922-817a-d1eea614aef4.cryptodotorg.bison.run:26656", - "provider": "bison-trails" + id: '8a7922f3fb3fb4cfe8cb57281b9d159ca7fd29c6', + address: + 'p2p.aef59b2a-d77e-4922-817a-d1eea614aef4.cryptodotorg.bison.run:26656', + provider: 'bison-trails' }, { - "id": "d2862ef8f86f9976daa0c6f59455b2b1452dc53b", - "address": "p2p.a088961f-5dfd-4007-a15c-3a706d4be2c0.cryptodotorg.herd.run:26656", - "provider": "bison-trails" + id: 'd2862ef8f86f9976daa0c6f59455b2b1452dc53b', + address: + 'p2p.a088961f-5dfd-4007-a15c-3a706d4be2c0.cryptodotorg.herd.run:26656', + provider: 'bison-trails' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://mainnet.crypto.org/", - "provider": "crypto.org" + address: 'https://mainnet.crypto.org/', + provider: 'crypto.org' }, { - "address": "https://rpc-crypto-org.keplr.app/", - "provider": "chainapsis" + address: 'https://rpc-crypto-org.keplr.app/', + provider: 'chainapsis' }, { - "address": "https://rpc-cryptoorgchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-cryptoorgchain-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc-cryptoorgchain.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-cryptoorgchain.ecostake.com', + provider: 'ecostake' } ], - "rest": [ + rest: [ { - "address": "https://mainnet.crypto.org/", - "provider": "crypto.org" + address: 'https://mainnet.crypto.org/', + provider: 'crypto.org' }, { - "address": "https://lcd-crypto-org.keplr.app/", - "provider": "chainapsis" + address: 'https://lcd-crypto-org.keplr.app/', + provider: 'chainapsis' }, { - "address": "https://api-cryptoorgchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-cryptoorgchain-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rest-cryptoorgchain.ecostake.com", - "provider": "ecostake" + address: 'https://rest-cryptoorgchain.ecostake.com', + provider: 'ecostake' } ], - "grpc": [ + grpc: [ { - "address": "grpc-cryptoorgchain-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-cryptoorgchain-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/crypto-org", - "tx_page": "https://www.mintscan.io/crypto-org/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/crypto-org', + tx_page: 'https://www.mintscan.io/crypto-org/txs/${txHash}' }, { - "kind": "crypto.org", - "url": "https://crypto.org/explorer", - "tx_page": "https://crypto.org/explorer/tx/${txHash}" + kind: 'crypto.org', + url: 'https://crypto.org/explorer', + tx_page: 'https://crypto.org/explorer/tx/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/crypto-com-chain", - "tx_page": "https://ping.pub/crypto-com-chain/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/crypto-com-chain', + tx_page: 'https://ping.pub/crypto-com-chain/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "cudos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Cudos", - "chain_id": "cudos-1", - "bech32_prefix": "cudos", - "genesis": { - "genesis_url": "https://github.com/CudoVentures/cudos-builders/blob/v1.0.0/docker/config/genesis.mainnet.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/CudoVentures/cudos-builders", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ] + $schema: '../chain.schema.json', + chain_name: 'cudos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Cudos', + chain_id: 'cudos-1', + bech32_prefix: 'cudos', + genesis: { + genesis_url: + 'https://github.com/CudoVentures/cudos-builders/blob/v1.0.0/docker/config/genesis.mainnet.json' }, - "peers": { - "seeds": [ + key_algos: ['secp256k1'], + slip44: 118, + codebase: { + git_repo: 'https://github.com/CudoVentures/cudos-builders', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'] + }, + peers: { + seeds: [ { - "id": "ff3f0f7b1eecc6844e6512428ef4c7a9448452a8", - "address": "cluster-1-seed-1.hosts.cudos.org:26656", - "provider": "cudo" + id: 'ff3f0f7b1eecc6844e6512428ef4c7a9448452a8', + address: 'cluster-1-seed-1.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "6d9beb4d44a530a4a10ebe78ed7717f6083d0c4b", - "address": "cluster-2-seed-1.hosts.cudos.org:26656", - "provider": "cudo" + id: '6d9beb4d44a530a4a10ebe78ed7717f6083d0c4b', + address: 'cluster-2-seed-1.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "e0f3bcc574ef66ae4561fad0772a4fd1959969af", - "address": "cluster-3-seed-1.hosts.cudos.org:26656", - "provider": "cudo" + id: 'e0f3bcc574ef66ae4561fad0772a4fd1959969af', + address: 'cluster-3-seed-1.hosts.cudos.org:26656', + provider: 'cudo' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "f196d7cc811a5ab99e4c5dd5c7f3c0135509d1c4", - "address": "cluster-1-sentry-1.hosts.cudos.org:26656", - "provider": "cudo" + id: 'f196d7cc811a5ab99e4c5dd5c7f3c0135509d1c4', + address: 'cluster-1-sentry-1.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "2cc0a12ff1038509b2ed64719fcddfdded9a04ad", - "address": "cluster-2-sentry-1.hosts.cudos.org:26656", - "provider": "cudo" + id: '2cc0a12ff1038509b2ed64719fcddfdded9a04ad', + address: 'cluster-2-sentry-1.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "ab1ec4fb29afc9c0f5a04b7cbd1220b8b30ffea4", - "address": "cluster-3-sentry-1.hosts.cudos.org:26656", - "provider": "cudo" + id: 'ab1ec4fb29afc9c0f5a04b7cbd1220b8b30ffea4', + address: 'cluster-3-sentry-1.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "2958b15e9102cb556cc0f1f1bbbfdfc922a16069", - "address": "mainnet-full-node-01.hosts.cudos.org:26656", - "provider": "cudo" + id: '2958b15e9102cb556cc0f1f1bbbfdfc922a16069', + address: 'mainnet-full-node-01.hosts.cudos.org:26656', + provider: 'cudo' }, { - "id": "eb14f9142ad313297653f84754b1caf60efe75ac", - "address": "mainnet-full-node-02.hosts.cudos.org:26656", - "provider": "cudo" + id: 'eb14f9142ad313297653f84754b1caf60efe75ac', + address: 'mainnet-full-node-02.hosts.cudos.org:26656', + provider: 'cudo' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://mainnet-full-node-01.hosts.cudos.org:26657", - "provider": "cudo" + address: 'http://mainnet-full-node-01.hosts.cudos.org:26657', + provider: 'cudo' } ], - "rest": [ + rest: [ { - "address": "http://mainnet-full-node-01.hosts.cudos.org:1317", - "provider": "cudo" + address: 'http://mainnet-full-node-01.hosts.cudos.org:1317', + provider: 'cudo' } ], - "grpc": [ + grpc: [ { - "address": "mainnet-full-node-01.hosts.cudos.org:9090", - "provider": "cudo" + address: 'mainnet-full-node-01.hosts.cudos.org:9090', + provider: 'cudo' } ] }, - "explorers": [ + explorers: [ { - "kind": "big-dipper-v2", - "url": "https://explorer.cudos.org/", - "tx_page": "https://explorer.cudos.org/transactions/${txHash}", - "account_page": "https://explorer.cudos.org/accounts/${accountAddress}" + kind: 'big-dipper-v2', + url: 'https://explorer.cudos.org/', + tx_page: 'https://explorer.cudos.org/transactions/${txHash}', + account_page: 'https://explorer.cudos.org/accounts/${accountAddress}' }, { - "kind": "big-dipper-v1", - "url": "https://explorer-v1.cudos.org/", - "tx_page": "https://explorer-v1.cudos.org/transactions/${txHash}", - "account_page": "https://explorer-v1.cudos.org/account/${accountAddress}" + kind: 'big-dipper-v1', + url: 'https://explorer-v1.cudos.org/', + tx_page: 'https://explorer-v1.cudos.org/transactions/${txHash}', + account_page: 'https://explorer-v1.cudos.org/account/${accountAddress}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/cudos", - "tx_page": "https://www.mintscan.io/cudos/txs/${txHash}", - "account_page": "https://www.mintscan.io/cudos/account/${accountAddress}" + kind: 'mintscan', + url: 'https://www.mintscan.io/cudos', + tx_page: 'https://www.mintscan.io/cudos/txs/${txHash}', + account_page: 'https://www.mintscan.io/cudos/account/${accountAddress}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/cudos", - "tx_page": "https://atomscan.com/cudos/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/cudos', + tx_page: 'https://atomscan.com/cudos/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "decentr", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Decentr", - "chain_id": "mainnet-3", - "bech32_prefix": "decentr", - "daemon_name": "decentrd", - "node_home": "$HOME/.decentr", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/Decentr-net/mainnets/master/3.0/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'decentr', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Decentr', + chain_id: 'mainnet-3', + bech32_prefix: 'decentr', + daemon_name: 'decentrd', + node_home: '$HOME/.decentr', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/Decentr-net/mainnets/master/3.0/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "udec", - "fixed_min_gas_price": 0.025 + denom: 'udec', + fixed_min_gas_price: 0.025 } ] }, - "codebase": { - "git_repo": "https://github.com/Decentr-net/decentr", - "recommended_version": "v1.5.7", - "compatible_versions": [ - "v1.5.7" - ] + codebase: { + git_repo: 'https://github.com/Decentr-net/decentr', + recommended_version: 'v1.5.7', + compatible_versions: ['v1.5.7'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "7708addcfb9d4ff394b18fbc6c016b4aaa90a10a", - "address": "ares.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '7708addcfb9d4ff394b18fbc6c016b4aaa90a10a', + address: 'ares.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "8a3485f940c3b2b9f0dd979a16ea28de154f14dd", - "address": "calliope.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '8a3485f940c3b2b9f0dd979a16ea28de154f14dd', + address: 'calliope.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "87490fd832f3226ac5d090f6a438d402670881d0", - "address": "euterpe.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '87490fd832f3226ac5d090f6a438d402670881d0', + address: 'euterpe.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "3261bff0b7c16dcf6b5b8e62dd54faafbfd75415", - "address": "hera.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '3261bff0b7c16dcf6b5b8e62dd54faafbfd75415', + address: 'hera.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "c37f32e202e13b0725515570f794b68573a6f58c", - "address": "hera.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: 'c37f32e202e13b0725515570f794b68573a6f58c', + address: 'hera.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "5f3cfa2e3d5ed2c2ef699c8593a3d93c902406a9", - "address": "hermes.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '5f3cfa2e3d5ed2c2ef699c8593a3d93c902406a9', + address: 'hermes.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "a529801b5390f56d5c280eaff4ae95b7163e385f", - "address": "melpomene.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: 'a529801b5390f56d5c280eaff4ae95b7163e385f', + address: 'melpomene.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "385129dbe71bceff982204afa11ed7fa0ee39430", - "address": "poseidon.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '385129dbe71bceff982204afa11ed7fa0ee39430', + address: 'poseidon.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "35a934228c32ad8329ac917613a25474cc79bc08", - "address": "terpsichore.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '35a934228c32ad8329ac917613a25474cc79bc08', + address: 'terpsichore.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "0fd62bcd1de6f2e3cfc15852cdde9f3f8a7987e4", - "address": "thalia.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: '0fd62bcd1de6f2e3cfc15852cdde9f3f8a7987e4', + address: 'thalia.mainnet.decentr.xyz:26656', + provider: 'decentr' }, { - "id": "bd99693d0dbc855b0367f781fb48bf1ca6a6a58b", - "address": "zeus.mainnet.decentr.xyz:26656", - "provider": "decentr" + id: 'bd99693d0dbc855b0367f781fb48bf1ca6a6a58b', + address: 'zeus.mainnet.decentr.xyz:26656', + provider: 'decentr' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "aa02e5c680081cd52032ee26648fa71c0ce1917b", - "address": "185.163.64.156:29656", - "provider": "3Tekos" + id: 'aa02e5c680081cd52032ee26648fa71c0ce1917b', + address: '185.163.64.156:29656', + provider: '3Tekos' }, { - "id": "83a9601e707ec12fc646586b9e13021a234d5eec", - "address": "207.180.254.180:26656", - "provider": "Badgerbite" + id: '83a9601e707ec12fc646586b9e13021a234d5eec', + address: '207.180.254.180:26656', + provider: 'Badgerbite' }, { - "id": "b8c14fa7676da89aed7b0fd46ed5c4c866d0a3b7", - "address": "154.12.240.174:26656", - "provider": "Badgerbite" + id: 'b8c14fa7676da89aed7b0fd46ed5c4c866d0a3b7', + address: '154.12.240.174:26656', + provider: 'Badgerbite' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://poseidon.mainnet.decentr.xyz", - "provider": "decentr" + address: 'https://poseidon.mainnet.decentr.xyz', + provider: 'decentr' }, { - "address": "https://ares.mainnet.decentr.xyz", - "provider": "decentr" + address: 'https://ares.mainnet.decentr.xyz', + provider: 'decentr' } ], - "rest": [ + rest: [ { - "address": "https://rest.mainnet.decentr.xyz", - "provider": "decentr" + address: 'https://rest.mainnet.decentr.xyz', + provider: 'decentr' } ] }, - "explorers": [ + explorers: [ { - "kind": "decentr.net", - "url": "https://explorer.decentr.net", - "tx_page": "https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet" + kind: 'decentr.net', + url: 'https://explorer.decentr.net', + tx_page: + 'https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet' }, { - "kind": "ping.pub", - "url": "https://ping.pub/decentr/", - "tx_page": "https://ping.pub/decentr/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/decentr/', + tx_page: 'https://ping.pub/decentr/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/decentr", - "tx_page": "https://atomscan.com/decentr/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/decentr', + tx_page: 'https://atomscan.com/decentr/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "desmos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Desmos", - "chain_id": "desmos-mainnet", - "bech32_prefix": "desmos", - "daemon_name": "desmos", - "node_home": "$HOME/.desmos", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/desmos-labs/mainnet/main/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 852, - "fees": { - "fee_tokens": [ - { - "denom": "udsm", - "fixed_min_gas_price": 0.001 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/desmos-labs/desmos", - "recommended_version": "v2.3.1", - "compatible_versions": [ - "v2.3.1" - ], - "binaries": { - "linux/amd64": "https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-linux-amd64", - "linux/arm64": "https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-linux-arm64", - "darwin/amd64": "https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-darwin-amd64", - "windows/amd64": "https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'desmos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Desmos', + chain_id: 'desmos-mainnet', + bech32_prefix: 'desmos', + daemon_name: 'desmos', + node_home: '$HOME/.desmos', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/desmos-labs/mainnet/main/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 852, + fees: { + fee_tokens: [ + { + denom: 'udsm', + fixed_min_gas_price: 0.001 + } + ] + }, + codebase: { + git_repo: 'https://github.com/desmos-labs/desmos', + recommended_version: 'v2.3.1', + compatible_versions: ['v2.3.1'], + binaries: { + 'linux/amd64': + 'https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-linux-amd64', + 'linux/arm64': + 'https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-linux-arm64', + 'darwin/amd64': + 'https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-darwin-amd64', + 'windows/amd64': + 'https://github.com/desmos-labs/desmos/releases/download/v2.3.1/desmos-2.3.1-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "9bde6ab4e0e00f721cc3f5b4b35f3a0e8979fab5", - "address": "seed-1.mainnet.desmos.network:26656", - "provider": "desmos" + id: '9bde6ab4e0e00f721cc3f5b4b35f3a0e8979fab5', + address: 'seed-1.mainnet.desmos.network:26656', + provider: 'desmos' }, { - "id": "5c86915026093f9a2f81e5910107cf14676b48fc", - "address": "seed-2.mainnet.desmos.network:26656", - "provider": "desmos" + id: '5c86915026093f9a2f81e5910107cf14676b48fc', + address: 'seed-2.mainnet.desmos.network:26656', + provider: 'desmos' }, { - "id": "45105c7241068904bdf5a32c86ee45979794637f", - "address": "seed-3.mainnet.desmos.network:26656", - "provider": "desmos" + id: '45105c7241068904bdf5a32c86ee45979794637f', + address: 'seed-3.mainnet.desmos.network:26656', + provider: 'desmos' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.mainnet.desmos.network", - "provider": "desmos" + address: 'https://rpc.mainnet.desmos.network', + provider: 'desmos' }, { - "address": "https://rpc.desmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.desmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://desmosrpc.panthea.eu", - "provider": "Panthea EU" + address: 'https://desmosrpc.panthea.eu', + provider: 'Panthea EU' } ], - "rest": [ + rest: [ { - "address": "https://api.mainnet.desmos.network", - "provider": "desmos" + address: 'https://api.mainnet.desmos.network', + provider: 'desmos' }, { - "address": "https://lcd.desmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.desmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://desmosapi.panthea.eu", - "provider": "Panthea EU" + address: 'https://desmosapi.panthea.eu', + provider: 'Panthea EU' } ] }, - "explorers": [ + explorers: [ { - "kind": "big-dipper", - "url": "https://explorer.desmos.network", - "tx_page": "https://explorer.desmos.network/transactions/${txHash}" + kind: 'big-dipper', + url: 'https://explorer.desmos.network', + tx_page: 'https://explorer.desmos.network/transactions/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/desmos", - "tx_page": "https://www.mintscan.io/desmos/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/desmos', + tx_page: 'https://www.mintscan.io/desmos/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/desmos", - "tx_page": "https://ping.pub/desmos/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/desmos', + tx_page: 'https://ping.pub/desmos/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/desmos", - "tx_page": "https://atomscan.com/desmos/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/desmos', + tx_page: 'https://atomscan.com/desmos/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "dig", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Dig Chain", - "chain_id": "dig-1", - "bech32_prefix": "dig", - "daemon_name": "digd", - "node_home": "$HOME/.dig", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/notional-labs/dig/master/networks/mainnets/dig-1/genesis.json" - }, - "key_algos": [ - "secp256k1", - "ethsecp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'dig', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Dig Chain', + chain_id: 'dig-1', + bech32_prefix: 'dig', + daemon_name: 'digd', + node_home: '$HOME/.dig', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/notional-labs/dig/master/networks/mainnets/dig-1/genesis.json' + }, + key_algos: ['secp256k1', 'ethsecp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "udig" + denom: 'udig' } ] }, - "codebase": { - "git_repo": "https://github.com/notional-labs/dig", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ] + codebase: { + git_repo: 'https://github.com/notional-labs/dig', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "37b2839da4463b22a51b1fe20d97992164270eba", - "address": "62.171.157.192:26656" + id: '37b2839da4463b22a51b1fe20d97992164270eba', + address: '62.171.157.192:26656' }, { - "id": "e2c96b96d4c3a461fb246edac3b3cdbf47768838", - "address": "65.21.202.37:6969" + id: 'e2c96b96d4c3a461fb246edac3b3cdbf47768838', + address: '65.21.202.37:6969' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "33f4788e1c6a378b929c66f31e8d253b9fd47c47", - "address": "194.163.154.251:26656" + id: '33f4788e1c6a378b929c66f31e8d253b9fd47c47', + address: '194.163.154.251:26656' }, { - "id": "64eccffdc60a206227032d3a021fbf9dfc686a17", - "address": "194.163.156.84:26656" + id: '64eccffdc60a206227032d3a021fbf9dfc686a17', + address: '194.163.156.84:26656' }, { - "id": "be7598b2d56fb42a27821259ad14aff24c40f3d2", - "address": "172.16.152.118:26656" + id: 'be7598b2d56fb42a27821259ad14aff24c40f3d2', + address: '172.16.152.118:26656' }, { - "id": "f446e37e47297ce9f8951957d17a2ae9a16db0b8", - "address": "137.184.67.162:26656" + id: 'f446e37e47297ce9f8951957d17a2ae9a16db0b8', + address: '137.184.67.162:26656' }, { - "id": "ab2fa2789f481e2856a5d83a2c3028c5b215421d", - "address": "144.91.117.49:26656" + id: 'ab2fa2789f481e2856a5d83a2c3028c5b215421d', + address: '144.91.117.49:26656' }, { - "id": "e9e89250b40b4512237c77bd04dc76c06a3f8560", - "address": "185.214.135.205:26656" + id: 'e9e89250b40b4512237c77bd04dc76c06a3f8560', + address: '185.214.135.205:26656' }, { - "id": "1539976f4ee196f172369e6f348d60a6e3ec9e93", - "address": "159.69.147.189:26656" + id: '1539976f4ee196f172369e6f348d60a6e3ec9e93', + address: '159.69.147.189:26656' }, { - "id": "85316823bee88f7b05d0cfc671bee861c0237154", - "address": "95.217.198.243:26656" + id: '85316823bee88f7b05d0cfc671bee861c0237154', + address: '95.217.198.243:26656' }, { - "id": "eb55b70c9fd8fc0d5530d0662336377668aab3f9", - "address": "185.194.219.128:26656" + id: 'eb55b70c9fd8fc0d5530d0662336377668aab3f9', + address: '185.194.219.128:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-1-dig.notional.ventures" + address: 'https://rpc-1-dig.notional.ventures' }, { - "address": "https://rpc-dig-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-dig-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api-1-dig.notional.ventures" + address: 'https://api-1-dig.notional.ventures' }, { - "address": "https://api-dig-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-dig-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-dig-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-dig-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping.pub", - "url": "https://ping.pub/dig", - "tx_page": "https://ping.pub/dig/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/dig', + tx_page: 'https://ping.pub/dig/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/dig", - "tx_page": "https://atomscan.com/dig/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/dig', + tx_page: 'https://atomscan.com/dig/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "echelon", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Echelon", - "chain_id": "echelon_3000-3", - "bech32_prefix": "echelon", - "node_home": "$HOME/.echelond", - "genesis": { - "genesis_url": "https://gist.githubusercontent.com/echelonfoundation/ee862f58850fc1b5ee6a6fdccc3130d2/raw/55c2c4ea2fee8a9391d0dc55b2c272adb804054a/genesis.json" - }, - "slip44": 60, - "fees": { - "fee_tokens": [ - { - "denom": "aechelon" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/echelonfoundation/echelon", - "recommended_version": "v1.1.4", - "compatible_versions": [ - "v1.1.4", - "v1.0.3" - ], - "binaries": { - "linux/amd64": "https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Windows_x86_64.zip" + $schema: '../chain.schema.json', + chain_name: 'echelon', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Echelon', + chain_id: 'echelon_3000-3', + bech32_prefix: 'echelon', + node_home: '$HOME/.echelond', + genesis: { + genesis_url: + 'https://gist.githubusercontent.com/echelonfoundation/ee862f58850fc1b5ee6a6fdccc3130d2/raw/55c2c4ea2fee8a9391d0dc55b2c272adb804054a/genesis.json' + }, + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'aechelon' + } + ] + }, + codebase: { + git_repo: 'https://github.com/echelonfoundation/echelon', + recommended_version: 'v1.1.4', + compatible_versions: ['v1.1.4', 'v1.0.3'], + binaries: { + 'linux/amd64': + 'https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Linux_x86_64.tar.gz', + 'linux/arm64': + 'https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Darwin_x86_64.tar.gz', + 'darwin/arm64': + 'https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/echelonfoundation/echelon/releases/download/v1.1.4/echelon_1.1.4_Windows_x86_64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "395dc53caf836f04474aa8069e8099b0629763a1", - "address": "154.53.63.113:26656", - "provider": "Universe" + id: '395dc53caf836f04474aa8069e8099b0629763a1', + address: '154.53.63.113:26656', + provider: 'Universe' }, { - "id": "302ccf96853501c14060ffac2e1885bed6385f00", - "address": "154.53.63.119:26656", - "provider": "Rolex" + id: '302ccf96853501c14060ffac2e1885bed6385f00', + address: '154.53.63.119:26656', + provider: 'Rolex' }, { - "id": "b001eeb22b03e74d5c57c4c097359a9f8c564dd1", - "address": "209.126.87.32:26656", - "provider": "Supreme" + id: 'b001eeb22b03e74d5c57c4c097359a9f8c564dd1', + address: '209.126.87.32:26656', + provider: 'Supreme' }, { - "id": "6cd1cc8658dc66523f6e8d9ddf7dacae2ef62e6a", - "address": "154.12.237.224:26656", - "provider": "LockIt" + id: '6cd1cc8658dc66523f6e8d9ddf7dacae2ef62e6a', + address: '154.12.237.224:26656', + provider: 'LockIt' }, { - "id": "480db41faea6713405c93c505ff710a05d1fc801", - "address": "94.250.203.190:26656", - "provider": "Echelon" + id: '480db41faea6713405c93c505ff710a05d1fc801', + address: '94.250.203.190:26656', + provider: 'Echelon' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "395dc53caf836f04474aa8069e8099b0629763a1", - "address": "154.53.63.113:26656", - "provider": "Universe" + id: '395dc53caf836f04474aa8069e8099b0629763a1', + address: '154.53.63.113:26656', + provider: 'Universe' }, { - "id": "302ccf96853501c14060ffac2e1885bed6385f00", - "address": "154.53.63.119:26656", - "provider": "Rolex" + id: '302ccf96853501c14060ffac2e1885bed6385f00', + address: '154.53.63.119:26656', + provider: 'Rolex' }, { - "id": "b001eeb22b03e74d5c57c4c097359a9f8c564dd1", - "address": "209.126.87.32:26656", - "provider": "Supreme" + id: 'b001eeb22b03e74d5c57c4c097359a9f8c564dd1', + address: '209.126.87.32:26656', + provider: 'Supreme' }, { - "id": "6cd1cc8658dc66523f6e8d9ddf7dacae2ef62e6a", - "address": "154.12.237.224:26656", - "provider": "LockIt" + id: '6cd1cc8658dc66523f6e8d9ddf7dacae2ef62e6a', + address: '154.12.237.224:26656', + provider: 'LockIt' }, { - "id": "480db41faea6713405c93c505ff710a05d1fc801", - "address": "94.250.203.190:26656", - "provider": "Echelon" + id: '480db41faea6713405c93c505ff710a05d1fc801', + address: '94.250.203.190:26656', + provider: 'Echelon' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://tendermint.ech.network", - "provider": "ech.network" + address: 'https://tendermint.ech.network', + provider: 'ech.network' }, { - "address": "https://rpc-echelon.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://rpc-echelon.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://echelon-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://echelon-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.echelon.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.echelon.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://api.ech.network", - "provider": "ech.network" + address: 'https://api.ech.network', + provider: 'ech.network' }, { - "address": "https://lcd-echelon.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://lcd-echelon.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://echelon-api.polkachu.com", - "provider": "Polkachu" + address: 'https://echelon-api.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://api.echelon.nodestake.top", - "provider": "NodeStake" + address: 'https://api.echelon.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.ech.network", - "provider": "ech.network" + address: 'https://grpc.ech.network', + provider: 'ech.network' }, { - "address": "https://grpc.echelon.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.echelon.nodestake.top', + provider: 'NodeStake' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://rpc.ech.network", - "provider": "ech.network" + address: 'https://rpc.ech.network', + provider: 'ech.network' }, { - "address": "https://evm.ech.network", - "provider": "ech.network" + address: 'https://evm.ech.network', + provider: 'ech.network' }, { - "address": "https://draco.ech.network", - "provider": "ech.network" + address: 'https://draco.ech.network', + provider: 'ech.network' }, { - "address": "https://jsonrpc.echelon.nodestake.top", - "provider": "NodeStake" + address: 'https://jsonrpc.echelon.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "echelon", - "url": "https://app.ech.network/explorer", - "tx_page": "https://app.ech.network/explorer/tx/${txHash}" + kind: 'echelon', + url: 'https://app.ech.network/explorer', + tx_page: 'https://app.ech.network/explorer/tx/${txHash}' }, { - "kind": "blockscout", - "url": "https://scout.ech.network", - "tx_page": "https://scout.ech.network/tx/${txHash}" + kind: 'blockscout', + url: 'https://scout.ech.network', + tx_page: 'https://scout.ech.network/tx/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/echelon", - "tx_page": "https://ping.pub/echelon/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/echelon', + tx_page: 'https://ping.pub/echelon/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/echelon", - "tx_page": "https://atomscan.com/echelon/tx/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/echelon', + tx_page: 'https://atomscan.com/echelon/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/echelon", - "tx_page": "https://atomscan.com/echelon/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/echelon', + tx_page: 'https://atomscan.com/echelon/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "emoney", - "status": "live", - "network_type": "mainnet", - "pretty_name": "e-Money", - "chain_id": "emoney-3", - "bech32_prefix": "emoney", - "daemon_name": "emd", - "node_home": "$HOME/.emd", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/e-money/networks/master/emoney-3/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'emoney', + status: 'live', + network_type: 'mainnet', + pretty_name: 'e-Money', + chain_id: 'emoney-3', + bech32_prefix: 'emoney', + daemon_name: 'emd', + node_home: '$HOME/.emd', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/e-money/networks/master/emoney-3/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "ungm" + denom: 'ungm' }, { - "denom": "eeur" + denom: 'eeur' }, { - "denom": "echf" + denom: 'echf' }, { - "denom": "edkk" + denom: 'edkk' }, { - "denom": "enok" + denom: 'enok' }, { - "denom": "esek" + denom: 'esek' } ] }, - "codebase": { - "git_repo": "https://github.com/e-money/em-ledger", - "recommended_version": "v1.1.3", - "compatible_versions": [ - "v1.1.3" - ] + codebase: { + git_repo: 'https://github.com/e-money/em-ledger', + recommended_version: 'v1.1.3', + compatible_versions: ['v1.1.3'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "708e559271d4d75d7ea2c3842e87d2e71a465684", - "address": "seed-1.emoney.validator.network:28656", - "provider": "validator.network" + id: '708e559271d4d75d7ea2c3842e87d2e71a465684', + address: 'seed-1.emoney.validator.network:28656', + provider: 'validator.network' }, { - "id": "336cdb655ea16413a8337e730683ddc0a24af9de", - "address": "seed-2.emoney.validator.network:28656", - "provider": "validator.network" + id: '336cdb655ea16413a8337e730683ddc0a24af9de', + address: 'seed-2.emoney.validator.network:28656', + provider: 'validator.network' }, { - "id": "ecec8933d80da5fccda6bdd72befe7e064279fc1", - "address": "207.180.213.123:26676", - "provider": "easy2stake" + id: 'ecec8933d80da5fccda6bdd72befe7e064279fc1', + address: '207.180.213.123:26676', + provider: 'easy2stake' }, { - "id": "0ad7bc7687112e212bac404670aa24cd6116d097", - "address": "50.18.83.75:26656", - "provider": "B-Harvest" + id: '0ad7bc7687112e212bac404670aa24cd6116d097', + address: '50.18.83.75:26656', + provider: 'B-Harvest' }, { - "id": "1723e34f45f54584f44d193ce9fd9c65271ca0b3", - "address": "13.124.62.83:26656", - "provider": "B-Harvest" + id: '1723e34f45f54584f44d193ce9fd9c65271ca0b3', + address: '13.124.62.83:26656', + provider: 'B-Harvest' }, { - "id": "34eca4a9142bf9c087a987b572c114dad67a8cc5", - "address": "172.105.148.191:26656", - "provider": "Cat Boss" + id: '34eca4a9142bf9c087a987b572c114dad67a8cc5', + address: '172.105.148.191:26656', + provider: 'Cat Boss' }, { - "id": "0b186517e4d82eb4c000a567e486b7b96bf19752", - "address": "44.195.95.22:26656", - "provider": "Cat Boss" + id: '0b186517e4d82eb4c000a567e486b7b96bf19752', + address: '44.195.95.22:26656', + provider: 'Cat Boss' }, { - "id": "0b186517e4d82eb4c000a567e486b7b96bf19752", - "address": "44.195.95.22:26656", - "provider": "Mr K" + id: '0b186517e4d82eb4c000a567e486b7b96bf19752', + address: '44.195.95.22:26656', + provider: 'Mr K' }, { - "id": "eed66085c975189e3d498fe61af2fcfb3da34924", - "address": "217.79.184.40:26656", - "provider": "MissionControl" + id: 'eed66085c975189e3d498fe61af2fcfb3da34924', + address: '217.79.184.40:26656', + provider: 'MissionControl' }, { - "id": "226d713acb10a1cd09b3b890406b886d7b071cf2", - "address": "10.105.2.101:26656", - "provider": "ATEAM" + id: '226d713acb10a1cd09b3b890406b886d7b071cf2', + address: '10.105.2.101:26656', + provider: 'ATEAM' }, { - "id": "552cb87c40f879c8c41005eeb36030502671e7a4", - "address": "18.156.91.213:26656", - "provider": "ATEAM" + id: '552cb87c40f879c8c41005eeb36030502671e7a4', + address: '18.156.91.213:26656', + provider: 'ATEAM' }, { - "id": "170255a4a9b120786d2d6c3931ebf0125087cca0", - "address": "62.171.171.139:26656", - "provider": "KalpaTech" + id: '170255a4a9b120786d2d6c3931ebf0125087cca0', + address: '62.171.171.139:26656', + provider: 'KalpaTech' }, { - "id": "d12ac664ff9766e0535c836173111e3eed462e79", - "address": "185.144.83.157:26656", - "provider": "Inotel" + id: 'd12ac664ff9766e0535c836173111e3eed462e79', + address: '185.144.83.157:26656', + provider: 'Inotel' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-emoney.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-emoney.keplr.app', + provider: 'chainapsis' }, { - "address": "https://emoney.validator.network", - "provider": "e-Money" + address: 'https://emoney.validator.network', + provider: 'e-Money' }, { - "address": "https://rpc.emoney.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.emoney.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-emoney-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-emoney-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-emoney.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-emoney.keplr.app', + provider: 'chainapsis' }, { - "address": "https://emoney.validator.network/api/", - "provider": "e-Money" + address: 'https://emoney.validator.network/api/', + provider: 'e-Money' }, { - "address": "https://lcd.emoney.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.emoney.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-emoney-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-emoney-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-emoney-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-emoney-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "bigdipper", - "url": "https://emoney.bigdipper.live/", - "tx_page": "https://emoney.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://emoney.bigdipper.live/', + tx_page: 'https://emoney.bigdipper.live/transactions/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/emoney", - "tx_page": "https://www.mintscan.io/emoney/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/emoney', + tx_page: 'https://www.mintscan.io/emoney/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/e-money", - "tx_page": "https://ping.pub/e-money/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/e-money', + tx_page: 'https://ping.pub/e-money/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/emoney", - "tx_page": "https://atomscan.com/emoney/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/emoney', + tx_page: 'https://atomscan.com/emoney/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "ethos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Ethos", - "chain_id": "ethos_7003-1", - "bech32_prefix": "ethos", - "daemon_name": "ethosd", - "node_home": "$HOME/.ethos", - "genesis": { - "genesis_url": "" + $schema: '../chain.schema.json', + chain_name: 'ethos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Ethos', + chain_id: 'ethos_7003-1', + bech32_prefix: 'ethos', + daemon_name: 'ethosd', + node_home: '$HOME/.ethos', + genesis: { + genesis_url: '' }, - "slip44": 60, - "fees": { - "fee_tokens": [ + slip44: 60, + fees: { + fee_tokens: [ { - "denom": "aRYT" + denom: 'aRYT' } ] }, - "peers": { - "seeds": [], - "persistent_peers": [] + peers: { + seeds: [], + persistent_peers: [] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://ethos-rpc.provable.dev:443/", - "provider": "laurel.provable" + address: 'https://ethos-rpc.provable.dev:443/', + provider: 'laurel.provable' } ], - "rest": [ + rest: [ { - "address": "https://ethos.provable.dev/rest/", - "provider": "laurel.provable" + address: 'https://ethos.provable.dev/rest/', + provider: 'laurel.provable' } ], - "grpc": [ + grpc: [ { - "address": "https://ethos-grpc.provable.dev:443", - "provider": "laurel.provable" + address: 'https://ethos-grpc.provable.dev:443', + provider: 'laurel.provable' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://ethos-evm.provable.dev/", - "provider": "laurel.provable" + address: 'https://ethos-evm.provable.dev/', + provider: 'laurel.provable' } ] }, - "explorers": [], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.svg" + explorers: [], + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ethos/images/ethos.svg' } }, { - "$schema": "../chain.schema.json", - "chain_name": "evmos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Evmos", - "chain_id": "evmos_9001-2", - "bech32_prefix": "evmos", - "node_home": "$HOME/.evmosd", - "genesis": { - "genesis_url": "https://archive.evmos.org/mainnet/genesis.json" - }, - "daemon_name": "evmosd", - "slip44": 60, - "fees": { - "fee_tokens": [ - { - "denom": "aevmos" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/evmos/evmos", - "recommended_version": "v7.0.0", - "compatible_versions": [ - "v7.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Windows_x86_64.zip" + $schema: '../chain.schema.json', + chain_name: 'evmos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Evmos', + chain_id: 'evmos_9001-2', + bech32_prefix: 'evmos', + node_home: '$HOME/.evmosd', + genesis: { + genesis_url: 'https://archive.evmos.org/mainnet/genesis.json' + }, + daemon_name: 'evmosd', + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'aevmos' + } + ] + }, + codebase: { + git_repo: 'https://github.com/evmos/evmos', + recommended_version: 'v7.0.0', + compatible_versions: ['v7.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Linux_x86_64.tar.gz', + 'linux/arm64': + 'https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Darwin_x86_64.tar.gz', + 'darwin/arm64': + 'https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/evmos/evmos/releases/download/v7.0.0/evmos_7.0.0_Windows_x86_64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "906840c2f447915f3d0e37bc68221f5494f541db", - "address": "3.39.58.32:26656", - "provider": "Cosmostation" + id: '906840c2f447915f3d0e37bc68221f5494f541db', + address: '3.39.58.32:26656', + provider: 'Cosmostation' }, { - "id": "7aa31684d201f8ebc0b1e832d90d7490345d77ee", - "address": "52.10.99.253:26656", - "provider": "Cosmostation" + id: '7aa31684d201f8ebc0b1e832d90d7490345d77ee', + address: '52.10.99.253:26656', + provider: 'Cosmostation' }, { - "id": "5740e4a36e646e80cc5648daf5e983e5b5d8f265", - "address": "54.39.18.27:26656", - "provider": "Figment" + id: '5740e4a36e646e80cc5648daf5e983e5b5d8f265', + address: '54.39.18.27:26656', + provider: 'Figment' }, { - "id": "de2c5e946e21360d4ffa3885579fa038a7d9776e", - "address": "46.101.148.190:26656", - "provider": "DragonStake" + id: 'de2c5e946e21360d4ffa3885579fa038a7d9776e', + address: '46.101.148.190:26656', + provider: 'DragonStake' }, { - "id": "588cedb70fa1d98c14a2f2c1456bfa41e1a156a8", - "address": "evmos-sentry.mercury-nodes.net:29539", - "provider": "Mercury" + id: '588cedb70fa1d98c14a2f2c1456bfa41e1a156a8', + address: 'evmos-sentry.mercury-nodes.net:29539', + provider: 'Mercury' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "906840c2f447915f3d0e37bc68221f5494f541db", - "address": "3.39.58.32:26656", - "provider": "Cosmostation" + id: '906840c2f447915f3d0e37bc68221f5494f541db', + address: '3.39.58.32:26656', + provider: 'Cosmostation' }, { - "id": "7aa31684d201f8ebc0b1e832d90d7490345d77ee", - "address": "52.10.99.253:26656", - "provider": "Cosmostation" + id: '7aa31684d201f8ebc0b1e832d90d7490345d77ee', + address: '52.10.99.253:26656', + provider: 'Cosmostation' }, { - "id": "5740e4a36e646e80cc5648daf5e983e5b5d8f265", - "address": "54.39.18.27:26656", - "provider": "Figment" + id: '5740e4a36e646e80cc5648daf5e983e5b5d8f265', + address: '54.39.18.27:26656', + provider: 'Figment' }, { - "id": "de2c5e946e21360d4ffa3885579fa038a7d9776e", - "address": "46.101.148.190:26656", - "provider": "DragonStake" + id: 'de2c5e946e21360d4ffa3885579fa038a7d9776e', + address: '46.101.148.190:26656', + provider: 'DragonStake' }, { - "id": "588cedb70fa1d98c14a2f2c1456bfa41e1a156a8", - "address": "evmos-sentry.mercury-nodes.net:29539", - "provider": "Mercury" + id: '588cedb70fa1d98c14a2f2c1456bfa41e1a156a8', + address: 'evmos-sentry.mercury-nodes.net:29539', + provider: 'Mercury' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-evmos.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://rpc-evmos.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://tendermint.bd.evmos.org:26657", - "provider": "Blockdaemon" + address: 'https://tendermint.bd.evmos.org:26657', + provider: 'Blockdaemon' }, { - "address": "https://rpc.evmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.evmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-evmos-ia.notional.ventures:443", - "provider": "Notional" + address: 'https://rpc-evmos-ia.notional.ventures:443', + provider: 'Notional' }, { - "address": "https://rpc.evmos.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" + address: 'https://rpc.evmos.posthuman.digital', + provider: 'POSTHUMAN ꝏ DVS' }, { - "address": "https://rpc.evmos.interbloc.org", - "provider": "Interbloc" + address: 'https://rpc.evmos.interbloc.org', + provider: 'Interbloc' }, { - "address": "https://rpc.evmos.testnet.run", - "provider": "TestNetRun" + address: 'https://rpc.evmos.testnet.run', + provider: 'TestNetRun' }, { - "address": "https://rpc.evmos.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.evmos.nodestake.top', + provider: 'NodeStake' }, { - "address": "https://rpc-evmos.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-evmos.ecostake.com', + provider: 'ecostake' } ], - "rest": [ + rest: [ { - "address": "https://lcd-evmos.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://lcd-evmos.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://rest.bd.evmos.org:1317", - "provider": "Blockdaemon" + address: 'https://rest.bd.evmos.org:1317', + provider: 'Blockdaemon' }, { - "address": "https://lcd.evmos.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.evmos.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-evmos-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-evmos-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://lcd.evmos.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" + address: 'https://lcd.evmos.posthuman.digital', + provider: 'POSTHUMAN ꝏ DVS' }, { - "address": "https://api.evmos.interbloc.org", - "provider": "Interbloc" + address: 'https://api.evmos.interbloc.org', + provider: 'Interbloc' }, { - "address": "https://api.evmos.testnet.run", - "provider": "TestNetRun" + address: 'https://api.evmos.testnet.run', + provider: 'TestNetRun' }, { - "address": "https://rest-evmos.ecostake.com", - "provider": "ecostake" + address: 'https://rest-evmos.ecostake.com', + provider: 'ecostake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.bd.evmos.org:9090", - "provider": "evmos.org" + address: 'https://grpc.bd.evmos.org:9090', + provider: 'evmos.org' }, { - "address": "grpc-evmos-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-evmos-ia.notional.ventures:443', + provider: 'Notional' }, { - "address": "grpc.evmos.posthuman.digital:443", - "provider": "POSTHUMAN ꝏ DVS" + address: 'grpc.evmos.posthuman.digital:443', + provider: 'POSTHUMAN ꝏ DVS' }, { - "address": "grpc.evmos.testnet.run:8091", - "provider": "TestNetRun" + address: 'grpc.evmos.testnet.run:8091', + provider: 'TestNetRun' }, { - "address": "https://grpc.evmos.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.evmos.nodestake.top', + provider: 'NodeStake' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://eth.bd.evmos.org:8545", - "provider": "Blockdaemon" + address: 'https://eth.bd.evmos.org:8545', + provider: 'Blockdaemon' }, { - "address": "https://jsonrpc-evmos-ia.notional.ventures/", - "provider": "Notional" + address: 'https://jsonrpc-evmos-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://evmos-json-rpc.stakely.io", - "provider": "Stakely" + address: 'https://evmos-json-rpc.stakely.io', + provider: 'Stakely' }, { - "address": "https://jsonrpc.evmos.nodestake.top", - "provider": "NodeStake" + address: 'https://jsonrpc.evmos.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/evmos", - "tx_page": "https://www.mintscan.io/evmos/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/evmos', + tx_page: 'https://www.mintscan.io/evmos/txs/${txHash}' }, { - "kind": "bigdipper", - "url": "https://evmos.bigdipper.live", - "tx_page": "https://evmos.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://evmos.bigdipper.live', + tx_page: 'https://evmos.bigdipper.live/transactions/${txHash}' }, { - "kind": "blockscout", - "url": "https://evm.evmos.org", - "tx_page": "https://evm.evmos.org/tx/${txHash}" + kind: 'blockscout', + url: 'https://evm.evmos.org', + tx_page: 'https://evm.evmos.org/tx/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/evmos", - "tx_page": "https://ping.pub/evmos/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/evmos', + tx_page: 'https://ping.pub/evmos/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://evmos.explorers.guru", - "tx_page": "https://evmos.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://evmos.explorers.guru', + tx_page: 'https://evmos.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/evmos", - "tx_page": "https://atomscan.com/evmos/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/evmos', + tx_page: 'https://atomscan.com/evmos/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "fetchhub", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Fetch Hub", - "chain_id": "fetchhub-4", - "bech32_prefix": "fetch", - "daemon_name": "fetchd", - "node_home": "$HOME/.fetchd", - "genesis": { - "genesis_url": "https://storage.googleapis.com/fetch-ai-mainnet-v2-genesis/genesis-fetchhub4.json" + $schema: '../chain.schema.json', + chain_name: 'fetchhub', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Fetch Hub', + chain_id: 'fetchhub-4', + bech32_prefix: 'fetch', + daemon_name: 'fetchd', + node_home: '$HOME/.fetchd', + genesis: { + genesis_url: + 'https://storage.googleapis.com/fetch-ai-mainnet-v2-genesis/genesis-fetchhub4.json' }, - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/fetchai/fetchd", - "recommended_version": "v0.10.3", - "compatible_versions": [ - "v0.10.3", - "v0.10.2", - "v0.10.1", - "v0.10.0" - ] + slip44: 118, + codebase: { + git_repo: 'https://github.com/fetchai/fetchd', + recommended_version: 'v0.10.3', + compatible_versions: ['v0.10.3', 'v0.10.2', 'v0.10.1', 'v0.10.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "5f3fa6404a67b664be07d0e133a00c1600967396", - "address": "connect-fetchhub.fetch.ai:36756", - "provider": "fetch.ai" + id: '5f3fa6404a67b664be07d0e133a00c1600967396', + address: 'connect-fetchhub.fetch.ai:36756', + provider: 'fetch.ai' }, { - "id": "8272b70e1986e2080ca328309a5aad3bb932fcab", - "address": "connect-fetchhub.fetch.ai:36757", - "provider": "fetch.ai" + id: '8272b70e1986e2080ca328309a5aad3bb932fcab', + address: 'connect-fetchhub.fetch.ai:36757', + provider: 'fetch.ai' }, { - "id": "81f479ad9b4b1d25bceedb2a13139187792442bf", - "address": "connect-fetchhub.fetch.ai:36758", - "provider": "fetch.ai" + id: '81f479ad9b4b1d25bceedb2a13139187792442bf', + address: 'connect-fetchhub.fetch.ai:36758', + provider: 'fetch.ai' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "714b84c1798759505a8095c1f96e920bd23ab09f", - "address": "sentries-fetchhub.fetch.ai:36700", - "provider": "fetch.ai" + id: '714b84c1798759505a8095c1f96e920bd23ab09f', + address: 'sentries-fetchhub.fetch.ai:36700', + provider: 'fetch.ai' }, { - "id": "802224aa31eb34185b081b1fd791ab568055dc78", - "address": "sentries-fetchhub.fetch.ai:36701", - "provider": "fetch.ai" + id: '802224aa31eb34185b081b1fd791ab568055dc78', + address: 'sentries-fetchhub.fetch.ai:36701', + provider: 'fetch.ai' }, { - "id": "65bab5f02a2ab3cb1e6db3b345654594e2390db9", - "address": "sentries-fetchhub.fetch.ai:36702", - "provider": "fetch.ai" + id: '65bab5f02a2ab3cb1e6db3b345654594e2390db9', + address: 'sentries-fetchhub.fetch.ai:36702', + provider: 'fetch.ai' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-fetchhub.fetch.ai:443", - "provider": "fetch.ai" + address: 'https://rpc-fetchhub.fetch.ai:443', + provider: 'fetch.ai' }, { - "address": "https://fetchapi.terminet.io", - "provider": "Terminet" + address: 'https://fetchapi.terminet.io', + provider: 'Terminet' }, { - "address": "https://rpc-fetchhub-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-fetchhub-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://rest-fetchhub.fetch.ai", - "provider": "fetch.ai" + address: 'https://rest-fetchhub.fetch.ai', + provider: 'fetch.ai' }, { - "address": "https://api-fetchhub-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-fetchhub-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc-fetchhub.fetch.ai:443", - "provider": "fetch.ai" + address: 'https://grpc-fetchhub.fetch.ai:443', + provider: 'fetch.ai' }, { - "address": "grpc-fetchhub-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-fetchhub-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/fetchai", - "tx_page": "https://www.mintscan.io/fetchai/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/fetchai', + tx_page: 'https://www.mintscan.io/fetchai/txs/${txHash}' }, { - "kind": "bigdipper", - "url": "https://explore-fetchhub.fetch.ai", - "tx_page": "https://explore-fetchhub.fetch.ai/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://explore-fetchhub.fetch.ai', + tx_page: 'https://explore-fetchhub.fetch.ai/transactions/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/fetchhub", - "tx_page": "https://ping.pub/fetchhub/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/fetchhub', + tx_page: 'https://ping.pub/fetchhub/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/fetchhub", - "tx_page": "https://atomscan.com/fetchhub/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/fetchhub', + tx_page: 'https://atomscan.com/fetchhub/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "firmachain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "FirmaChain", - "chain_id": "colosseum-1", - "bech32_prefix": "firma", - "slip44": 7777777, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/firmachain/mainnet/main/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'firmachain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'FirmaChain', + chain_id: 'colosseum-1', + bech32_prefix: 'firma', + slip44: 7777777, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/firmachain/mainnet/main/genesis.json' }, - "fees": { - "fee_tokens": [ + fees: { + fee_tokens: [ { - "denom": "ufct", - "fixed_min_gas_price": 0.1 + denom: 'ufct', + fixed_min_gas_price: 0.1 } ] }, - "codebase": { - "git_repo": "https://github.com/firmachain/firmachain", - "recommended_version": "v0.3.3", - "compatible_versions": [ - "v0.3.3" - ] + codebase: { + git_repo: 'https://github.com/firmachain/firmachain', + recommended_version: 'v0.3.3', + compatible_versions: ['v0.3.3'] }, - "daemon_name": "firmachaind", - "node_home": "$HOME/.firmachain", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + daemon_name: 'firmachaind', + node_home: '$HOME/.firmachain', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "f89dcc15241e30323ae6f491011779d53f9a5487", - "address": "mainnet-seed1.firmachain.dev:26656", - "provider": "FirmaChain" + id: 'f89dcc15241e30323ae6f491011779d53f9a5487', + address: 'mainnet-seed1.firmachain.dev:26656', + provider: 'FirmaChain' }, { - "id": "04cce0da4cf5ceb5ffc04d158faddfc5dc419154", - "address": "mainnet-seed2.firmachain.dev:26656", - "provider": "FirmaChain" + id: '04cce0da4cf5ceb5ffc04d158faddfc5dc419154', + address: 'mainnet-seed2.firmachain.dev:26656', + provider: 'FirmaChain' }, { - "id": "940977bdc070422b3a62e4985f2fe79b7ee737f7", - "address": "mainnet-seed3.firmachain.dev:26656", - "provider": "FirmaChain" + id: '940977bdc070422b3a62e4985f2fe79b7ee737f7', + address: 'mainnet-seed3.firmachain.dev:26656', + provider: 'FirmaChain' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://lcd-mainnet.firmachain.dev:26657", - "provider": "FirmaChain" + address: 'https://lcd-mainnet.firmachain.dev:26657', + provider: 'FirmaChain' } ], - "rest": [ + rest: [ { - "address": "https://lcd-mainnet.firmachain.dev:1317", - "provider": "FirmaChain" + address: 'https://lcd-mainnet.firmachain.dev:1317', + provider: 'FirmaChain' } ] }, - "explorers": [ + explorers: [ { - "kind": "big-dipper", - "url": "https://explorer.firmachain.dev", - "tx_page": "https://explorer.firmachain.dev/transactions/${txHash}" + kind: 'big-dipper', + url: 'https://explorer.firmachain.dev', + tx_page: 'https://explorer.firmachain.dev/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "galaxy", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Galaxy", - "chain_id": "galaxy-1", - "bech32_prefix": "galaxy", - "daemon_name": "galaxyd", - "node_home": "$HOME/.galaxy", - "genesis": { - "genesis_url": "https://media.githubusercontent.com/media/galaxies-labs/networks/main/galaxy-1/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/galaxies-labs/galaxy", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/galaxies-labs/galaxy/releases/download/v1.0.0/galaxy_v1.0.0_linux_amd64.tar.gz", - "darwin/amd64": "https://github.com/galaxies-labs/galaxy/releases/download/v1.0.0/galaxy_v1.0.0_darwin_amd64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'galaxy', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Galaxy', + chain_id: 'galaxy-1', + bech32_prefix: 'galaxy', + daemon_name: 'galaxyd', + node_home: '$HOME/.galaxy', + genesis: { + genesis_url: + 'https://media.githubusercontent.com/media/galaxies-labs/networks/main/galaxy-1/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/galaxies-labs/galaxy', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/galaxies-labs/galaxy/releases/download/v1.0.0/galaxy_v1.0.0_linux_amd64.tar.gz', + 'darwin/amd64': + 'https://github.com/galaxies-labs/galaxy/releases/download/v1.0.0/galaxy_v1.0.0_darwin_amd64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "574e8402e255f895680db2904168724258fd6ff8", - "address": "13.125.60.249:26656", - "provider": "Galaxies Labs" + id: '574e8402e255f895680db2904168724258fd6ff8', + address: '13.125.60.249:26656', + provider: 'Galaxies Labs' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "bf446887a7a00c8babfeba2f92ba569a206a3ea7", - "address": "65.108.71.140:26676", - "provider": "StakeLab" + id: 'bf446887a7a00c8babfeba2f92ba569a206a3ea7', + address: '65.108.71.140:26676', + provider: 'StakeLab' }, { - "id": "1e9ee1911298a15128c8485ea47b18be08939e01", - "address": "136.244.29.116:38656", - "provider": "OtterSync" + id: '1e9ee1911298a15128c8485ea47b18be08939e01', + address: '136.244.29.116:38656', + provider: 'OtterSync' }, { - "id": "a4bd8fed416aa29d9cc061e2b9dffa7f4b679c91", - "address": "65.21.131.144:30656", - "provider": "Blockscope" + id: 'a4bd8fed416aa29d9cc061e2b9dffa7f4b679c91', + address: '65.21.131.144:30656', + provider: 'Blockscope' }, { - "id": "801f4e17769bd2ee02b27720d901a42cb8d052ea", - "address": "65.108.192.3:24656", - "provider": "Paranormal Brothers" + id: '801f4e17769bd2ee02b27720d901a42cb8d052ea', + address: '65.108.192.3:24656', + provider: 'Paranormal Brothers' }, { - "id": "8fc2d8c2fadd278eae617a9c2a2f008e01e8ef68", - "address": "206.246.71.251:26656", - "provider": "TAKESHI" + id: '8fc2d8c2fadd278eae617a9c2a2f008e01e8ef68', + address: '206.246.71.251:26656', + provider: 'TAKESHI' }, { - "id": "10f7caa39969dc36450b138848a06e7deabe6fed", - "address": "95.111.244.128:26656", - "provider": "Pathrocknetwork" + id: '10f7caa39969dc36450b138848a06e7deabe6fed', + address: '95.111.244.128:26656', + provider: 'Pathrocknetwork' }, { - "id": "cd8fd9e1677c701015b8909116f88974028cd0b4", - "address": "203.135.141.28:26656", - "provider": "Decentralizehk" + id: 'cd8fd9e1677c701015b8909116f88974028cd0b4', + address: '203.135.141.28:26656', + provider: 'Decentralizehk' }, { - "id": "b4b6f1563f2891ed5735d6133d78fc7c17ce12d0", - "address": "185.234.69.139:26656", - "provider": "DomaNodes" + id: 'b4b6f1563f2891ed5735d6133d78fc7c17ce12d0', + address: '185.234.69.139:26656', + provider: 'DomaNodes' }, { - "id": "5b3fd251b74e6af11f4c71d420fd1837f4869e85", - "address": "45.33.62.64:26656", - "provider": "FireStake" + id: '5b3fd251b74e6af11f4c71d420fd1837f4869e85', + address: '45.33.62.64:26656', + provider: 'FireStake' }, { - "id": "51b3263a333de94198fe4c4d819b48fbd107f93a", - "address": "5.9.13.234:26356", - "provider": "Goooodnes" + id: '51b3263a333de94198fe4c4d819b48fbd107f93a', + address: '5.9.13.234:26356', + provider: 'Goooodnes' }, { - "id": "e21bf32eaedee13d8dc240baacf23fee97a8edac", - "address": "141.94.141.144:43656", - "provider": "cyberG" + id: 'e21bf32eaedee13d8dc240baacf23fee97a8edac', + address: '141.94.141.144:43656', + provider: 'cyberG' }, { - "id": "8b447bd4fa1e56d8252538a6e23573e5e78924fa", - "address": "161.97.155.94:26656", - "provider": "3Tekos" + id: '8b447bd4fa1e56d8252538a6e23573e5e78924fa', + address: '161.97.155.94:26656', + provider: '3Tekos' }, { - "id": "8d059154ea0a6e25c5695a1e163e601482769604", - "address": "95.217.207.236:31256", - "provider": "web34ever" + id: '8d059154ea0a6e25c5695a1e163e601482769604', + address: '95.217.207.236:31256', + provider: 'web34ever' }, { - "id": "7ded7314f57a078076507d7b291e100ad2dc158b", - "address": "65.108.41.172:36656", - "provider": "moonsoon" + id: '7ded7314f57a078076507d7b291e100ad2dc158b', + address: '65.108.41.172:36656', + provider: 'moonsoon' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.galaxychain.zone" + address: 'https://rpc.galaxychain.zone' }, { - "address": "https://galaxy-rpc.polkachu.com/", - "provider": "Polkachu" + address: 'https://galaxy-rpc.polkachu.com/', + provider: 'Polkachu' } ], - "rest": [ + rest: [ { - "address": "https://rest.galaxychain.zone" + address: 'https://rest.galaxychain.zone' }, { - "address": "https://galaxy-api.polkachu.com", - "provider": "Polkachu" + address: 'https://galaxy-api.polkachu.com', + provider: 'Polkachu' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://explorer.postcapitalist.io/Galaxy", - "tx_page": "https://explorer.postcapitalist.io/Galaxy/tx/${txHash}" + kind: 'ping-pub', + url: 'https://explorer.postcapitalist.io/Galaxy', + tx_page: 'https://explorer.postcapitalist.io/Galaxy/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "genesisl1", - "status": "live", - "network_type": "mainnet", - "pretty_name": "GenesisL1", - "chain_id": "genesis_29-2", - "bech32_prefix": "genesis", - "daemon_name": "genesisd", - "node_home": "$HOME/.genesisd", - "genesis": { - "genesis_url": "https://github.com/alpha-omega-labs/genesisd/raw/neolithic/genesis_29-1-state/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'genesisl1', + status: 'live', + network_type: 'mainnet', + pretty_name: 'GenesisL1', + chain_id: 'genesis_29-2', + bech32_prefix: 'genesis', + daemon_name: 'genesisd', + node_home: '$HOME/.genesisd', + genesis: { + genesis_url: + 'https://github.com/alpha-omega-labs/genesisd/raw/neolithic/genesis_29-1-state/genesis.json' }, - "slip44": 118, - "fees": { - "fee_tokens": [ + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "el1" + denom: 'el1' } ] }, - "codebase": { - "git_repo": "https://github.com/alpha-omega-labs/genesisd", - "recommended_version": "v0.3.0", - "compatible_versions": [ - "v0.3.0" - ] + codebase: { + git_repo: 'https://github.com/alpha-omega-labs/genesisd', + recommended_version: 'v0.3.0', + compatible_versions: ['v0.3.0'] }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "36111b4156ace8f1cfa5584c3ccf479de4d94936", - "address": "65.21.34.226:26656", - "provider": "GenesisL1" + id: '36111b4156ace8f1cfa5584c3ccf479de4d94936', + address: '65.21.34.226:26656', + provider: 'GenesisL1' }, { - "id": "c23b3d58ccae0cf34fc12075c933659ff8cca200", - "address": "95.217.207.154:26656" + id: 'c23b3d58ccae0cf34fc12075c933659ff8cca200', + address: '95.217.207.154:26656' }, { - "id": "37d8aa8a31d66d663586ba7b803afd68c01126c4", - "address": "65.21.134.70:26656" + id: '37d8aa8a31d66d663586ba7b803afd68c01126c4', + address: '65.21.134.70:26656' }, { - "id": "d7d4ea7a661c40305cab84ac227cdb3814df4e43", - "address": "139.162.195.228:26656" + id: 'd7d4ea7a661c40305cab84ac227cdb3814df4e43', + address: '139.162.195.228:26656' }, { - "id": "be81a20b7134552e270774ec861c4998fabc2969", - "address": "genesisl1.3ventures.io:26656" + id: 'be81a20b7134552e270774ec861c4998fabc2969', + address: 'genesisl1.3ventures.io:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://26657.genesisl1.org", - "provider": "GenesisL1" + address: 'https://26657.genesisl1.org', + provider: 'GenesisL1' } ], - "rest": [ + rest: [ { - "address": "https://api.genesisl1.org", - "provider": "GenesisL1" + address: 'https://api.genesisl1.org', + provider: 'GenesisL1' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://ping.pub/genesisL1", - "tx_page": "https://ping.pub/genesisL1/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/genesisL1', + tx_page: 'https://ping.pub/genesisL1/tx/${txHash}' }, { - "kind": "ATOMScan", - "url": "https://atomscan.com/genesisl1", - "tx_page": "https://atomscan.com/genesisl1/transactions/${txHash}" + kind: 'ATOMScan', + url: 'https://atomscan.com/genesisl1', + tx_page: 'https://atomscan.com/genesisl1/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "gravitybridge", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Gravity Bridge", - "chain_id": "gravity-bridge-3", - "bech32_prefix": "gravity", - "daemon_name": "gravity", - "node_home": "$HOME/.gravity", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/Gravity-Bridge/Gravity-Docs/main/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ugraviton", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/Gravity-Bridge/Gravity-Bridge", - "recommended_version": "v1.3.3", - "compatible_versions": [ - "v1.3.0", - "v1.3.1", - "v1.3.2", - "v1.3.3" - ], - "binaries": { - "linux/amd64": "https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-linux-amd64", - "linux/arm64": "https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-linux-arm64", - "darwin/amd64": "https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-darwin-amd64", - "windows/amd64": "https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'gravitybridge', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Gravity Bridge', + chain_id: 'gravity-bridge-3', + bech32_prefix: 'gravity', + daemon_name: 'gravity', + node_home: '$HOME/.gravity', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/Gravity-Bridge/Gravity-Docs/main/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ugraviton', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/Gravity-Bridge/Gravity-Bridge', + recommended_version: 'v1.3.3', + compatible_versions: ['v1.3.0', 'v1.3.1', 'v1.3.2', 'v1.3.3'], + binaries: { + 'linux/amd64': + 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-linux-amd64', + 'linux/arm64': + 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-linux-arm64', + 'darwin/amd64': + 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-darwin-amd64', + 'windows/amd64': + 'https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.3.3/gravity-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "2b089bfb4c7366efb402b48376a7209632380c9c", - "address": "65.19.136.133:26656", - "provider": "althea" + id: '2b089bfb4c7366efb402b48376a7209632380c9c', + address: '65.19.136.133:26656', + provider: 'althea' }, { - "id": "63e662f5e048d4902c7c7126291cf1fc17687e3c", - "address": "95.211.103.175:26656", - "provider": "amhost" + id: '63e662f5e048d4902c7c7126291cf1fc17687e3c', + address: '95.211.103.175:26656', + provider: 'amhost' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "21be3f7686c24f8bd9442b325a50f5b5227777a7", - "address": "202.61.231.15:26656", - "provider": "SkyNet" + id: '21be3f7686c24f8bd9442b325a50f5b5227777a7', + address: '202.61.231.15:26656', + provider: 'SkyNet' }, { - "id": "9aa7e0c250466a2a147f8b7d2b886b0d45d44ca0", - "address": "45.138.49.222:26656", - "provider": "ps350" + id: '9aa7e0c250466a2a147f8b7d2b886b0d45d44ca0', + address: '45.138.49.222:26656', + provider: 'ps350' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://gravitychain.io:26657", - "provider": "althea" + address: 'https://gravitychain.io:26657', + provider: 'althea' }, { - "address": "http://gravity-bridge-1-08.nodes.amhost.net:26657", - "provider": "amhost" + address: 'http://gravity-bridge-1-08.nodes.amhost.net:26657', + provider: 'amhost' }, { - "address": "https://gravity-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://gravity-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.gravity-bridge.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.gravity-bridge.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-gravitybridge-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-gravitybridge-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc.gravity-bridge.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.gravity-bridge.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://gravitychain.io:1317", - "provider": "althea" + address: 'https://gravitychain.io:1317', + provider: 'althea' }, { - "address": "https://lcd.gravity-bridge.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.gravity-bridge.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-gravitybridge-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-gravitybridge-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://api.gravity-bridge.nodestake.top", - "provider": "NodeStake" + address: 'https://api.gravity-bridge.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://gravitychain.io:9090", - "provider": "althea" + address: 'https://gravitychain.io:9090', + provider: 'althea' }, { - "address": "gravity-bridge-1-08.nodes.amhost.net:9090", - "provider": "amhost" + address: 'gravity-bridge-1-08.nodes.amhost.net:9090', + provider: 'amhost' }, { - "address": "grpc-gravitybridge-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-gravitybridge-ia.notional.ventures:443', + provider: 'Notional' }, { - "address": "https://grpc.gravity-bridge.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.gravity-bridge.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/gravity-bridge", - "tx_page": "https://www.mintscan.io/gravity-bridge/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/gravity-bridge', + tx_page: 'https://www.mintscan.io/gravity-bridge/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/gravity-bridge", - "tx_page": "https://ping.pub/gravity-bridge/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/gravity-bridge', + tx_page: 'https://ping.pub/gravity-bridge/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://gravity.explorers.guru", - "tx_page": "https://gravity.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://gravity.explorers.guru', + tx_page: 'https://gravity.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/gravity-bridge", - "tx_page": "https://atomscan.com/gravity-bridge/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/gravity-bridge', + tx_page: 'https://atomscan.com/gravity-bridge/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "idep", - "status": "live", - "network_type": "mainnet", - "pretty_name": "IDEP", - "chain_id": "Antora", - "bech32_prefix": "idep", - "daemon_name": "idep", - "node_home": "$HOME/.ion", - "genesis": { - "genesis_url": "https://github.com/IDEP-network/Antora/raw/main/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "idep", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/IDEP-network/ion", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/IDEP-network/Antora/raw/main/iond" + $schema: '../chain.schema.json', + chain_name: 'idep', + status: 'live', + network_type: 'mainnet', + pretty_name: 'IDEP', + chain_id: 'Antora', + bech32_prefix: 'idep', + daemon_name: 'idep', + node_home: '$HOME/.ion', + genesis: { + genesis_url: + 'https://github.com/IDEP-network/Antora/raw/main/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'idep', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/IDEP-network/ion', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'], + binaries: { + 'linux/amd64': 'https://github.com/IDEP-network/Antora/raw/main/iond' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "6e52997400aaa1b3d2155e45cf2559bf7a4c5e76", - "address": "164.92.161.91:26656", - "provider": "IDEP" + id: '6e52997400aaa1b3d2155e45cf2559bf7a4c5e76', + address: '164.92.161.91:26656', + provider: 'IDEP' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "8ffc74dbcd5ab32bc89e058ec53060d5762f88b5", - "address": "178.63.100.102:26656", - "provider": "IDEP" + id: '8ffc74dbcd5ab32bc89e058ec53060d5762f88b5', + address: '178.63.100.102:26656', + provider: 'IDEP' }, { - "id": "3a8cfcbaac7d102e9cfad31f856e1852be2125f3", - "address": "sentry-1.idep.ezstaking.io:26756", - "provider": "EZStaking.io" + id: '3a8cfcbaac7d102e9cfad31f856e1852be2125f3', + address: 'sentry-1.idep.ezstaking.io:26756', + provider: 'EZStaking.io' }, { - "id": "32a1a93033968e391266484cd4896dfc9b326e4c", - "address": "sentry-2.idep.ezstaking.io:26789", - "provider": "EZStaking.io" + id: '32a1a93033968e391266484cd4896dfc9b326e4c', + address: 'sentry-2.idep.ezstaking.io:26789', + provider: 'EZStaking.io' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.idep.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.idep.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc.idep.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.idep.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://lcd.idep.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.idep.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api.idep.nodestake.top", - "provider": "NodeStake" + address: 'https://api.idep.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.idep.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.idep.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "chadscan", - "url": "https://chadscan.com", - "tx_page": "https://chadscan.com/transactions/${txHash}" + kind: 'chadscan', + url: 'https://chadscan.com', + tx_page: 'https://chadscan.com/transactions/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/idep", - "tx_page": "https://atomscan.com/idep/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/idep', + tx_page: 'https://atomscan.com/idep/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "impacthub", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Impact Hub", - "chain_id": "impacthub-3", - "bech32_prefix": "ixo", - "daemon_name": "ixod", - "node_home": "$HOME/.ixod", - "genesis": { - "genesis_url": "https://github.com/ixofoundation/genesis/raw/master/impacthub-3/genesis.json" - }, - "key_algos": [ - "secp256k1", - "ed25519" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uixo", - "fixed_min_gas_price": 0.025 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/ixofoundation/ixo-blockchain", - "recommended_version": "v1.6.0", - "compatible_versions": [ - "v1.6.0" - ], - "binaries": { - "linux/amd64": "https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-linux-amd64", - "linux/arm64": "https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-linux-arm64", - "darwin/amd64": "https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-darwin-amd64", - "windows/arm64": "https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'impacthub', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Impact Hub', + chain_id: 'impacthub-3', + bech32_prefix: 'ixo', + daemon_name: 'ixod', + node_home: '$HOME/.ixod', + genesis: { + genesis_url: + 'https://github.com/ixofoundation/genesis/raw/master/impacthub-3/genesis.json' + }, + key_algos: ['secp256k1', 'ed25519'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uixo', + fixed_min_gas_price: 0.025 + } + ] + }, + codebase: { + git_repo: 'https://github.com/ixofoundation/ixo-blockchain', + recommended_version: 'v1.6.0', + compatible_versions: ['v1.6.0'], + binaries: { + 'linux/amd64': + 'https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-linux-amd64', + 'linux/arm64': + 'https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-linux-arm64', + 'darwin/amd64': + 'https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-darwin-amd64', + 'windows/arm64': + 'https://github.com/ixofoundation/ixo-blockchain/releases/download/v1.6.0/ixod-1.6.0-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "36e4738c7efcf353d3048e5e6073406d045bae9d", - "address": "80.64.208.43:26656", - "provider": "simplyvc" + id: '36e4738c7efcf353d3048e5e6073406d045bae9d', + address: '80.64.208.43:26656', + provider: 'simplyvc' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "cbe8c6a5a77f861db8edb1426b734f2cf1fa4020", - "address": "18.166.133.210:26656", - "provider": "shanzhaicity" + id: 'cbe8c6a5a77f861db8edb1426b734f2cf1fa4020', + address: '18.166.133.210:26656', + provider: 'shanzhaicity' }, { - "id": "36e4738c7efcf353d3048e5e6073406d045bae9d", - "address": "80.64.208.43:26656", - "provider": "simplyvc" + id: '36e4738c7efcf353d3048e5e6073406d045bae9d', + address: '80.64.208.43:26656', + provider: 'simplyvc' }, { - "id": "f0d4546fa5e0c2d84a4244def186b9da3c12ba1a", - "address": "46.166.138.214:26656", - "provider": "ixoworld" + id: 'f0d4546fa5e0c2d84a4244def186b9da3c12ba1a', + address: '46.166.138.214:26656', + provider: 'ixoworld' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-impacthub.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-impacthub.keplr.app', + provider: 'chainapsis' }, { - "address": "https://proxies.sifchain.finance/api/impacthub-3/rpc", - "provider": "sifchain" + address: 'https://proxies.sifchain.finance/api/impacthub-3/rpc', + provider: 'sifchain' }, { - "address": "http://18.220.101.192:26657/", - "provider": "regen" + address: 'http://18.220.101.192:26657/', + provider: 'regen' }, { - "address": "https://impacthub.ixo.world/rpc/", - "provider": "ixoworld" + address: 'https://impacthub.ixo.world/rpc/', + provider: 'ixoworld' }, { - "address": "https://rpc.ixo.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.ixo.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-ixo-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-ixo-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-impacthub.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-impacthub.keplr.app', + provider: 'chainapsis' }, { - "address": "https://proxies.sifchain.finance/api/impacthub-3/rest", - "provider": "sifchain" + address: 'https://proxies.sifchain.finance/api/impacthub-3/rest', + provider: 'sifchain' }, { - "address": "http://18.220.101.192:1317/", - "provider": "regen" + address: 'http://18.220.101.192:1317/', + provider: 'regen' }, { - "address": "https://impacthub.ixo.world/rest/", - "provider": "ixoworld" + address: 'https://impacthub.ixo.world/rest/', + provider: 'ixoworld' }, { - "address": "https://lcd.ixo.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.ixo.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-ixo-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-ixo-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-ixo-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-ixo-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "bigdipper", - "url": "https://blockscan.ixo.world", - "tx_page": "https://blockscan.ixo.world/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://blockscan.ixo.world', + tx_page: 'https://blockscan.ixo.world/transactions/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/ixo", - "tx_page": "https://ping.pub/ixo/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/ixo', + tx_page: 'https://ping.pub/ixo/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/ixo", - "tx_page": "https://atomscan.com/ixo/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/ixo', + tx_page: 'https://atomscan.com/ixo/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "injective", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Injective", - "chain_id": "injective-1", - "bech32_prefix": "inj", - "slip44": 60, - "daemon_name": "injectived", - "node_home": "$HOME/.injectived", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/InjectiveLabs/mainnet-config/master/10001/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/InjectiveLabs/injective-chain-releases", - "recommended_version": "v1.1.1-1637059884", - "compatible_versions": [ - "v1.1.1-1637059884" - ], - "binaries": { - "linux/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.1.1-1637059884/linux-amd64.zip", - "darwin/amd64": "https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.1.1-1637059884/darwin-amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'injective', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Injective', + chain_id: 'injective-1', + bech32_prefix: 'inj', + slip44: 60, + daemon_name: 'injectived', + node_home: '$HOME/.injectived', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/InjectiveLabs/mainnet-config/master/10001/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/InjectiveLabs/injective-chain-releases', + recommended_version: 'v1.1.1-1637059884', + compatible_versions: ['v1.1.1-1637059884'], + binaries: { + 'linux/amd64': + 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.1.1-1637059884/linux-amd64.zip', + 'darwin/amd64': + 'https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.1.1-1637059884/darwin-amd64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3", - "address": "145.40.67.249:26656", - "provider": "injectiveprotocol" + id: '2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3', + address: '145.40.67.249:26656', + provider: 'injectiveprotocol' }, { - "id": "7bb20f8e9fa73e34d0d21862528d5fba839eeb56", - "address": "145.40.73.39:26656", - "provider": "injectiveprotocol" + id: '7bb20f8e9fa73e34d0d21862528d5fba839eeb56', + address: '145.40.73.39:26656', + provider: 'injectiveprotocol' }, { - "id": "de25916e19083d44d67e0c336199b215523f1578", - "address": "145.40.68.223:26656", - "provider": "injectiveprotocol" + id: 'de25916e19083d44d67e0c336199b215523f1578', + address: '145.40.68.223:26656', + provider: 'injectiveprotocol' }, { - "id": "1a2ccd9c436eae54d6c767ad566c58dce78f8be2", - "address": "145.40.68.125:26656", - "provider": "injectiveprotocol" + id: '1a2ccd9c436eae54d6c767ad566c58dce78f8be2', + address: '145.40.68.125:26656', + provider: 'injectiveprotocol' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3", - "address": "2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3@145.40.67.249:26656", - "provider": "injectiveprotocol" + id: '2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3', + address: + '2ee7586d8e5a4a2020dafddf68efdfdaa3606cc3@145.40.67.249:26656', + provider: 'injectiveprotocol' }, { - "id": "30e81e1b785eaf82d2260e932251c02c95787740", - "address": "30e81e1b785eaf82d2260e932251c02c95787740@86.109.11.215:26656", - "provider": "injectiveprotocol" + id: '30e81e1b785eaf82d2260e932251c02c95787740', + address: + '30e81e1b785eaf82d2260e932251c02c95787740@86.109.11.215:26656', + provider: 'injectiveprotocol' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://injective-rpc.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://injective-rpc.quickapi.com:443', + provider: 'Chainlayer' }, { - "address": "https://injective-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://injective-rpc.polkachu.com', + provider: 'Polkachu' } ], - "rest": [ + rest: [ { - "address": "https://public.lcd.injective.network", - "provider": "injectiveprotocol" + address: 'https://public.lcd.injective.network', + provider: 'injectiveprotocol' }, { - "address": "https://injective-lcd.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://injective-lcd.quickapi.com:443', + provider: 'Chainlayer' } ], - "grpc": [] + grpc: [] }, - "explorers": [ + explorers: [ { - "kind": "injectiveprotocol", - "url": "https://explorer.injective.network/", - "tx_page": "https://explorer.injective.network/transaction/${txHash}" + kind: 'injectiveprotocol', + url: 'https://explorer.injective.network/', + tx_page: 'https://explorer.injective.network/transaction/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/injective", - "tx_page": "https://ping.pub/injective/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/injective', + tx_page: 'https://ping.pub/injective/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/injective", - "tx_page": "https://atomscan.com/injective/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/injective', + tx_page: 'https://atomscan.com/injective/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "irisnet", - "status": "live", - "network_type": "mainnet", - "pretty_name": "IRISnet", - "chain_id": "irishub-1", - "bech32_prefix": "iaa", - "daemon_name": "iris", - "node_home": "$HOME/.iris", - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/irisnet/mainnet/master/config/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'irisnet', + status: 'live', + network_type: 'mainnet', + pretty_name: 'IRISnet', + chain_id: 'irishub-1', + bech32_prefix: 'iaa', + daemon_name: 'iris', + node_home: '$HOME/.iris', + key_algos: ['secp256k1'], + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/irisnet/mainnet/master/config/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/irisnet/irishub", - "recommended_version": "v1.3.0", - "compatible_versions": [ - "v1.3.0" - ] + codebase: { + git_repo: 'https://github.com/irisnet/irishub', + recommended_version: 'v1.3.0', + compatible_versions: ['v1.3.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "6a6de770deaa4b8c061dffd82e9c7f4d40c2165d", - "address": "seed-1.mainnet.irisnet.org:26656" + id: '6a6de770deaa4b8c061dffd82e9c7f4d40c2165d', + address: 'seed-1.mainnet.irisnet.org:26656' }, { - "id": "a17d7923293203c64ba75723db4d5f28e642f469", - "address": "seed-2.mainnet.irisnet.org:26656" + id: 'a17d7923293203c64ba75723db4d5f28e642f469', + address: 'seed-2.mainnet.irisnet.org:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "fdc0406afdd3acc63f74f5439e09104f663a7c1f", - "address": "44.241.177.178:26656", - "provider": "cosmostation" + id: 'fdc0406afdd3acc63f74f5439e09104f663a7c1f', + address: '44.241.177.178:26656', + provider: 'cosmostation' }, { - "id": "090bcbe5302e6104821a96c4899912870db04cb9", - "address": "52.11.128.123:26656", - "provider": "cosmostation" + id: '090bcbe5302e6104821a96c4899912870db04cb9', + address: '52.11.128.123:26656', + provider: 'cosmostation' }, { - "id": "83b3f989f3ce089afdf733f8aa06e792d7e00c08", - "address": "3.34.6.30:26656", - "provider": "cosmostation" + id: '83b3f989f3ce089afdf733f8aa06e792d7e00c08', + address: '3.34.6.30:26656', + provider: 'cosmostation' }, { - "id": "87f18756b93d835c59fe5ce2a8da51858837eb5b", - "address": "54.180.15.28:26656", - "provider": "Node-A-Team" + id: '87f18756b93d835c59fe5ce2a8da51858837eb5b', + address: '54.180.15.28:26656', + provider: 'Node-A-Team' }, { - "id": "90e48220190b16cad95145b6213d512d703e5617", - "address": "138.197.158.189:26656", - "provider": "Figment" + id: '90e48220190b16cad95145b6213d512d703e5617', + address: '138.197.158.189:26656', + provider: 'Figment' }, { - "id": "ebfb43ca1b592b5f8a1faf3e2aa1a34e8e1099cc", - "address": "iris01.dokia.cloud:26656", - "provider": "Dokia" + id: 'ebfb43ca1b592b5f8a1faf3e2aa1a34e8e1099cc', + address: 'iris01.dokia.cloud:26656', + provider: 'Dokia' }, { - "id": "92fadc989ed29aee0d46afce3226f8565d1f36cb", - "address": "144.91.116.17:46656", - "provider": "syncnode" + id: '92fadc989ed29aee0d46afce3226f8565d1f36cb', + address: '144.91.116.17:46656', + provider: 'syncnode' }, { - "id": "4ac6200974d3fd80a8e49d145a2c254ed37a9b9a", - "address": "159.69.106.156:26656", - "provider": "P2P.ORG" + id: '4ac6200974d3fd80a8e49d145a2c254ed37a9b9a', + address: '159.69.106.156:26656', + provider: 'P2P.ORG' }, { - "id": "4e02a4b4f4350ea2b770cd03dc41fedcadb13176", - "address": "159.69.55.206:26656", - "provider": "P2P.ORG" + id: '4e02a4b4f4350ea2b770cd03dc41fedcadb13176', + address: '159.69.55.206:26656', + provider: 'P2P.ORG' }, { - "id": "84cc32adca3986b35953886ad075431d318a98b5", - "address": "52.214.130.28:46656", - "provider": "stake.fish" + id: '84cc32adca3986b35953886ad075431d318a98b5', + address: '52.214.130.28:46656', + provider: 'stake.fish' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-iris.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-iris.keplr.app', + provider: 'chainapsis' }, { - "address": "https://rpc-irisnet-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-irisnet-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-iris.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-iris.keplr.app', + provider: 'chainapsis' }, { - "address": "https://api-irisnet-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-irisnet-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-irisnet-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-irisnet-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/iris", - "tx_page": "https://www.mintscan.io/iris/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/iris', + tx_page: 'https://www.mintscan.io/iris/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/iris-network", - "tx_page": "https://ping.pub/iris-network/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/iris-network', + tx_page: 'https://ping.pub/iris-network/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/iris-network", - "tx_page": "https://atomscan.com/iris-network/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/iris-network', + tx_page: 'https://atomscan.com/iris-network/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "juno", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Juno", - "chain_id": "juno-1", - "bech32_prefix": "juno", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/CosmosContracts/mainnet/main/juno-1/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/CosmosContracts/juno", - "recommended_version": "v9.0.0", - "compatible_versions": [ - "v9.0.0" - ] - }, - "daemon_name": "junod", - "node_home": "$HOME/.juno", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + $schema: '../chain.schema.json', + chain_name: 'juno', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Juno', + chain_id: 'juno-1', + bech32_prefix: 'juno', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/CosmosContracts/mainnet/main/juno-1/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/CosmosContracts/juno', + recommended_version: 'v9.0.0', + compatible_versions: ['v9.0.0'] + }, + daemon_name: 'junod', + node_home: '$HOME/.juno', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "2484353dab0b2c1275765b8ffa2c50b3b36158ca", - "address": "seed-node.junochain.com:26656" + id: '2484353dab0b2c1275765b8ffa2c50b3b36158ca', + address: 'seed-node.junochain.com:26656' }, { - "id": "ef2315d81caa27e4b0fd0f267d301569ee958893", - "address": "juno-seed.blockpane.com:26656" + id: 'ef2315d81caa27e4b0fd0f267d301569ee958893', + address: 'juno-seed.blockpane.com:26656' }, { - "id": "22ee6e65e5e79cd0b970dd11e52761de8d1d6dfd", - "address": "seeds.pupmos.network:2001", - "provider": "PUPMØS" + id: '22ee6e65e5e79cd0b970dd11e52761de8d1d6dfd', + address: 'seeds.pupmos.network:2001', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b1f46f1a1955fc773d3b73180179b0e0a07adce1", - "address": "162.55.244.250:39656" + id: 'b1f46f1a1955fc773d3b73180179b0e0a07adce1', + address: '162.55.244.250:39656' }, { - "id": "7f593757c0cde8972ce929381d8ac8e446837811", - "address": "178.18.255.244:26656" + id: '7f593757c0cde8972ce929381d8ac8e446837811', + address: '178.18.255.244:26656' }, { - "id": "7b22dfc605989d66b89d2dfe118d799ea5abc2f0", - "address": "167.99.210.65:26656" + id: '7b22dfc605989d66b89d2dfe118d799ea5abc2f0', + address: '167.99.210.65:26656' }, { - "id": "4bd9cac019775047d27f9b9cea66b25270ab497d", - "address": "137.184.7.164:26656" + id: '4bd9cac019775047d27f9b9cea66b25270ab497d', + address: '137.184.7.164:26656' }, { - "id": "bd822a8057902fbc80fd9135e335f0dfefa32342", - "address": "65.21.202.159:38656" + id: 'bd822a8057902fbc80fd9135e335f0dfefa32342', + address: '65.21.202.159:38656' }, { - "id": "15827c6c13f919e4d9c11bcca23dff4e3e79b1b8", - "address": "51.38.52.210:38656" + id: '15827c6c13f919e4d9c11bcca23dff4e3e79b1b8', + address: '51.38.52.210:38656' }, { - "id": "e665df28999b2b7b40cff2fe4030682c380bf294", - "address": "188.40.106.109:38656" + id: 'e665df28999b2b7b40cff2fe4030682c380bf294', + address: '188.40.106.109:38656' }, { - "id": "92804ce50c85ff4c7cf149d347dd880fc3735bf4", - "address": "34.94.231.154:26656" + id: '92804ce50c85ff4c7cf149d347dd880fc3735bf4', + address: '34.94.231.154:26656' }, { - "id": "795ed214b8354e8468f46d1bbbf6e128a88fe3bd", - "address": "34.127.19.222:26656" + id: '795ed214b8354e8468f46d1bbbf6e128a88fe3bd', + address: '34.127.19.222:26656' }, { - "id": "ea9c1ac0e91639b2c7957d9604655e2263abe4e1", - "address": "185.181.103.136:26656" + id: 'ea9c1ac0e91639b2c7957d9604655e2263abe4e1', + address: '185.181.103.136:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-juno.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://rpc-juno.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://rpc-juno.itastakers.com", - "provider": "itastakers" + address: 'https://rpc-juno.itastakers.com', + provider: 'itastakers' }, { - "address": "https://rpc-juno.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-juno.ecostake.com', + provider: 'ecostake' }, { - "address": "https://juno-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://juno-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.juno.pupmos.network", - "provider": "PUPMØS" + address: 'https://rpc.juno.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://rpc.junomint.com", - "provider": "EZStaking.io" + address: 'https://rpc.junomint.com', + provider: 'EZStaking.io' }, { - "address": "https://rpc-juno-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-juno-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-juno.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://lcd-juno.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://lcd-juno.itastakers.com", - "provider": "itastakers" + address: 'https://lcd-juno.itastakers.com', + provider: 'itastakers' }, { - "address": "https://rest-juno.ecostake.com", - "provider": "ecostake" + address: 'https://rest-juno.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api.juno.pupmos.network", - "provider": "PUPMØS" + address: 'https://api.juno.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://lcd.junomint.com", - "provider": "EZStaking.io" + address: 'https://lcd.junomint.com', + provider: 'EZStaking.io' }, { - "address": "https://api-juno-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-juno-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "35.243.205.230:9090", - "provider": "strangelove" + address: '35.243.205.230:9090', + provider: 'strangelove' }, { - "address": "grpc-juno-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-juno-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping.pub", - "url": "https://ping.pub/juno", - "tx_page": "https://ping.pub/juno/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/juno', + tx_page: 'https://ping.pub/juno/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://juno.explorers.guru", - "tx_page": "https://juno.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://juno.explorers.guru', + tx_page: 'https://juno.explorers.guru/transaction/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/juno", - "tx_page": "https://www.mintscan.io/juno/txs/{txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/juno', + tx_page: 'https://www.mintscan.io/juno/txs/{txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/juno", - "tx_page": "https://atomscan.com/juno/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/juno', + tx_page: 'https://atomscan.com/juno/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "kava", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Kava", - "chain_id": "kava_2222-10", - "bech32_prefix": "kava", - "daemon_name": "kava", - "node_home": "$HOME/.kava", - "genesis": { - "genesis_url": "https://kava-genesis-files.s3.us-east-1.amazonaws.com/kava_2222-10/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'kava', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Kava', + chain_id: 'kava_2222-10', + bech32_prefix: 'kava', + daemon_name: 'kava', + node_home: '$HOME/.kava', + genesis: { + genesis_url: + 'https://kava-genesis-files.s3.us-east-1.amazonaws.com/kava_2222-10/genesis.json' }, - "slip44": 459, - "codebase": { - "git_repo": "https://github.com/kava-Labs/kava/", - "recommended_version": "v0.17.3", - "compatible_versions": [ - "v0.17.3" - ] + slip44: 459, + codebase: { + git_repo: 'https://github.com/kava-Labs/kava/', + recommended_version: 'v0.17.3', + compatible_versions: ['v0.17.3'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "5c56fc779cd75c0c4d8225b8afe5259a076608dd", - "address": "18.206.28.123:26656" + id: '5c56fc779cd75c0c4d8225b8afe5259a076608dd', + address: '18.206.28.123:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "7827de7a17483f79a914f790cc8ca8431b2764d7", - "address": "3.221.174.66:26656" + id: '7827de7a17483f79a914f790cc8ca8431b2764d7', + address: '3.221.174.66:26656' }, { - "id": "1b5be4ece049083399e1d467c219c8978ed8d3ca", - "address": "3.217.223.43:26656" + id: '1b5be4ece049083399e1d467c219c8978ed8d3ca', + address: '3.217.223.43:26656' }, { - "id": "e5d74b3f06226fb0798509e36021e81b7bce934d", - "address": "3.209.43.104:26656" + id: 'e5d74b3f06226fb0798509e36021e81b7bce934d', + address: '3.209.43.104:26656' }, { - "id": "fb4a0dbe6947540bc94f4f2f11ce7c70b8fcffc9", - "address": "54.92.246.92:26656" + id: 'fb4a0dbe6947540bc94f4f2f11ce7c70b8fcffc9', + address: '54.92.246.92:26656' }, { - "id": "8b5c4a890c8ae7efbbe3360af71be1c3c3a9e12e", - "address": "121.78.241.68:46656" + id: '8b5c4a890c8ae7efbbe3360af71be1c3c3a9e12e', + address: '121.78.241.68:46656' }, { - "id": "1291ef230910953545fb3d83c4e989578da978a1", - "address": "35.157.56.248:26656" + id: '1291ef230910953545fb3d83c4e989578da978a1', + address: '35.157.56.248:26656' }, { - "id": "06d11b66eac77ad7b149773cf974a595dd947398", - "address": "35.247.175.128:50056" + id: '06d11b66eac77ad7b149773cf974a595dd947398', + address: '35.247.175.128:50056' }, { - "id": "11f965df6fb3091e0fa3a1e4c129ff697939b827", - "address": "52.26.236.235:26656" + id: '11f965df6fb3091e0fa3a1e4c129ff697939b827', + address: '52.26.236.235:26656' }, { - "id": "5a9de901ce9b6961f22cf829f4aefb66dff77d3a", - "address": "54.177.121.234:26656" + id: '5a9de901ce9b6961f22cf829f4aefb66dff77d3a', + address: '54.177.121.234:26656' }, { - "id": "9084eab1fa9414abad5e41416482fe75f39b2071", - "address": "54.215.73.103:26656" + id: '9084eab1fa9414abad5e41416482fe75f39b2071', + address: '54.215.73.103:26656' }, { - "id": "418cc8f69fa0212503dd5b2a9ac3ce0dd3b33e72", - "address": "13.209.245.58:26656" + id: '418cc8f69fa0212503dd5b2a9ac3ce0dd3b33e72', + address: '13.209.245.58:26656' }, { - "id": "f3a64f5d1a992d327a5d2b3282d7df294d787832", - "address": "173.212.197.110:26666" + id: 'f3a64f5d1a992d327a5d2b3282d7df294d787832', + address: '173.212.197.110:26666' }, { - "id": "1074a6f31d2c7df6e21ce0e574a5cb75f1763be1", - "address": "13.56.31.21:26656" + id: '1074a6f31d2c7df6e21ce0e574a5cb75f1763be1', + address: '13.56.31.21:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.data.kava.io", - "provider": "kava" + address: 'https://rpc.data.kava.io', + provider: 'kava' }, { - "address": "https://kava-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://kava-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-kava-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-kava-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.data.kava.io/", - "provider": "kava" + address: 'https://api.data.kava.io/', + provider: 'kava' }, { - "address": "https://api-kava-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-kava-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.data.kava.io/", - "provider": "kava" + address: 'https://grpc.data.kava.io/', + provider: 'kava' }, { - "address": "grpc-kava-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-kava-ia.notional.ventures:443', + provider: 'Notional' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://evm.kava.io/", - "provider": "kava" + address: 'https://evm.kava.io/', + provider: 'kava' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/kava", - "tx_page": "https://www.mintscan.io/kava/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/kava', + tx_page: 'https://www.mintscan.io/kava/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/kava", - "tx_page": "https://ping.pub/kava/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/kava', + tx_page: 'https://ping.pub/kava/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/kava", - "tx_page": "https://atomscan.com/kava/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/kava', + tx_page: 'https://atomscan.com/kava/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "kichain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Ki", - "chain_id": "kichain-2", - "bech32_prefix": "ki", - "daemon_name": "kid", - "node_home": "$HOME/.kid", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/KiFoundation/ki-networks/v0.1/Mainnet/kichain-2/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'kichain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Ki', + chain_id: 'kichain-2', + bech32_prefix: 'ki', + daemon_name: 'kid', + node_home: '$HOME/.kid', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/KiFoundation/ki-networks/v0.1/Mainnet/kichain-2/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "uxki", - "fixed_min_gas_price": 0.025 + denom: 'uxki', + fixed_min_gas_price: 0.025 } ] }, - "codebase": { - "git_repo": "https://github.com/KiFoundation/ki-tools", - "recommended_version": "2.0.1", - "compatible_versions": [ - "2.0.1" - ] + codebase: { + git_repo: 'https://github.com/KiFoundation/ki-tools', + recommended_version: '2.0.1', + compatible_versions: ['2.0.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "24cbccfa8813accd0ebdb09e7cdb54cff2e8fcd9", - "address": "51.89.166.197:26656", - "provider": "kifoundation" + id: '24cbccfa8813accd0ebdb09e7cdb54cff2e8fcd9', + address: '51.89.166.197:26656', + provider: 'kifoundation' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "81396d4703a2e3cbd136c7324e4df5686fd48218", - "address": "35.180.8.214:26656", - "provider": "kifoundation" + id: '81396d4703a2e3cbd136c7324e4df5686fd48218', + address: '35.180.8.214:26656', + provider: 'kifoundation' }, { - "id": "c597db55d9a609b8b77c3d37ecf1fa9a67117cc0", - "address": "144.217.82.4:26656", - "provider": "kifoundation" + id: 'c597db55d9a609b8b77c3d37ecf1fa9a67117cc0', + address: '144.217.82.4:26656', + provider: 'kifoundation' }, { - "id": "50af457247b59aa558a26a14bd7ac4bf86eeae70", - "address": "195.201.164.223:26656", - "provider": "everstake" + id: '50af457247b59aa558a26a14bd7ac4bf86eeae70', + address: '195.201.164.223:26656', + provider: 'everstake' }, { - "id": "81eef39d2ca9a07490857d197423da4ba5e01879", - "address": "15.188.134.35:26656", - "provider": "cosmostation" + id: '81eef39d2ca9a07490857d197423da4ba5e01879', + address: '15.188.134.35:26656', + provider: 'cosmostation' }, { - "id": "5adb5ad6a6fcef624866cefdb551dafdc07f7e78", - "address": "15.188.198.188:26656", - "provider": "cosmostation" + id: '5adb5ad6a6fcef624866cefdb551dafdc07f7e78', + address: '15.188.198.188:26656', + provider: 'cosmostation' }, { - "id": "41b321292cbe50c5c30017cc71c404481be0e20b", - "address": "3.38.12.5:26656", - "provider": "cosmostation" + id: '41b321292cbe50c5c30017cc71c404481be0e20b', + address: '3.38.12.5:26656', + provider: 'cosmostation' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-mainnet.blockchain.ki", - "provider": "kifoundation" + address: 'https://rpc-mainnet.blockchain.ki', + provider: 'kifoundation' }, { - "address": "https://kichain-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://kichain-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.kichain.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://rpc.kichain.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://rpc-kichain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-kichain-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api-mainnet.blockchain.ki", - "provider": "kifoundation" + address: 'https://api-mainnet.blockchain.ki', + provider: 'kifoundation' }, { - "address": "https://lcd.kichain.ezstaking.io", - "provider": "EZStaking.io" + address: 'https://lcd.kichain.ezstaking.io', + provider: 'EZStaking.io' }, { - "address": "https://api-kichain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-kichain-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-kichain-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-kichain-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/ki-chain", - "tx_page": "https://www.mintscan.io/ki-chain/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/ki-chain', + tx_page: 'https://www.mintscan.io/ki-chain/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/kichain", - "tx_page": "https://ping.pub/kichain/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/kichain', + tx_page: 'https://ping.pub/kichain/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/ki-chain", - "tx_page": "https://atomscan.com/ki-chain/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/ki-chain', + tx_page: 'https://atomscan.com/ki-chain/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "konstellation", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Konstellation Network", - "chain_id": "darchub", - "bech32_prefix": "darc", - "daemon_name": "knstld", - "node_home": "$HOME/.knstld", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/Konstellation/konstellation/master/config/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'konstellation', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Konstellation Network', + chain_id: 'darchub', + bech32_prefix: 'darc', + daemon_name: 'knstld', + node_home: '$HOME/.knstld', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/Konstellation/konstellation/master/config/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/konstellation/konstellation", - "recommended_version": "v0.5.0", - "compatible_versions": [ - "v0.5.0" - ] + codebase: { + git_repo: 'https://github.com/konstellation/konstellation', + recommended_version: 'v0.5.0', + compatible_versions: ['v0.5.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7", - "address": "node1.konstellation.tech:26656" + id: '1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7', + address: 'node1.konstellation.tech:26656' }, { - "id": "a32dda75cf5ffe4ab0ff9a0969e525807e01f2e5", - "address": "node2.konstellation.tech:26656" + id: 'a32dda75cf5ffe4ab0ff9a0969e525807e01f2e5', + address: 'node2.konstellation.tech:26656' }, { - "id": "06fed4bbe81ead6073a7254e860331179af74f4c", - "address": "node3.konstellation.tech:26656" + id: '06fed4bbe81ead6073a7254e860331179af74f4c', + address: 'node3.konstellation.tech:26656' }, { - "id": "d4a713a657883cca49d71b1b2cab4ab5e94b0843", - "address": "node4.konstellation.tech:26656" + id: 'd4a713a657883cca49d71b1b2cab4ab5e94b0843', + address: 'node4.konstellation.tech:26656' }, { - "id": "1c9aff1ea9d1cafd584aa61a70582e7c4b0c8675", - "address": "node5.konstellation.tech:26656" + id: '1c9aff1ea9d1cafd584aa61a70582e7c4b0c8675', + address: 'node5.konstellation.tech:26656' }, { - "id": "0f4eef8db37ec7ef9f6d3324689db2847ee8f795", - "address": "node10.konstellation.tech:26656" + id: '0f4eef8db37ec7ef9f6d3324689db2847ee8f795', + address: 'node10.konstellation.tech:26656' }, { - "id": "7e8119050ecb80450ad476b50423b9230c10c8d0", - "address": "node11.konstellation.tech:26656" + id: '7e8119050ecb80450ad476b50423b9230c10c8d0', + address: 'node11.konstellation.tech:26656' }, { - "id": "dbb7589202f6c751f2b93c6bbcd0e660676ab91c", - "address": "node12.konstellation.tech:26656" + id: 'dbb7589202f6c751f2b93c6bbcd0e660676ab91c', + address: 'node12.konstellation.tech:26656' }, { - "id": "f2c2ebec24507d54fea88976e9f93f0fbfa0d6d0", - "address": "node13.konstellation.tech:26656" + id: 'f2c2ebec24507d54fea88976e9f93f0fbfa0d6d0', + address: 'node13.konstellation.tech:26656' }, { - "id": "00f7f4506d84f9d1458201946e1194564b444ce0", - "address": "node14.konstellation.tech:26656" + id: '00f7f4506d84f9d1458201946e1194564b444ce0', + address: 'node14.konstellation.tech:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7", - "address": "node1.konstellation.tech:26656" + id: '1bd4b89e05e5d7ea5d2dba89c799c2e624cb35d7', + address: 'node1.konstellation.tech:26656' }, { - "id": "a32dda75cf5ffe4ab0ff9a0969e525807e01f2e5", - "address": "node2.konstellation.tech:26656" + id: 'a32dda75cf5ffe4ab0ff9a0969e525807e01f2e5', + address: 'node2.konstellation.tech:26656' }, { - "id": "06fed4bbe81ead6073a7254e860331179af74f4c", - "address": "node3.konstellation.tech:26656" + id: '06fed4bbe81ead6073a7254e860331179af74f4c', + address: 'node3.konstellation.tech:26656' }, { - "id": "d4a713a657883cca49d71b1b2cab4ab5e94b0843", - "address": "node4.konstellation.tech:26656" + id: 'd4a713a657883cca49d71b1b2cab4ab5e94b0843', + address: 'node4.konstellation.tech:26656' }, { - "id": "1c9aff1ea9d1cafd584aa61a70582e7c4b0c8675", - "address": "node5.konstellation.tech:26656" + id: '1c9aff1ea9d1cafd584aa61a70582e7c4b0c8675', + address: 'node5.konstellation.tech:26656' }, { - "id": "0f4eef8db37ec7ef9f6d3324689db2847ee8f795", - "address": "node10.konstellation.tech:26656" + id: '0f4eef8db37ec7ef9f6d3324689db2847ee8f795', + address: 'node10.konstellation.tech:26656' }, { - "id": "7e8119050ecb80450ad476b50423b9230c10c8d0", - "address": "node11.konstellation.tech:26656" + id: '7e8119050ecb80450ad476b50423b9230c10c8d0', + address: 'node11.konstellation.tech:26656' }, { - "id": "dbb7589202f6c751f2b93c6bbcd0e660676ab91c", - "address": "node12.konstellation.tech:26656" + id: 'dbb7589202f6c751f2b93c6bbcd0e660676ab91c', + address: 'node12.konstellation.tech:26656' }, { - "id": "f2c2ebec24507d54fea88976e9f93f0fbfa0d6d0", - "address": "node13.konstellation.tech:26656" + id: 'f2c2ebec24507d54fea88976e9f93f0fbfa0d6d0', + address: 'node13.konstellation.tech:26656' }, { - "id": "00f7f4506d84f9d1458201946e1194564b444ce0", - "address": "node14.konstellation.tech:26656" + id: '00f7f4506d84f9d1458201946e1194564b444ce0', + address: 'node14.konstellation.tech:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://node1.konstellation.tech:26657", - "provider": "konstellation" + address: 'https://node1.konstellation.tech:26657', + provider: 'konstellation' }, { - "address": "https://konstellation-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://konstellation-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-konstellation-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-konstellation-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://node1.konstellation.tech:1318", - "provider": "konstellation" + address: 'https://node1.konstellation.tech:1318', + provider: 'konstellation' }, { - "address": "https://api-konstellation-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-konstellation-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-konstellation-ia.notional.ventures:443/", - "provider": "Notional" + address: 'grpc-konstellation-ia.notional.ventures:443/', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "konstellation", - "url": "https://explorer.konstellation.tech/", - "tx_page": "https://explorer.konstellation.tech/tx/${txHash}" + kind: 'konstellation', + url: 'https://explorer.konstellation.tech/', + tx_page: 'https://explorer.konstellation.tech/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "likecoin", - "status": "live", - "network_type": "mainnet", - "pretty_name": "LikeCoin", - "chain_id": "likecoin-mainnet-2", - "bech32_prefix": "like", - "daemon_name": "liked", - "node_home": "$HOME/.liked", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/likecoin/mainnet/982c14399089950a59d3ebbedcbbc7ead6040457/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "nanolike" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/likecoin/likecoin-chain", - "recommended_version": "v3.0.0", - "compatible_versions": [ - "v3.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Linux_x86_64.tar.gz", - "linux/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Darwin_x86_64.tar.gz", - "darwin/arm64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Windows_x86_64.zip" + $schema: '../chain.schema.json', + chain_name: 'likecoin', + status: 'live', + network_type: 'mainnet', + pretty_name: 'LikeCoin', + chain_id: 'likecoin-mainnet-2', + bech32_prefix: 'like', + daemon_name: 'liked', + node_home: '$HOME/.liked', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/likecoin/mainnet/982c14399089950a59d3ebbedcbbc7ead6040457/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'nanolike' + } + ] + }, + codebase: { + git_repo: 'https://github.com/likecoin/likecoin-chain', + recommended_version: 'v3.0.0', + compatible_versions: ['v3.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Linux_x86_64.tar.gz', + 'linux/arm64': + 'https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Darwin_x86_64.tar.gz', + 'darwin/arm64': + 'https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/likecoin/likecoin-chain/releases/download/v3.0.0/likecoin-chain_3.0.0_Windows_x86_64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "913bd0f4bea4ef512ffba39ab90eae84c1420862", - "address": "34.82.131.35:26656", - "provider": "like.co" + id: '913bd0f4bea4ef512ffba39ab90eae84c1420862', + address: '34.82.131.35:26656', + provider: 'like.co' }, { - "id": "e44a2165ac573f84151671b092aa4936ac305e2a", - "address": "nnkken.dev:26656", - "provider": "nnkken" + id: 'e44a2165ac573f84151671b092aa4936ac305e2a', + address: 'nnkken.dev:26656', + provider: 'nnkken' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "f087d600cf3d34d3bac04a9723a53180619e8445", - "address": "35.247.83.138:26656", - "provider": "like.co" + id: 'f087d600cf3d34d3bac04a9723a53180619e8445', + address: '35.247.83.138:26656', + provider: 'like.co' }, { - "id": "75822abfbcc23dcefd025e245b46e2dec5357f75", - "address": "207.246.101.4:26656", - "provider": "forbole" + id: '75822abfbcc23dcefd025e245b46e2dec5357f75', + address: '207.246.101.4:26656', + provider: 'forbole' }, { - "id": "9f62898076c35d78df21c1d2280be922221c23af", - "address": "139.59.8.62:2180", - "provider": "Notional" + id: '9f62898076c35d78df21c1d2280be922221c23af', + address: '139.59.8.62:2180', + provider: 'Notional' }, { - "id": "20afcd5637b2278efc78c54fd523bd331d1820f2", - "address": "78.47.110.110:26656", - "provider": "moonbeam" + id: '20afcd5637b2278efc78c54fd523bd331d1820f2', + address: '78.47.110.110:26656', + provider: 'moonbeam' }, { - "id": "5940f55e0e7e2f1a2c9507bf62fbfd7c6d2f3874", - "address": "likechain.oursky.com:26656", - "provider": "Oursky" + id: '5940f55e0e7e2f1a2c9507bf62fbfd7c6d2f3874', + address: 'likechain.oursky.com:26656', + provider: 'Oursky' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://mainnet-node.like.co/rpc/", - "provider": "like.co" + address: 'https://mainnet-node.like.co/rpc/', + provider: 'like.co' }, { - "address": "https://rpc-likecoin-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-likecoin-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://mainnet-node.like.co", - "provider": "like.co" + address: 'https://mainnet-node.like.co', + provider: 'like.co' }, { - "address": "https://api-likecoin-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-likecoin-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-likecoin-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-likecoin-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "bigdipper", - "url": "https://likecoin.bigdipper.live/", - "tx_page": "https://likecoin.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://likecoin.bigdipper.live/', + tx_page: 'https://likecoin.bigdipper.live/transactions/${txHash}' }, { - "kind": "lunie-ng", - "url": "https://stake.like.co/" + kind: 'lunie-ng', + url: 'https://stake.like.co/' }, { - "kind": "ping-pub", - "url": "https://ping.pub/likecoin", - "tx_page": "https://ping.pub/likecoin/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/likecoin', + tx_page: 'https://ping.pub/likecoin/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/likecoin", - "tx_page": "https://atomscan.com/likecoin/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/likecoin', + tx_page: 'https://atomscan.com/likecoin/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "logos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Logos", - "chain_id": "logos_7002-1", - "bech32_prefix": "logos", - "daemon_name": "logosd", - "node_home": "$HOME/.logos", - "genesis": { - "genesis_url": "" + $schema: '../chain.schema.json', + chain_name: 'logos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Logos', + chain_id: 'logos_7002-1', + bech32_prefix: 'logos', + daemon_name: 'logosd', + node_home: '$HOME/.logos', + genesis: { + genesis_url: '' }, - "slip44": 60, - "fees": { - "fee_tokens": [ + slip44: 60, + fees: { + fee_tokens: [ { - "denom": "aLYT" + denom: 'aLYT' } ] }, - "peers": { - "seeds": [], - "persistent_peers": [] + peers: { + seeds: [], + persistent_peers: [] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://logos-rpc.provable.dev:443/", - "provider": "laurel.provable" + address: 'https://logos-rpc.provable.dev:443/', + provider: 'laurel.provable' } ], - "rest": [ + rest: [ { - "address": "https://logos.provable.dev/rest/", - "provider": "laurel.provable" + address: 'https://logos.provable.dev/rest/', + provider: 'laurel.provable' } ], - "grpc": [ + grpc: [ { - "address": "https://logos-grpc.provable.dev:443", - "provider": "laurel.provable" + address: 'https://logos-grpc.provable.dev:443', + provider: 'laurel.provable' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://logos-evm.provable.dev/", - "provider": "laurel.provable" + address: 'https://logos-evm.provable.dev/', + provider: 'laurel.provable' } ] }, - "explorers": [], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.svg" + explorers: [], + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/logos/images/logos.svg' } }, { - "$schema": "../chain.schema.json", - "chain_name": "lumenx", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Lumen Network", - "chain_id": "LumenX", - "bech32_prefix": "lumen", - "daemon_name": "lumenxd", - "node_home": "$HOME/.lumenx", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/metaprotocol-ai/lumenx/master/config/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'lumenx', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Lumen Network', + chain_id: 'LumenX', + bech32_prefix: 'lumen', + daemon_name: 'lumenxd', + node_home: '$HOME/.lumenx', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/metaprotocol-ai/lumenx/master/config/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "ulumen", - "fixed_min_gas_price": 0.0025 + denom: 'ulumen', + fixed_min_gas_price: 0.0025 } ] }, - "codebase": { - "git_repo": "https://github.com/metaprotocol-ai/lumenx", - "recommended_version": "v0.1.0", - "compatible_versions": [ - "v0.1.0" - ] + codebase: { + git_repo: 'https://github.com/metaprotocol-ai/lumenx', + recommended_version: 'v0.1.0', + compatible_versions: ['v0.1.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "bc22063df30a0644df742cdb2764b1004df6e3e3", - "address": "node1.lumenex.io:26656" + id: 'bc22063df30a0644df742cdb2764b1004df6e3e3', + address: 'node1.lumenex.io:26656' }, { - "id": "9cd5f77ac27254891f64801470b0c3432188c62c", - "address": "node2.lumenex.io:26656" + id: '9cd5f77ac27254891f64801470b0c3432188c62c', + address: 'node2.lumenex.io:26656' }, { - "id": "78669849476c8b728abe178475c6f016edf175cf", - "address": "node3.lumenex.io:26656" + id: '78669849476c8b728abe178475c6f016edf175cf', + address: 'node3.lumenex.io:26656' }, { - "id": "48444a4bacc0cafa049d777152473769ab17c0c3", - "address": "node4.lumenex.io:26656" + id: '48444a4bacc0cafa049d777152473769ab17c0c3', + address: 'node4.lumenex.io:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "bc22063df30a0644df742cdb2764b1004df6e3e3", - "address": "node1.lumenex.io:26656" + id: 'bc22063df30a0644df742cdb2764b1004df6e3e3', + address: 'node1.lumenex.io:26656' }, { - "id": "9cd5f77ac27254891f64801470b0c3432188c62c", - "address": "node2.lumenex.io:26656" + id: '9cd5f77ac27254891f64801470b0c3432188c62c', + address: 'node2.lumenex.io:26656' }, { - "id": "78669849476c8b728abe178475c6f016edf175cf", - "address": "node3.lumenex.io:26656" + id: '78669849476c8b728abe178475c6f016edf175cf', + address: 'node3.lumenex.io:26656' }, { - "id": "48444a4bacc0cafa049d777152473769ab17c0c3", - "address": "node4.lumenex.io:26656" + id: '48444a4bacc0cafa049d777152473769ab17c0c3', + address: 'node4.lumenex.io:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.helios-1.lumenex.io", - "provider": "metaprotocol" + address: 'https://rpc.helios-1.lumenex.io', + provider: 'metaprotocol' } ], - "rest": [ + rest: [ { - "address": "https://api.helios-1.lumenex.io/", - "provider": "metaprotocol" + address: 'https://api.helios-1.lumenex.io/', + provider: 'metaprotocol' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://scope.helios-1.lumenex.io/lumenx", - "tx_page": "https://scope.helios-1.lumenex.io/lumenx/tx/${txHash}" + kind: 'ping-pub', + url: 'https://scope.helios-1.lumenex.io/lumenx', + tx_page: 'https://scope.helios-1.lumenex.io/lumenx/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "lumnetwork", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Lum Network", - "chain_id": "lum-network-1", - "bech32_prefix": "lum", - "daemon_name": "lumd", - "node_home": "$HOME/.lumd", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/lum-network/mainnet/master/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 880, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'lumnetwork', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Lum Network', + chain_id: 'lum-network-1', + bech32_prefix: 'lum', + daemon_name: 'lumd', + node_home: '$HOME/.lumd', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/lum-network/mainnet/master/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 880, + fees: { + fee_tokens: [ { - "denom": "ulum", - "fixed_min_gas_price": 0.001 + denom: 'ulum', + fixed_min_gas_price: 0.001 } ] }, - "codebase": { - "git_repo": "https://github.com/lum-network/chain", - "recommended_version": "v1.0.5", - "compatible_versions": [ - "v1.0.5" - ] + codebase: { + git_repo: 'https://github.com/lum-network/chain', + recommended_version: 'v1.0.5', + compatible_versions: ['v1.0.5'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "19ad16527c98b782ee35df56b65a3a251bd99971", - "address": "peer-1.mainnet.lum.network:26656", - "provider": "lum foundation" + id: '19ad16527c98b782ee35df56b65a3a251bd99971', + address: 'peer-1.mainnet.lum.network:26656', + provider: 'lum foundation' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b47626b9d78ed7ed3c413304387026f907c70cbe", - "address": "peer-0.mainnet.lum.network:26656", - "provider": "lum foundation" + id: 'b47626b9d78ed7ed3c413304387026f907c70cbe', + address: 'peer-0.mainnet.lum.network:26656', + provider: 'lum foundation' }, { - "id": "e12fcc7d9fc9b8b2901aec950f161418794cccf0", - "address": "65.108.77.38:26656", - "provider": "everstake" + id: 'e12fcc7d9fc9b8b2901aec950f161418794cccf0', + address: '65.108.77.38:26656', + provider: 'everstake' }, { - "id": "4166de0e7721b6eec9c776abf2c38c40e7f820c5", - "address": "202.61.239.130:26656", - "provider": "stakecito" + id: '4166de0e7721b6eec9c776abf2c38c40e7f820c5', + address: '202.61.239.130:26656', + provider: 'stakecito' }, { - "id": "fbaeeff89ec94a4f6c4a2a61e24af7d06b3be0c8", - "address": "46.166.140.180:26656", - "provider": "simply staking" + id: 'fbaeeff89ec94a4f6c4a2a61e24af7d06b3be0c8', + address: '46.166.140.180:26656', + provider: 'simply staking' }, { - "id": "5a29947212a2615e43dac54deb55356a162e173a", - "address": "35.181.76.160:26656", - "provider": "imperator" + id: '5a29947212a2615e43dac54deb55356a162e173a', + address: '35.181.76.160:26656', + provider: 'imperator' }, { - "id": "5ea36d78ae774c9086c2d3fc8b91f12aa4bf3029", - "address": "46.101.251.76:26656", - "provider": "cryptocrew" + id: '5ea36d78ae774c9086c2d3fc8b91f12aa4bf3029', + address: '46.101.251.76:26656', + provider: 'cryptocrew' }, { - "id": "433c60a5bc0a693484b7af26208922b84773117e", - "address": "34.209.132.0:26656", - "provider": "cosmostation" + id: '433c60a5bc0a693484b7af26208922b84773117e', + address: '34.209.132.0:26656', + provider: 'cosmostation' }, { - "id": "9afac13ba62fbfaf8d06867c30007162511093c0", - "address": "54.214.134.223:26656", - "provider": "cosmostation" + id: '9afac13ba62fbfaf8d06867c30007162511093c0', + address: '54.214.134.223:26656', + provider: 'cosmostation' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://node0.mainnet.lum.network/rpc", - "provider": "Lum Foundation" + address: 'https://node0.mainnet.lum.network/rpc', + provider: 'Lum Foundation' } ], - "rest": [ + rest: [ { - "address": "https://node0.mainnet.lum.network/rest", - "provider": "Lum Foundation" + address: 'https://node0.mainnet.lum.network/rest', + provider: 'Lum Foundation' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/lum", - "tx_page": "https://www.mintscan.io/lum/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/lum', + tx_page: 'https://www.mintscan.io/lum/txs/${txHash}' }, { - "kind": "lum-network", - "url": "https://explorer.lum.network", - "tx_page": "https://explorer.lum.network/txs/${txHash}" + kind: 'lum-network', + url: 'https://explorer.lum.network', + tx_page: 'https://explorer.lum.network/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/lum-network", - "tx_page": "https://ping.pub/lum-network/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/lum-network', + tx_page: 'https://ping.pub/lum-network/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/lum-network", - "tx_page": "https://atomscan.com/lum-network/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/lum-network', + tx_page: 'https://atomscan.com/lum-network/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "meme", - "status": "live", - "network_type": "mainnet", - "pretty_name": "MEME", - "chain_id": "meme-1", - "bech32_prefix": "meme", - "daemon_name": "memed", - "node_home": "$HOME/.memed", - "genesis": { - "genesis_url": "https://github.com/memecosmos/mainnet/raw/main/meme-1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'meme', + status: 'live', + network_type: 'mainnet', + pretty_name: 'MEME', + chain_id: 'meme-1', + bech32_prefix: 'meme', + daemon_name: 'memed', + node_home: '$HOME/.memed', + genesis: { + genesis_url: + 'https://github.com/memecosmos/mainnet/raw/main/meme-1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "umeme", - "fixed_min_gas_price": 0.025 + denom: 'umeme', + fixed_min_gas_price: 0.025 } ] }, - "codebase": { - "git_repo": "https://github.com/memecosmos/meme/", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ] + codebase: { + git_repo: 'https://github.com/memecosmos/meme/', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "dbe97ebeb4d07999a1fe2de2f92a56cc07385259", - "address": "seeds.pupmos.network:2005", - "provider": "PUPMØS" + id: 'dbe97ebeb4d07999a1fe2de2f92a56cc07385259', + address: 'seeds.pupmos.network:2005', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "a9959fef554ee407f23dffbcd4c0711e02a07d18", - "address": "207.246.107.204:26656", - "provider": "MEME Foundation" + id: 'a9959fef554ee407f23dffbcd4c0711e02a07d18', + address: '207.246.107.204:26656', + provider: 'MEME Foundation' }, { - "id": "f6e846ee01e14bc06e9b1b8be9237d8c365614e7", - "address": "45.76.154.44:26656", - "provider": "MEME Foundation" + id: 'f6e846ee01e14bc06e9b1b8be9237d8c365614e7', + address: '45.76.154.44:26656', + provider: 'MEME Foundation' }, { - "id": "1e2a4e7c513d1ba267fe2e689d4dfe6d6105f644", - "address": "139.180.140.142:26656", - "provider": "MEME Foundation" + id: '1e2a4e7c513d1ba267fe2e689d4dfe6d6105f644', + address: '139.180.140.142:26656', + provider: 'MEME Foundation' }, { - "id": "c57fce65a0e6be87763ae38d607b817b3acde620", - "address": "173.212.215.104:26656", - "provider": "Theamsolutions" + id: 'c57fce65a0e6be87763ae38d607b817b3acde620', + address: '173.212.215.104:26656', + provider: 'Theamsolutions' }, { - "id": "c1e05690adfbc970817e0debb5d7770ee9f2f3ac", - "address": "65.108.131.174:47656", - "provider": "Polkachu" + id: 'c1e05690adfbc970817e0debb5d7770ee9f2f3ac', + address: '65.108.131.174:47656', + provider: 'Polkachu' }, { - "id": "fc21b0c26b6840915f6fe2daf56565e1c30e0956", - "address": "162.55.245.104:26656", - "provider": "PUPMØS" + id: 'fc21b0c26b6840915f6fe2daf56565e1c30e0956', + address: '162.55.245.104:26656', + provider: 'PUPMØS' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-meme-1.meme.sx/", - "provider": "MEME Foundation" + address: 'https://rpc-meme-1.meme.sx/', + provider: 'MEME Foundation' }, { - "address": "https://rpc.meme.interbloc.org/", - "provider": "Interbloc" + address: 'https://rpc.meme.interbloc.org/', + provider: 'Interbloc' }, { - "address": "https://meme-rpc.polkachu.com/", - "provider": "Polkachu" + address: 'https://meme-rpc.polkachu.com/', + provider: 'Polkachu' }, { - "address": "https://rpc.meme.pupmos.network/", - "provider": "PUPMØS" + address: 'https://rpc.meme.pupmos.network/', + provider: 'PUPMØS' } ], - "rest": [ + rest: [ { - "address": "https://api-meme-1.meme.sx/", - "provider": "MEME Foundation" + address: 'https://api-meme-1.meme.sx/', + provider: 'MEME Foundation' }, { - "address": "https://api.meme.interbloc.org/", - "provider": "Interbloc" + address: 'https://api.meme.interbloc.org/', + provider: 'Interbloc' }, { - "address": "https://meme-api.polkachu.com/", - "provider": "Polkachu" + address: 'https://meme-api.polkachu.com/', + provider: 'Polkachu' }, { - "address": "https://api.meme.pupmos.network/", - "provider": "PUPMØS" + address: 'https://api.meme.pupmos.network/', + provider: 'PUPMØS' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping.pub", - "url": "https://ping.pub/meme", - "tx_page": "https://ping.pub/meme/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/meme', + tx_page: 'https://ping.pub/meme/tx/${txHash}' }, { - "kind": "atomscan.com", - "url": "https://atomscan.com/meme", - "tx_page": "https://atomscan.com/meme/transactions/${txHash}", - "account_page": "https://atomscan.com/meme/accounts/${accountAddress}" + kind: 'atomscan.com', + url: 'https://atomscan.com/meme', + tx_page: 'https://atomscan.com/meme/transactions/${txHash}', + account_page: 'https://atomscan.com/meme/accounts/${accountAddress}' }, { - "kind": "MEME Explorer", - "url": "https://explorer.meme.sx/meme", - "tx_page": "https://explorer.meme.sx/meme/tx/${txHash}" + kind: 'MEME Explorer', + url: 'https://explorer.meme.sx/meme', + tx_page: 'https://explorer.meme.sx/meme/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/meme", - "tx_page": "https://atomscan.com/meme/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/meme', + tx_page: 'https://atomscan.com/meme/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "microtick", - "status": "killed", - "network_type": "mainnet", - "pretty_name": "Microtick", - "chain_id": "microtick-1", - "bech32_prefix": "micro", - "daemon_name": "mtm", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/microtick/stargate-genesis/master/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/microtick/mtzone", - "recommended_version": "mtm-v2.0.4", - "compatible_versions": [ - "mtm-v2.0.4" - ] - }, - "explorers": [ - { - "kind": "ping-pub", - "url": "https://ping.pub/microtick", - "tx_page": "https://ping.pub/microtick/tx/${txHash}" + $schema: '../chain.schema.json', + chain_name: 'microtick', + status: 'killed', + network_type: 'mainnet', + pretty_name: 'Microtick', + chain_id: 'microtick-1', + bech32_prefix: 'micro', + daemon_name: 'mtm', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/microtick/stargate-genesis/master/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/microtick/mtzone', + recommended_version: 'mtm-v2.0.4', + compatible_versions: ['mtm-v2.0.4'] + }, + explorers: [ + { + kind: 'ping-pub', + url: 'https://ping.pub/microtick', + tx_page: 'https://ping.pub/microtick/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "mythos", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Mythos", - "chain_id": "mythos_7001-1", - "bech32_prefix": "mythos", - "daemon_name": "mythosd", - "node_home": "$HOME/.mythosd", - "genesis": { - "genesis_url": "" + $schema: '../chain.schema.json', + chain_name: 'mythos', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Mythos', + chain_id: 'mythos_7001-1', + bech32_prefix: 'mythos', + daemon_name: 'mythosd', + node_home: '$HOME/.mythosd', + genesis: { + genesis_url: '' }, - "slip44": 60, - "fees": { - "fee_tokens": [ + slip44: 60, + fees: { + fee_tokens: [ { - "denom": "aMYT" + denom: 'aMYT' } ] }, - "peers": { - "seeds": [], - "persistent_peers": [] + peers: { + seeds: [], + persistent_peers: [] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://mythos-rpc.provable.dev:443/", - "provider": "laurel.provable" + address: 'https://mythos-rpc.provable.dev:443/', + provider: 'laurel.provable' } ], - "rest": [ + rest: [ { - "address": "https://mythos.provable.dev/rest/", - "provider": "laurel.provable" + address: 'https://mythos.provable.dev/rest/', + provider: 'laurel.provable' } ], - "grpc": [ + grpc: [ { - "address": "https://mythos-grpc.provable.dev:443", - "provider": "laurel.provable" + address: 'https://mythos-grpc.provable.dev:443', + provider: 'laurel.provable' } ], - "evm-http-jsonrpc": [ + 'evm-http-jsonrpc': [ { - "address": "https://mythos-evm.provable.dev/", - "provider": "laurel.provable" + address: 'https://mythos-evm.provable.dev/', + provider: 'laurel.provable' } ] }, - "explorers": [], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.svg" + explorers: [], + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mythos/images/mythos.svg' } }, { - "$schema": "../chain.schema.json", - "chain_name": "nomic", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Nomic Stakenet 3", - "chain_id": "nomic-stakenet-3", - "bech32_prefix": "nomic", - "daemon_name": "nomic", - "node_home": "$HOME/.nomic-stakenet-3", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/nomic-io/nomic/develop/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/nomic-io/nomic", - "recommended_version": "v0.5.0", - "compatible_versions": [ - "v0.5.0" - ], - "binaries": { - "linux/amd64": "https://github.com/ovrclk/akash/releases/download/v0.12.1/akash_0.12.1_linux_amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'nomic', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Nomic Stakenet 3', + chain_id: 'nomic-stakenet-3', + bech32_prefix: 'nomic', + daemon_name: 'nomic', + node_home: '$HOME/.nomic-stakenet-3', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/nomic-io/nomic/develop/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/nomic-io/nomic', + recommended_version: 'v0.5.0', + compatible_versions: ['v0.5.0'], + binaries: { + 'linux/amd64': + 'https://github.com/ovrclk/akash/releases/download/v0.12.1/akash_0.12.1_linux_amd64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "238120dfe716082754048057c1fdc3d6f09609b5", - "address": "161.35.51.124:26656" + id: '238120dfe716082754048057c1fdc3d6f09609b5', + address: '161.35.51.124:26656' }, { - "id": "a67d7a4d90f84d5c67bfc196aac68441ba9484a6", - "address": "167.99.119.196:26659" + id: 'a67d7a4d90f84d5c67bfc196aac68441ba9484a6', + address: '167.99.119.196:26659' } ], - "persistent_peers": [] + persistent_peers: [] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://138.197.71.46:26657", - "provider": "nomic-io" + address: 'http://138.197.71.46:26657', + provider: 'nomic-io' } ], - "rest": [ + rest: [ { - "address": "https://app.nomic.io:8443", - "provider": "nomic-io" + address: 'https://app.nomic.io:8443', + provider: 'nomic-io' } ] } }, { - "$schema": "../chain.schema.json", - "chain_name": "octa", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Octa", - "chain_id": "octa", - "bech32_prefix": "octa", - "daemon_name": "octadaemon", - "node_home": "$HOME/.octa", - "genesis": { - "genesis_url": "https://octa-coin-assets.s3.eu-central-1.amazonaws.com/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uocta", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "", - "recommended_version": "", - "compatible_versions": [], - "binaries": { - "linux/amd64": "", - "linux/arm64": "", - "darwin/amd64": "", - "windows/amd64": "" + $schema: '../chain.schema.json', + chain_name: 'octa', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Octa', + chain_id: 'octa', + bech32_prefix: 'octa', + daemon_name: 'octadaemon', + node_home: '$HOME/.octa', + genesis: { + genesis_url: + 'https://octa-coin-assets.s3.eu-central-1.amazonaws.com/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uocta', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: '', + recommended_version: '', + compatible_versions: [], + binaries: { + 'linux/amd64': '', + 'linux/arm64': '', + 'darwin/amd64': '', + 'windows/amd64': '' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "d35844470ba3c80f052091a9c86d44198e579246", - "address": "3.73.39.110:26656" + id: 'd35844470ba3c80f052091a9c86d44198e579246', + address: '3.73.39.110:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "935118052f48eede9ed7d38d3da8e20cb5747e39", - "address": "3.123.21.45:26656", - "provider": "GenesisNode" + id: '935118052f48eede9ed7d38d3da8e20cb5747e39', + address: '3.123.21.45:26656', + provider: 'GenesisNode' }, { - "id": "61823fb4af8a48ac161522114c6640b76fd8a6d9", - "address": "3.71.102.151:26656", - "provider": "Basic_Validator" + id: '61823fb4af8a48ac161522114c6640b76fd8a6d9', + address: '3.71.102.151:26656', + provider: 'Basic_Validator' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://3.71.102.151:26657", - "provider": "octa" + address: 'http://3.71.102.151:26657', + provider: 'octa' } ], - "rest": [ + rest: [ { - "address": "http://3.71.102.151:1317", - "provider": "octa" + address: 'http://3.71.102.151:1317', + provider: 'octa' } ] }, - "explorers": [ + explorers: [ { - "kind": "Octa explorer", - "url": "http://explorer.octa-coin.com/", - "tx_page": "http://explorer.octa-coin.com/txs/${txHash}" + kind: 'Octa explorer', + url: 'http://explorer.octa-coin.com/', + tx_page: 'http://explorer.octa-coin.com/txs/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "odin", - "status": "live", - "network_type": "mainnet", - "pretty_name": "OdinChain", - "chain_id": "odin-mainnet-freya", - "bech32_prefix": "odin", - "daemon_name": "odind", - "node_home": "$HOME/.odin", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ODIN-PROTOCOL/networks/master/mainnets/odin-mainnet-freya/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'odin', + status: 'live', + network_type: 'mainnet', + pretty_name: 'OdinChain', + chain_id: 'odin-mainnet-freya', + bech32_prefix: 'odin', + daemon_name: 'odind', + node_home: '$HOME/.odin', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ODIN-PROTOCOL/networks/master/mainnets/odin-mainnet-freya/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "loki", - "fixed_min_gas_price": 0.0125 + denom: 'loki', + fixed_min_gas_price: 0.0125 } ] }, - "codebase": { - "git_repo": "https://github.com/ODIN-PROTOCOL/odin-core", - "recommended_version": "v0.5.5", - "compatible_versions": [ - "v0.5.5" - ] + codebase: { + git_repo: 'https://github.com/ODIN-PROTOCOL/odin-core', + recommended_version: 'v0.5.5', + compatible_versions: ['v0.5.5'] }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "9d16b1ce74a34b869d69ad5fe34eaca614a36ecd", - "address": "35.241.238.207:26656", - "provider": "Odin Protocol" + id: '9d16b1ce74a34b869d69ad5fe34eaca614a36ecd', + address: '35.241.238.207:26656', + provider: 'Odin Protocol' }, { - "id": "02e905f49e1b869f55ad010979931b542302a9e6", - "address": "35.241.221.154:26656", - "provider": "Odin Protocol" + id: '02e905f49e1b869f55ad010979931b542302a9e6', + address: '35.241.221.154:26656', + provider: 'Odin Protocol' }, { - "id": "4847c79f1601d24d3605278a0183d416a99aa093", - "address": "34.140.252.7:26656", - "provider": "Odin Protocol" + id: '4847c79f1601d24d3605278a0183d416a99aa093', + address: '34.140.252.7:26656', + provider: 'Odin Protocol' }, { - "id": "0165cd0d60549a37abb00b6acc8227a54609c648", - "address": "34.79.179.216:26656", - "provider": "Odin Protocol" + id: '0165cd0d60549a37abb00b6acc8227a54609c648', + address: '34.79.179.216:26656', + provider: 'Odin Protocol' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://34.79.179.216:26657", - "provider": "Odin Protocol" + address: 'http://34.79.179.216:26657', + provider: 'Odin Protocol' } ], - "rest": [ + rest: [ { - "address": "http://34.79.179.216:1317/", - "provider": "Odin Protocol" + address: 'http://34.79.179.216:1317/', + provider: 'Odin Protocol' } ] }, - "explorers": [ + explorers: [ { - "kind": "odin web", - "url": "https://mainnet.odinprotocol.io/", - "tx_page": "https://mainnet.odinprotocol.io/transactions/${txHash}" + kind: 'odin web', + url: 'https://mainnet.odinprotocol.io/', + tx_page: 'https://mainnet.odinprotocol.io/transactions/${txHash}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/odin", - "tx_page": "https://ping.pub/odin/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/odin', + tx_page: 'https://ping.pub/odin/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "omniflixhub", - "status": "live", - "network_type": "mainnet", - "pretty_name": "OmniFlix Hub", - "chain_id": "omniflixhub-1", - "daemon_name": "omniflixhubd", - "node_home": "$HOME/.omniflixhub", - "bech32_prefix": "omniflix", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/OmniFlix/mainnet/main/omniflixhub-1/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'omniflixhub', + status: 'live', + network_type: 'mainnet', + pretty_name: 'OmniFlix Hub', + chain_id: 'omniflixhub-1', + daemon_name: 'omniflixhubd', + node_home: '$HOME/.omniflixhub', + bech32_prefix: 'omniflix', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/OmniFlix/mainnet/main/omniflixhub-1/genesis.json' }, - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/OmniFlix/omniflixhub", - "recommended_version": "v0.4.1", - "compatible_versions": [ - "v0.4.1" - ] + slip44: 118, + codebase: { + git_repo: 'https://github.com/OmniFlix/omniflixhub', + recommended_version: 'v0.4.1', + compatible_versions: ['v0.4.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "9d75a06ebd3732a041df459849c21b87b2c55cde", - "address": "35.187.240.195:26656" + id: '9d75a06ebd3732a041df459849c21b87b2c55cde', + address: '35.187.240.195:26656' }, { - "id": "19feae28207474eb9f168fff9720fd4d418df1ed", - "address": "35.240.196.102:26656" + id: '19feae28207474eb9f168fff9720fd4d418df1ed', + address: '35.240.196.102:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "2df1f357f08049ba0c0dddfffe805f0e135e54ec", - "address": "35.247.185.216:26656" + id: '2df1f357f08049ba0c0dddfffe805f0e135e54ec', + address: '35.247.185.216:26656' }, { - "id": "6198ac4bc907f6d1a78309ef58491370afc49799", - "address": "34.124.195.219:26656" + id: '6198ac4bc907f6d1a78309ef58491370afc49799', + address: '34.124.195.219:26656' }, { - "id": "574b37cc6e80663e70673cbe848147c2643ca48e", - "address": "35.240.187.174:26656" + id: '574b37cc6e80663e70673cbe848147c2643ca48e', + address: '35.240.187.174:26656' }, { - "id": "8313c9d55006da030588f61806b3e056a113e6e8", - "address": "34.87.18.204:26656" + id: '8313c9d55006da030588f61806b3e056a113e6e8', + address: '34.87.18.204:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://omniflixhub-rpc.skynetvalidators.com", - "provider": "skynet-validators" + address: 'https://omniflixhub-rpc.skynetvalidators.com', + provider: 'skynet-validators' }, { - "address": "https://rpc.omniflix.nodestake.top", - "provider": "NodeStake" + address: 'https://rpc.omniflix.nodestake.top', + provider: 'NodeStake' } ], - "rest": [ + rest: [ { - "address": "https://omniflixhub-api.skynetvalidators.com", - "provider": "skynet-validators" + address: 'https://omniflixhub-api.skynetvalidators.com', + provider: 'skynet-validators' }, { - "address": "https://api.omniflix.nodestake.top", - "provider": "NodeStake" + address: 'https://api.omniflix.nodestake.top', + provider: 'NodeStake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.omniflix.nodestake.top", - "provider": "NodeStake" + address: 'https://grpc.omniflix.nodestake.top', + provider: 'NodeStake' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/omniflix", - "tx_page": "https://www.mintscan.io/omniflix/txs/${txHash}", - "account_page": "https://www.mintscan.io/omniflix/account/${accountAddress}" + kind: 'mintscan', + url: 'https://www.mintscan.io/omniflix', + tx_page: 'https://www.mintscan.io/omniflix/txs/${txHash}', + account_page: + 'https://www.mintscan.io/omniflix/account/${accountAddress}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/omniflixhub", - "tx_page": "https://atomscan.com/omniflixhub/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/omniflixhub', + tx_page: 'https://atomscan.com/omniflixhub/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "oraichain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Oraichain", - "chain_id": "Oraichain", - "bech32_prefix": "orai", - "daemon_name": "oraid", - "node_home": "$WORKSPACE/.oraid", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/oraichain/oraichain-static-files/master/mainnet-static-files/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "orai", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/oraichain/orai", - "recommended_version": "v0.40.3", - "compatible_versions": [ - "v0.40.3" - ], - "binaries": { - "linux/amd64": "https://orai.s3.us-east-2.amazonaws.com/v0.40.3/oraid" + $schema: '../chain.schema.json', + chain_name: 'oraichain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Oraichain', + chain_id: 'Oraichain', + bech32_prefix: 'orai', + daemon_name: 'oraid', + node_home: '$WORKSPACE/.oraid', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/oraichain/oraichain-static-files/master/mainnet-static-files/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'orai', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/oraichain/orai', + recommended_version: 'v0.40.3', + compatible_versions: ['v0.40.3'], + binaries: { + 'linux/amd64': 'https://orai.s3.us-east-2.amazonaws.com/v0.40.3/oraid' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "0baa806b3a4dd17be6e06369d899f140c3897d6e", - "address": "18.223.242.70:26656", - "provider": "oraichain-team" + id: '0baa806b3a4dd17be6e06369d899f140c3897d6e', + address: '18.223.242.70:26656', + provider: 'oraichain-team' }, { - "id": "9749da4a81526266d7b8fe9a03d260cd3db241ad", - "address": "18.116.209.76:26656", - "provider": "oraichain-team" + id: '9749da4a81526266d7b8fe9a03d260cd3db241ad', + address: '18.116.209.76:26656', + provider: 'oraichain-team' }, { - "id": "59d49e39d507bb190e746bcf5590d65879c132e2", - "address": "13.79.247.74:26656", - "provider": "vaiot" + id: '59d49e39d507bb190e746bcf5590d65879c132e2', + address: '13.79.247.74:26656', + provider: 'vaiot' }, { - "id": "35c1f999d67de56736b412a1325370a8e2fdb34a", - "address": "5.189.169.99:26656", - "provider": "ORAI Vanguard" + id: '35c1f999d67de56736b412a1325370a8e2fdb34a', + address: '5.189.169.99:26656', + provider: 'ORAI Vanguard' }, { - "id": "5ad3b29bf56b9ba95c67f282aa281b6f0903e921", - "address": "64.225.53.108:26656", - "provider": "oraichain-team" + id: '5ad3b29bf56b9ba95c67f282aa281b6f0903e921', + address: '64.225.53.108:26656', + provider: 'oraichain-team' }, { - "id": "d091cabe3584cb32043cc0c9199b0c7a5b68ddcb", - "address": "seed.orai.synergynodes.com:26656", - "provider": "synergynodes" + id: 'd091cabe3584cb32043cc0c9199b0c7a5b68ddcb', + address: 'seed.orai.synergynodes.com:26656', + provider: 'synergynodes' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "0baa806b3a4dd17be6e06369d899f140c3897d6e", - "address": "18.223.242.70:26656" + id: '0baa806b3a4dd17be6e06369d899f140c3897d6e', + address: '18.223.242.70:26656' }, { - "id": "9749da4a81526266d7b8fe9a03d260cd3db241ad", - "address": "18.116.209.76:26656" + id: '9749da4a81526266d7b8fe9a03d260cd3db241ad', + address: '18.116.209.76:26656' }, { - "id": "59d49e39d507bb190e746bcf5590d65879c132e2", - "address": "13.79.247.74:26656" + id: '59d49e39d507bb190e746bcf5590d65879c132e2', + address: '13.79.247.74:26656' }, { - "id": "35c1f999d67de56736b412a1325370a8e2fdb34a", - "address": "5.189.169.99:26656" + id: '35c1f999d67de56736b412a1325370a8e2fdb34a', + address: '5.189.169.99:26656' }, { - "id": "5ad3b29bf56b9ba95c67f282aa281b6f0903e921", - "address": "64.225.53.108:26656" + id: '5ad3b29bf56b9ba95c67f282aa281b6f0903e921', + address: '64.225.53.108:26656' }, { - "id": "d091cabe3584cb32043cc0c9199b0c7a5b68ddcb", - "address": "seed.orai.synergynodes.com:26656", - "provider": "synergynodes" + id: 'd091cabe3584cb32043cc0c9199b0c7a5b68ddcb', + address: 'seed.orai.synergynodes.com:26656', + provider: 'synergynodes' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.orai.io", - "provider": "oraichain-team" + address: 'https://rpc.orai.io', + provider: 'oraichain-team' }, { - "address": "http://18.223.242.70:26657", - "provider": "oraichain-team" + address: 'http://18.223.242.70:26657', + provider: 'oraichain-team' }, { - "address": "http://18.116.209.76:26657", - "provider": "oraichain-team" + address: 'http://18.116.209.76:26657', + provider: 'oraichain-team' }, { - "address": "http://64.225.53.108:26657", - "provider": "oraichain-team" + address: 'http://64.225.53.108:26657', + provider: 'oraichain-team' }, { - "address": "http://13.79.247.74:26657", - "provider": "vaiot" + address: 'http://13.79.247.74:26657', + provider: 'vaiot' } ], - "rest": [ + rest: [ { - "address": "http://lcd.orai.io", - "provider": "oraichain-team" + address: 'http://lcd.orai.io', + provider: 'oraichain-team' }, { - "address": "http://18.223.242.70:1317", - "provider": "oraichain-team" + address: 'http://18.223.242.70:1317', + provider: 'oraichain-team' }, { - "address": "http://18.116.209.76:1317", - "provider": "oraichain-team" + address: 'http://18.116.209.76:1317', + provider: 'oraichain-team' }, { - "address": "http://64.225.53.108:1317", - "provider": "oraichain-team" + address: 'http://64.225.53.108:1317', + provider: 'oraichain-team' } ] }, - "explorers": [ + explorers: [ { - "kind": "oraiscan", - "url": "https://scan.orai.io", - "tx_page": "https://scan.orai.io/txs/{txHash}" + kind: 'oraiscan', + url: 'https://scan.orai.io', + tx_page: 'https://scan.orai.io/txs/{txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "osmosis", - "status": "live", - "network_type": "mainnet", - "updatelink": "https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json", - "pretty_name": "Osmosis", - "chain_id": "osmosis-1", - "bech32_prefix": "osmo", - "daemon_name": "osmosisd", - "node_home": "$HOME/.osmosisd", - "genesis": { - "genesis_url": "https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'osmosis', + status: 'live', + network_type: 'mainnet', + updatelink: + 'https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json', + pretty_name: 'Osmosis', + chain_id: 'osmosis-1', + bech32_prefix: 'osmo', + daemon_name: 'osmosisd', + node_home: '$HOME/.osmosisd', + genesis: { + genesis_url: + 'https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "uosmo", - "fixed_min_gas_price": 0, - "low_gas_price": 0, - "average_gas_price": 0.025, - "high_gas_price": 0.04 + denom: 'uosmo', + fixed_min_gas_price: 0, + low_gas_price: 0, + average_gas_price: 0.025, + high_gas_price: 0.04 } ] }, - "staking": { - "staking_tokens": [ + staking: { + staking_tokens: [ { - "denom": "uosmo" + denom: 'uosmo' } ] }, - "codebase": { - "git_repo": "https://github.com/osmosis-labs/osmosis", - "recommended_version": "v11.0.0", - "compatible_versions": [ - "v11.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/osmosis-labs/osmosis/releases/download/v11.0.0/osmosisd-11.0.0-linux-amd64", - "linux/arm64": "https://github.com/osmosis-labs/osmosis/releases/download/v11.0.0/osmosisd-11.0.0-linux-arm64" + codebase: { + git_repo: 'https://github.com/osmosis-labs/osmosis', + recommended_version: 'v11.0.0', + compatible_versions: ['v11.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/osmosis-labs/osmosis/releases/download/v11.0.0/osmosisd-11.0.0-linux-amd64', + 'linux/arm64': + 'https://github.com/osmosis-labs/osmosis/releases/download/v11.0.0/osmosisd-11.0.0-linux-arm64' }, - "cosmos_sdk_version": "0.45", - "tendermint_version": "0.34", - "cosmwasm_version": "0.24", - "cosmwasm_enabled": true + cosmos_sdk_version: '0.45', + tendermint_version: '0.34', + cosmwasm_version: '0.24', + cosmwasm_enabled: true }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "83adaa38d1c15450056050fd4c9763fcc7e02e2c", - "address": "ec2-44-234-84-104.us-west-2.compute.amazonaws.com:26656", - "provider": "notional" + id: '83adaa38d1c15450056050fd4c9763fcc7e02e2c', + address: 'ec2-44-234-84-104.us-west-2.compute.amazonaws.com:26656', + provider: 'notional' }, { - "id": "23142ab5d94ad7fa3433a889dcd3c6bb6d5f247d", - "address": "95.217.193.163:26656", - "provider": "notional" + id: '23142ab5d94ad7fa3433a889dcd3c6bb6d5f247d', + address: '95.217.193.163:26656', + provider: 'notional' }, { - "id": "f82d1a360dc92d4e74fdc2c8e32f4239e59aebdf", - "address": "95.217.121.243:26656", - "provider": "notional" + id: 'f82d1a360dc92d4e74fdc2c8e32f4239e59aebdf', + address: '95.217.121.243:26656', + provider: 'notional' }, { - "id": "e437756a853061cc6f1639c2ac997d9f7e84be67", - "address": "144.76.183.180:26656", - "provider": "notional" + id: 'e437756a853061cc6f1639c2ac997d9f7e84be67', + address: '144.76.183.180:26656', + provider: 'notional' }, { - "id": "f515a8599b40f0e84dfad935ba414674ab11a668", - "address": "osmosis.blockpane.com:26656", - "provider": "blockpane" + id: 'f515a8599b40f0e84dfad935ba414674ab11a668', + address: 'osmosis.blockpane.com:26656', + provider: 'blockpane' }, { - "id": "7c66126b64cd66bafd9ccfc721f068df451d31a3", - "address": "osmosis-seed.sunshinevalidation.io:9393", - "provider": "sunshine-validation" + id: '7c66126b64cd66bafd9ccfc721f068df451d31a3', + address: 'osmosis-seed.sunshinevalidation.io:9393', + provider: 'sunshine-validation' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b63e1e588e8feb7e4a4adf0f2542d755e606d3f1", - "address": "5.9.105.113:26656", - "provider": "WhisperNode 🤐" + id: 'b63e1e588e8feb7e4a4adf0f2542d755e606d3f1', + address: '5.9.105.113:26656', + provider: 'WhisperNode 🤐' }, { - "id": "8f67a2fcdd7ade970b1983bf1697111d35dfdd6f", - "address": "52.79.199.137:26656", - "provider": "cosmostation" + id: '8f67a2fcdd7ade970b1983bf1697111d35dfdd6f', + address: '52.79.199.137:26656', + provider: 'cosmostation' }, { - "id": "00c328a33578466c711874ec5ee7ada75951f99a", - "address": "35.82.201.64:26656", - "provider": "cosmostation" + id: '00c328a33578466c711874ec5ee7ada75951f99a', + address: '35.82.201.64:26656', + provider: 'cosmostation' }, { - "id": "cfb6f2d686014135d4a6034aa6645abd0020cac6", - "address": "52.79.88.57:26656", - "provider": "cosmostation" + id: 'cfb6f2d686014135d4a6034aa6645abd0020cac6', + address: '52.79.88.57:26656', + provider: 'cosmostation' }, { - "id": "8d9967d5f865c68f6fe2630c0f725b0363554e77", - "address": "134.255.252.173:26656", - "provider": "divecrypto" + id: '8d9967d5f865c68f6fe2630c0f725b0363554e77', + address: '134.255.252.173:26656', + provider: 'divecrypto' }, { - "id": "785bc83577e3980545bac051de8f57a9fd82695f", - "address": "194.233.164.146:26656", - "provider": "forbole" + id: '785bc83577e3980545bac051de8f57a9fd82695f', + address: '194.233.164.146:26656', + provider: 'forbole' }, { - "id": "778fdedf6effe996f039f22901a3360bc838b52e", - "address": "161.97.187.189:36657", - "provider": "kalpatech" + id: '778fdedf6effe996f039f22901a3360bc838b52e', + address: '161.97.187.189:36657', + provider: 'kalpatech' }, { - "id": "64d36f3a186a113c02db0cf7c588c7c85d946b5b", - "address": "209.97.132.170:26656", - "provider": "solidstake" + id: '64d36f3a186a113c02db0cf7c588c7c85d946b5b', + address: '209.97.132.170:26656', + provider: 'solidstake' }, { - "id": "4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47", - "address": "37.187.38.191:26656", - "provider": "stakelab" + id: '4d9ac3510d9f5cfc975a28eb2a7b8da866f7bc47', + address: '37.187.38.191:26656', + provider: 'stakelab' }, { - "id": "2115945f074ddb038de5d835e287fa03e32f0628", - "address": "95.217.43.85:26656", - "provider": "stakerspace" + id: '2115945f074ddb038de5d835e287fa03e32f0628', + address: '95.217.43.85:26656', + provider: 'stakerspace' }, { - "id": "bf2c480eff178d2647ba1adfeee8ced568fe752c", - "address": "91.65.128.44:26656", - "provider": "stakerus" + id: 'bf2c480eff178d2647ba1adfeee8ced568fe752c', + address: '91.65.128.44:26656', + provider: 'stakerus' }, { - "id": "2f9c16151400d8516b0f58c030b3595be20b804c", - "address": "37.120.245.167:26656", - "provider": "syncnode" + id: '2f9c16151400d8516b0f58c030b3595be20b804c', + address: '37.120.245.167:26656', + provider: 'syncnode' }, { - "id": "bada684070727cb3dda430bcc79b329e93399665", - "address": "173.212.240.91:26656", - "provider": "qf3l3k" + id: 'bada684070727cb3dda430bcc79b329e93399665', + address: '173.212.240.91:26656', + provider: 'qf3l3k' }, { - "id": "3fea02d121cb24503d5fbc53216a527257a9ab55", - "address": "143.198.145.208:26656", - "provider": "witval" + id: '3fea02d121cb24503d5fbc53216a527257a9ab55', + address: '143.198.145.208:26656', + provider: 'witval' }, { - "id": "7de029fa5e9c1f39557c0e3523c1ae0b07c58be0", - "address": "78.141.219.223:26656", - "provider": "artifactstaking" + id: '7de029fa5e9c1f39557c0e3523c1ae0b07c58be0', + address: '78.141.219.223:26656', + provider: 'artifactstaking' }, { - "id": "7024d1ca024d5e33e7dc1dcb5ed08349768220b9", - "address": "134.122.42.20:26656", - "provider": "figment" + id: '7024d1ca024d5e33e7dc1dcb5ed08349768220b9', + address: '134.122.42.20:26656', + provider: 'figment' }, { - "id": "d326ad6dffa7763853982f334022944259b4e7f4", - "address": "143.110.212.33:26656", - "provider": "figment" + id: 'd326ad6dffa7763853982f334022944259b4e7f4', + address: '143.110.212.33:26656', + provider: 'figment' }, { - "id": "e7916387e05acd53d1b8c0f842c13def365c7bb6", - "address": "176.9.64.212:26666", - "provider": "medusanode" + id: 'e7916387e05acd53d1b8c0f842c13def365c7bb6', + address: '176.9.64.212:26666', + provider: 'medusanode' }, { - "id": "55eea69c21b46000c1594d8b4a448563b075d9e3", - "address": "34.107.19.235:26656", - "provider": "binaryholdings" + id: '55eea69c21b46000c1594d8b4a448563b075d9e3', + address: '34.107.19.235:26656', + provider: 'binaryholdings' }, { - "id": "9faf468b90a3b2b85ffd88645a15b3715f68bb0b", - "address": "195.201.122.100:26656", - "provider": "chainflow" + id: '9faf468b90a3b2b85ffd88645a15b3715f68bb0b', + address: '195.201.122.100:26656', + provider: 'chainflow' }, { - "id": "ffc82412c0261a94df122b9cc0ce1de81da5246b", - "address": "15.222.240.16:26656", - "provider": "cephalopod" + id: 'ffc82412c0261a94df122b9cc0ce1de81da5246b', + address: '15.222.240.16:26656', + provider: 'cephalopod' }, { - "id": "5b90a530464885fd28c31f698c81694d0b4a1982", - "address": "35.183.238.70:26656", - "provider": "cephalopod" + id: '5b90a530464885fd28c31f698c81694d0b4a1982', + address: '35.183.238.70:26656', + provider: 'cephalopod' }, { - "id": "7b6689cb18d625bbc069aa99d9d5521293db442c", - "address": "51.158.97.192:26656", - "provider": "mp20" + id: '7b6689cb18d625bbc069aa99d9d5521293db442c', + address: '51.158.97.192:26656', + provider: 'mp20' }, { - "id": "fda06dcebe2acd17857a6c9e9a7b365da3771ceb", - "address": "52.206.252.176:26656", - "provider": "stargaze" + id: 'fda06dcebe2acd17857a6c9e9a7b365da3771ceb', + address: '52.206.252.176:26656', + provider: 'stargaze' }, { - "id": "8d9fd90a009e4b6e9572bf9a84b532a366790a1d", - "address": "193.26.156.221:26656", - "provider": "validatus" + id: '8d9fd90a009e4b6e9572bf9a84b532a366790a1d', + address: '193.26.156.221:26656', + provider: 'validatus' }, { - "id": "44a760a66071dae257c5c044be604219bfc3510c", - "address": "49.12.35.177:36656", - "provider": "in3s.com" + id: '44a760a66071dae257c5c044be604219bfc3510c', + address: '49.12.35.177:36656', + provider: 'in3s.com' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://osmosis-rpc.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://osmosis-rpc.quickapi.com:443', + provider: 'Chainlayer' }, { - "address": "https://rpc-osmosis.whispernode.com", - "provider": "WhisperNode 🤐" + address: 'https://rpc-osmosis.whispernode.com', + provider: 'WhisperNode 🤐' }, { - "address": "https://osmosis.validator.network/", - "provider": "validatornetwork" + address: 'https://osmosis.validator.network/', + provider: 'validatornetwork' }, { - "address": "https://rpc-osmosis.blockapsis.com", - "provider": "chainapsis" + address: 'https://rpc-osmosis.blockapsis.com', + provider: 'chainapsis' }, { - "address": "https://rpc-osmosis.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-osmosis.ecostake.com', + provider: 'ecostake' }, { - "address": "https://osmosis-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://osmosis-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-osmosis-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-osmosis-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc.osmosis.zone/", - "provider": "Osmosis Foundation" + address: 'https://rpc.osmosis.zone/', + provider: 'Osmosis Foundation' }, { - "address": "https://rpc.osmosis.interbloc.org", - "provider": "Interbloc" + address: 'https://rpc.osmosis.interbloc.org', + provider: 'Interbloc' } ], - "rest": [ + rest: [ { - "address": "https://osmosis-lcd.quickapi.com:443", - "provider": "Chainlayer" + address: 'https://osmosis-lcd.quickapi.com:443', + provider: 'Chainlayer' }, { - "address": "https://lcd-osmosis.whispernode.com", - "provider": "WhisperNode 🤐" + address: 'https://lcd-osmosis.whispernode.com', + provider: 'WhisperNode 🤐' }, { - "address": "https://lcd-osmosis.blockapsis.com", - "provider": "chainapsis" + address: 'https://lcd-osmosis.blockapsis.com', + provider: 'chainapsis' }, { - "address": "https://rest-osmosis.ecostake.com", - "provider": "ecostake" + address: 'https://rest-osmosis.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api-osmosis-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-osmosis-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://lcd.osmosis.zone/", - "provider": "Osmosis Foundation" + address: 'https://lcd.osmosis.zone/', + provider: 'Osmosis Foundation' }, { - "address": "https://api.osmosis.interbloc.org", - "provider": "Interbloc" + address: 'https://api.osmosis.interbloc.org', + provider: 'Interbloc' + }, + { + address: 'https://osmosis.stakesystems.io/', + provider: 'stakesystems' } ], - "grpc": [ + grpc: [ { - "address": "osmosis.strange.love:9090", - "provider": "strangelove" + address: 'osmosis.strange.love:9090', + provider: 'strangelove' }, { - "address": "grpc-osmosis-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-osmosis-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/osmosis", - "tx_page": "https://www.mintscan.io/osmosis/txs/${txHash}", - "account_page": "https://www.mintscan.io/osmosis/account/${accountAddress}" + kind: 'mintscan', + url: 'https://www.mintscan.io/osmosis', + tx_page: 'https://www.mintscan.io/osmosis/txs/${txHash}', + account_page: + 'https://www.mintscan.io/osmosis/account/${accountAddress}' }, { - "kind": "ping.pub", - "url": "https://ping.pub/osmosis", - "tx_page": "https://ping.pub/osmosis/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/osmosis', + tx_page: 'https://ping.pub/osmosis/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://osmosis.explorers.guru", - "tx_page": "https://osmosis.explorers.guru/transaction/${txHash}", - "account_page": "https://osmosis.explorers.guru/transaction/${accountAddress}" + kind: 'explorers.guru', + url: 'https://osmosis.explorers.guru', + tx_page: 'https://osmosis.explorers.guru/transaction/${txHash}', + account_page: + 'https://osmosis.explorers.guru/transaction/${accountAddress}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/osmosis", - "tx_page": "https://atomscan.com/osmosis/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/osmosis', + tx_page: 'https://atomscan.com/osmosis/transactions/${txHash}' } ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png" + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png' }, - "keywords": [ - "dex" - ] + keywords: ['dex'] }, { - "$schema": "../chain.schema.json", - "chain_name": "panacea", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Panacea", - "chain_id": "panacea-3", - "bech32_prefix": "panacea", - "daemon_name": "panacead", - "node_home": "$HOME/.panacead", - "genesis": { - "genesis_url": "https://github.com/medibloc/panacea-mainnet/raw/master/panacea-3/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 371, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'panacea', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Panacea', + chain_id: 'panacea-3', + bech32_prefix: 'panacea', + daemon_name: 'panacead', + node_home: '$HOME/.panacead', + genesis: { + genesis_url: + 'https://github.com/medibloc/panacea-mainnet/raw/master/panacea-3/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 371, + fees: { + fee_tokens: [ { - "denom": "umed", - "fixed_min_gas_price": 5 + denom: 'umed', + fixed_min_gas_price: 5 } ] }, - "codebase": { - "git_repo": "https://github.com/medibloc/panacea-core", - "recommended_version": "v2.0.2", - "compatible_versions": [ - "v2.0.2" - ], - "binaries": {} + codebase: { + git_repo: 'https://github.com/medibloc/panacea-core', + recommended_version: 'v2.0.2', + compatible_versions: ['v2.0.2'], + binaries: {} }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "e93f5df69cc1b9bda230b3efcf162d4672293ded", - "address": "3.35.82.40:26656", - "provider": "medibloc" + id: 'e93f5df69cc1b9bda230b3efcf162d4672293ded', + address: '3.35.82.40:26656', + provider: 'medibloc' }, { - "id": "0e0db1c7ab1e37c76f2ceced0bb72e1c60ef17a6", - "address": "13.124.96.254:26656", - "provider": "medibloc" + id: '0e0db1c7ab1e37c76f2ceced0bb72e1c60ef17a6', + address: '13.124.96.254:26656', + provider: 'medibloc' }, { - "id": "a83232db3a40e486b54b1463a43431e8490b808b", - "address": "52.79.108.35:26656", - "provider": "medibloc" + id: 'a83232db3a40e486b54b1463a43431e8490b808b', + address: '52.79.108.35:26656', + provider: 'medibloc' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.gopanacea.org", - "provider": "medibloc" + address: 'https://rpc.gopanacea.org', + provider: 'medibloc' } ], - "rest": [ + rest: [ { - "address": "https://api.gopanacea.org", - "provider": "medibloc" + address: 'https://api.gopanacea.org', + provider: 'medibloc' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/medibloc", - "tx_page": "https://www.mintscan.io/medibloc/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/medibloc', + tx_page: 'https://www.mintscan.io/medibloc/txs/${txHash}' }, { - "kind": "bigdipper", - "url": "https://explorer.gopanacea.org", - "tx_page": "https://explorer.gopanacea.org/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://explorer.gopanacea.org', + tx_page: 'https://explorer.gopanacea.org/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "persistence", - "chain_id": "core-1", - "pretty_name": "Persistence", - "status": "live", - "network_type": "mainnet", - "bech32_prefix": "persistence", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json" - }, - "daemon_name": "persistenceCore", - "node_home": "$HOME/.persistenceCore", - "key_algos": [ - "secp256k1" - ], - "slip44": 750, - "fees": { - "fee_tokens": [ - { - "denom": "uxprt", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/persistenceOne/persistenceCore", - "recommended_version": "v0.2.3", - "compatible_versions": [ - "v0.2.3" - ], - "binaries": { - "linux/amd64": "https://github.com/persistenceOne/persistenceCore/releases/download/v0.2.3/persistenceCore-linux-amd64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'persistence', + chain_id: 'core-1', + pretty_name: 'Persistence', + status: 'live', + network_type: 'mainnet', + bech32_prefix: 'persistence', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json' + }, + daemon_name: 'persistenceCore', + node_home: '$HOME/.persistenceCore', + key_algos: ['secp256k1'], + slip44: 750, + fees: { + fee_tokens: [ + { + denom: 'uxprt', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/persistenceOne/persistenceCore', + recommended_version: 'v0.2.3', + compatible_versions: ['v0.2.3'], + binaries: { + 'linux/amd64': + 'https://github.com/persistenceOne/persistenceCore/releases/download/v0.2.3/persistenceCore-linux-amd64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "449a0f1b7dafc142cf23a1f6166bbbf035edfb10", - "address": "13.232.85.66:26656" + id: '449a0f1b7dafc142cf23a1f6166bbbf035edfb10', + address: '13.232.85.66:26656' }, { - "id": "eaa76966cad27a9807b7d8b9a62c9b2ca4924581", - "address": "tenderseed.ccvalidators.com:26003" + id: 'eaa76966cad27a9807b7d8b9a62c9b2ca4924581', + address: 'tenderseed.ccvalidators.com:26003' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "876946a947850952383347724206d067d7032b22", - "address": "3.137.86.151:26656" + id: '876946a947850952383347724206d067d7032b22', + address: '3.137.86.151:26656' }, { - "id": "ecc00c5a7abd057ea5ca4a94c48d1d937bbab34a", - "address": "34.118.19.56:26656" + id: 'ecc00c5a7abd057ea5ca4a94c48d1d937bbab34a', + address: '34.118.19.56:26656' }, { - "id": "ac7e6aab726e842b92c06b8ebbf5a3616872ee80", - "address": "128.1.133.107:26656" + id: 'ac7e6aab726e842b92c06b8ebbf5a3616872ee80', + address: '128.1.133.107:26656' }, { - "id": "b9dab7a1a5ffd16d43b19e40a8020db84e8dfffd", - "address": "3.14.116.246:44456" + id: 'b9dab7a1a5ffd16d43b19e40a8020db84e8dfffd', + address: '3.14.116.246:44456' }, { - "id": "60385a36ea72a2985bd8450c95b8df8be2adebb8", - "address": "54.95.235.242:26656" + id: '60385a36ea72a2985bd8450c95b8df8be2adebb8', + address: '54.95.235.242:26656' }, { - "id": "a92ff1da2020e5cbc9b05527e9e39c34a84e8a27", - "address": "34.72.57.218:26656" + id: 'a92ff1da2020e5cbc9b05527e9e39c34a84e8a27', + address: '34.72.57.218:26656' }, { - "id": "e15524629aee25fea01f62d26c4e062bfda94b70", - "address": "35.247.171.7:26656" + id: 'e15524629aee25fea01f62d26c4e062bfda94b70', + address: '35.247.171.7:26656' }, { - "id": "7c106099b8d07085431a97387e5a5db2d1ecd71d", - "address": "18.223.209.36:26656" + id: '7c106099b8d07085431a97387e5a5db2d1ecd71d', + address: '18.223.209.36:26656' }, { - "id": "b19a3cf4d9938b41539729d027bf2e3c1a4e1fbb", - "address": "85.214.130.157:26656" + id: 'b19a3cf4d9938b41539729d027bf2e3c1a4e1fbb', + address: '85.214.130.157:26656' }, { - "id": "7cc92a9e3dcad37e5e7b3adf7814c37070fa9787", - "address": "161.97.187.189:26656" + id: '7cc92a9e3dcad37e5e7b3adf7814c37070fa9787', + address: '161.97.187.189:26656' }, { - "id": "7b9839cd3e994c44cbd747d1ddc51ee695f60e58", - "address": "157.90.134.48:26656" + id: '7b9839cd3e994c44cbd747d1ddc51ee695f60e58', + address: '157.90.134.48:26656' }, { - "id": "cfb529bd0325fc884296518655f1f315bc42dd0c", - "address": "185.144.83.165:26656" + id: 'cfb529bd0325fc884296518655f1f315bc42dd0c', + address: '185.144.83.165:26656' }, { - "id": "01102f3c84e6602e30e1e39498e242cbb60a0b73", - "address": "178.62.103.7:26656" + id: '01102f3c84e6602e30e1e39498e242cbb60a0b73', + address: '178.62.103.7:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.core.persistence.one", - "provider": "Persistence" + address: 'https://rpc.core.persistence.one', + provider: 'Persistence' }, { - "address": "https://rpc-persistent-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-persistent-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://rest.core.persistence.one", - "provider": "Persistence" + address: 'https://rest.core.persistence.one', + provider: 'Persistence' }, { - "address": "https://api-persistent-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-persistent-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc.core.persistence.one:443", - "provider": "Persistence" + address: 'grpc.core.persistence.one:443', + provider: 'Persistence' }, { - "address": "grpc-persistent-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-persistent-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "proprietary", - "url": "https://explorer.persistence.one", - "tx_page": "https://explorer.persistence.one/transactions/{txHash}" + kind: 'proprietary', + url: 'https://explorer.persistence.one', + tx_page: 'https://explorer.persistence.one/transactions/{txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/persistence", - "tx_page": "https://www.mintscan.io/persistence/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/persistence', + tx_page: 'https://www.mintscan.io/persistence/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/persistence", - "tx_page": "https://ping.pub/persistence/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/persistence', + tx_page: 'https://ping.pub/persistence/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/persistence", - "tx_page": "https://atomscan.com/persistence/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/persistence', + tx_page: 'https://atomscan.com/persistence/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "provenance", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Provenance Blockchain", - "chain_id": "pio-mainnet-1", - "bech32_prefix": "pb", - "daemon_name": "provenanced", - "node_home": "$HOME/Provenance", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/provenance-io/mainnet/main/pio-mainnet-1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 505, - "fees": { - "fee_tokens": [ - { - "denom": "nhash", - "fixed_min_gas_price": 1905 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/provenance-io/provenance", - "recommended_version": "v1.8.2", - "compatible_versions": [ - "v1.7.5", - "v1.7.6", - "v1.8.0", - "v1.8.2" - ], - "binaries": { - "linux/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.8.2/provenance-linux-amd64-v1.8.2.zip", - "darwin/amd64": "https://github.com/provenance-io/provenance/releases/download/v1.8.2/provenance-darwin-amd64-v1.8.2.zip" + $schema: '../chain.schema.json', + chain_name: 'provenance', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Provenance Blockchain', + chain_id: 'pio-mainnet-1', + bech32_prefix: 'pb', + daemon_name: 'provenanced', + node_home: '$HOME/Provenance', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/provenance-io/mainnet/main/pio-mainnet-1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 505, + fees: { + fee_tokens: [ + { + denom: 'nhash', + fixed_min_gas_price: 1905 + } + ] + }, + codebase: { + git_repo: 'https://github.com/provenance-io/provenance', + recommended_version: 'v1.8.2', + compatible_versions: ['v1.7.5', 'v1.7.6', 'v1.8.0', 'v1.8.2'], + binaries: { + 'linux/amd64': + 'https://github.com/provenance-io/provenance/releases/download/v1.8.2/provenance-linux-amd64-v1.8.2.zip', + 'darwin/amd64': + 'https://github.com/provenance-io/provenance/releases/download/v1.8.2/provenance-darwin-amd64-v1.8.2.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "4bd2fb0ae5a123f1db325960836004f980ee09b4", - "address": "seed-0.provenance.io:26656", - "provider": "figure" + id: '4bd2fb0ae5a123f1db325960836004f980ee09b4', + address: 'seed-0.provenance.io:26656', + provider: 'figure' }, { - "id": "048b991204d7aac7209229cbe457f622eed96e5d", - "address": "seed-1.provenance.io:26656", - "provider": "figure" + id: '048b991204d7aac7209229cbe457f622eed96e5d', + address: 'seed-1.provenance.io:26656', + provider: 'figure' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.provenance.io/", - "provider": "figure" + address: 'https://rpc.provenance.io/', + provider: 'figure' }, { - "address": "https://api-provenance-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-provenance-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.provenance.io", - "provider": "figure" + address: 'https://api.provenance.io', + provider: 'figure' }, { - "address": "https://api-provenance-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-provenance-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-provenance-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-provenance-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "provenance", - "url": "https://explorer.provenance.io", - "tx_page": "https://explorer.provenance.io/tx/${txHash}" + kind: 'provenance', + url: 'https://explorer.provenance.io', + tx_page: 'https://explorer.provenance.io/tx/${txHash}' }, { - "kind": "bigdipper", - "url": "https://bigdipper.provenance.io", - "tx_page": "https://bigdipper.provenance.io/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://bigdipper.provenance.io', + tx_page: 'https://bigdipper.provenance.io/transactions/${txHash}' }, { - "kind": "hubble", - "url": "https://hubble.figment.io/provenance/chains/pio-mainnet-1", - "tx_page": "https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}" + kind: 'hubble', + url: 'https://hubble.figment.io/provenance/chains/pio-mainnet-1', + tx_page: + 'https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/provenance", - "tx_page": "https://ping.pub/provenance/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/provenance', + tx_page: 'https://ping.pub/provenance/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/provenance", - "tx_page": "https://www.mintscan.io/provenance/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/provenance', + tx_page: 'https://www.mintscan.io/provenance/txs/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/provenance", - "tx_page": "https://atomscan.com/provenance/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/provenance', + tx_page: 'https://atomscan.com/provenance/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "regen", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Regen Network", - "chain_id": "regen-1", - "bech32_prefix": "regen", - "daemon_name": "regen", - "node_home": "$HOME/.regen", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/regen-network/mainnet/main/regen-1/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "staking": { - "staking_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'regen', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Regen Network', + chain_id: 'regen-1', + bech32_prefix: 'regen', + daemon_name: 'regen', + node_home: '$HOME/.regen', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/regen-network/mainnet/main/regen-1/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + staking: { + staking_tokens: [ { - "denom": "uregen" + denom: 'uregen' } ] }, - "codebase": { - "git_repo": "https://github.com/regen-network/regen-ledger", - "recommended_version": "v4.0.0", - "compatible_versions": [ - "v4.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_linux_amd64.zip", - "linux/arm64": "https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_linux_arm64.zip", - "darwin/amd64": "https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_darwin_amd64.zip", - "darwin/arm64": "https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_darwin_arm64.zip", - "windows/amd64": "https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_windows_amd64.zip" + codebase: { + git_repo: 'https://github.com/regen-network/regen-ledger', + recommended_version: 'v4.0.0', + compatible_versions: ['v4.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_linux_amd64.zip', + 'linux/arm64': + 'https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_linux_arm64.zip', + 'darwin/amd64': + 'https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_darwin_amd64.zip', + 'darwin/arm64': + 'https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_darwin_arm64.zip', + 'windows/amd64': + 'https://github.com/regen-network/regen-ledger/releases/download/v4.0.0/regen-ledger_4.0.0_windows_amd64.zip' }, - "cosmos_sdk_version": "0.45", - "tendermint_version": "0.34" + cosmos_sdk_version: '0.45', + tendermint_version: '0.34' }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "aebb8431609cb126a977592446f5de252d8b7fa1", - "address": "104.236.201.138:26656" + id: 'aebb8431609cb126a977592446f5de252d8b7fa1', + address: '104.236.201.138:26656' }, { - "id": "d309774e794b111a0fa2056f40aed9d488b6195e", - "address": "regen-seed.sunshinevalidation.io:32064", - "provider": "sunshine-validation" + id: 'd309774e794b111a0fa2056f40aed9d488b6195e', + address: 'regen-seed.sunshinevalidation.io:32064', + provider: 'sunshine-validation' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "69975e7afdf731a165e40449fcffc75167a084fc", - "address": "104.131.169.70:26656" + id: '69975e7afdf731a165e40449fcffc75167a084fc', + address: '104.131.169.70:26656' }, { - "id": "d35d652b6cb3bf7d6cb8d4bd7c036ea03e7be2ab", - "address": "116.203.182.185:26656" + id: 'd35d652b6cb3bf7d6cb8d4bd7c036ea03e7be2ab', + address: '116.203.182.185:26656' }, { - "id": "ffacd3202ded6945fed12fa4fd715b1874985b8c", - "address": "3.98.38.91:26656" + id: 'ffacd3202ded6945fed12fa4fd715b1874985b8c', + address: '3.98.38.91:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://public-rpc.regen.vitwit.com:26657", - "provider": "vitwit" + address: 'http://public-rpc.regen.vitwit.com:26657', + provider: 'vitwit' }, { - "address": "https://regen.stakesystems.io:2053", - "provider": "stakesystems" + address: 'https://regen.stakesystems.io:2053', + provider: 'stakesystems' }, { - "address": "http://rpc.regen.forbole.com:80", - "provider": "forbole" + address: 'http://rpc.regen.forbole.com:80', + provider: 'forbole' }, { - "address": "https://rpc-regen-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-regen-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc-regen.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-regen.ecostake.com', + provider: 'ecostake' } ], - "grpc": [ + grpc: [ { - "address": "regen.stakesystems.io:2083", - "provider": "stakesystems" + address: 'regen.stakesystems.io:2083', + provider: 'stakesystems' }, { - "address": "grpc-regen-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-regen-ia.notional.ventures:443', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "http://public-rpc.regen.vitwit.com:1317", - "provider": "vitwit" + address: 'http://public-rpc.regen.vitwit.com:1317', + provider: 'vitwit' }, { - "address": "https://regen.stakesystems.io", - "provider": "stakesystems" + address: 'https://regen.stakesystems.io', + provider: 'stakesystems' }, { - "address": "https://api-regen-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-regen-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rest-regen.ecostake.com", - "provider": "ecostake" + address: 'https://rest-regen.ecostake.com', + provider: 'ecostake' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/regen", - "tx_page": "https://www.mintscan.io/regen/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/regen', + tx_page: 'https://www.mintscan.io/regen/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/regen", - "tx_page": "https://ping.pub/regen/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/regen', + tx_page: 'https://ping.pub/regen/tx/${txHash}' }, { - "kind": "bigdipper", - "url": "https://regen.bigdipper.live/", - "tx_page": "https://regen.bigdipper.live/transactions/${txHash}" + kind: 'bigdipper', + url: 'https://regen.bigdipper.live/', + tx_page: 'https://regen.bigdipper.live/transactions/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/regen-network", - "tx_page": "https://atomscan.com/regen-network/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/regen-network', + tx_page: 'https://atomscan.com/regen-network/transactions/${txHash}' } ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png' } }, { - "$schema": "../chain.schema.json", - "chain_name": "rizon", - "status": "live", - "network_type": "mainnet", - "pretty_name": "RIZON", - "chain_id": "titan-1", - "bech32_prefix": "rizon", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/rizon-world/mainnet/master/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/rizon-world/rizon", - "recommended_version": "v0.3.0", - "compatible_versions": [ - "v0.3.0" - ] - }, - "daemon_name": "rizond", - "node_home": "$HOME/.rizon", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + $schema: '../chain.schema.json', + chain_name: 'rizon', + status: 'live', + network_type: 'mainnet', + pretty_name: 'RIZON', + chain_id: 'titan-1', + bech32_prefix: 'rizon', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/rizon-world/mainnet/master/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/rizon-world/rizon', + recommended_version: 'v0.3.0', + compatible_versions: ['v0.3.0'] + }, + daemon_name: 'rizond', + node_home: '$HOME/.rizon', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "83c9cdc2db2b4eff4acc9cd7d664ad5ae6191080", - "address": "seed-1.mainnet.rizon.world:26656" + id: '83c9cdc2db2b4eff4acc9cd7d664ad5ae6191080', + address: 'seed-1.mainnet.rizon.world:26656' }, { - "id": "ae1476777536e2be26507c4fbcf86b67540adb64", - "address": "seed-2.mainnet.rizon.world:26656" + id: 'ae1476777536e2be26507c4fbcf86b67540adb64', + address: 'seed-2.mainnet.rizon.world:26656' }, { - "id": "8abf316257a264dc8744dee6be4981cfbbcaf4e4", - "address": "seed-3.mainnet.rizon.world:26656" + id: '8abf316257a264dc8744dee6be4981cfbbcaf4e4', + address: 'seed-3.mainnet.rizon.world:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://seed-1.mainnet.rizon.world:26657", - "provider": "HDAC Technology AG" + address: 'http://seed-1.mainnet.rizon.world:26657', + provider: 'HDAC Technology AG' }, { - "address": "https://rpcapi.rizon.world/", - "provider": "HDAC Technology AG" + address: 'https://rpcapi.rizon.world/', + provider: 'HDAC Technology AG' } ], - "rest": [ + rest: [ { - "address": "http://seed-1.mainnet.rizon.world:1317", - "provider": "HDAC Technology AG" + address: 'http://seed-1.mainnet.rizon.world:1317', + provider: 'HDAC Technology AG' }, { - "address": "https://restapi.rizon.world/", - "provider": "HDAC Technology AG" + address: 'https://restapi.rizon.world/', + provider: 'HDAC Technology AG' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/rizon", - "tx_page": "https://www.mintscan.io/rizon/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/rizon', + tx_page: 'https://www.mintscan.io/rizon/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/rizon", - "tx_page": "https://ping.pub/rizon/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/rizon', + tx_page: 'https://ping.pub/rizon/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/rizon", - "tx_page": "https://atomscan.com/rizon/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/rizon', + tx_page: 'https://atomscan.com/rizon/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "secretnetwork", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Secret Network", - "chain_id": "secret-4", - "bech32_prefix": "secret", - "daemon_name": "secretd", - "node_home": "$HOME/.secretd", - "genesis": { - "genesis_url": "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.2.0/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 529, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'secretnetwork', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Secret Network', + chain_id: 'secret-4', + bech32_prefix: 'secret', + daemon_name: 'secretd', + node_home: '$HOME/.secretd', + genesis: { + genesis_url: + 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.2.0/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 529, + fees: { + fee_tokens: [ { - "denom": "uscrt", - "fixed_min_gas_price": 0.1 + denom: 'uscrt', + fixed_min_gas_price: 0.1 } ] }, - "codebase": { - "git_repo": "https://github.com/scrtlabs/SecretNetwork", - "recommended_version": "v1.3.1", - "binaries": { - "linux/amd64": "https://github.com/scrtlabs/SecretNetwork/releases/download/v1.3.1/secretnetwork_1.3.1_mainnet_goleveldb_amd64.deb" + codebase: { + git_repo: 'https://github.com/scrtlabs/SecretNetwork', + recommended_version: 'v1.3.1', + binaries: { + 'linux/amd64': + 'https://github.com/scrtlabs/SecretNetwork/releases/download/v1.3.1/secretnetwork_1.3.1_mainnet_goleveldb_amd64.deb' }, - "compatible_versions": [ - "v1.3.0", - "v1.3.1" - ] + compatible_versions: ['v1.3.0', 'v1.3.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "6fb7169f7630da9468bf7cc0bcbbed1eb9ed0d7b", - "address": "scrt-seed-01.scrtlabs.com:26656", - "provider": "SCRT Labs" + id: '6fb7169f7630da9468bf7cc0bcbbed1eb9ed0d7b', + address: 'scrt-seed-01.scrtlabs.com:26656', + provider: 'SCRT Labs' }, { - "id": "ab6394e953e0b570bb1deeb5a8b387aa0dc6188a", - "address": "scrt-seed-02.scrtlabs.com:26656", - "provider": "SCRT Labs" + id: 'ab6394e953e0b570bb1deeb5a8b387aa0dc6188a', + address: 'scrt-seed-02.scrtlabs.com:26656', + provider: 'SCRT Labs' }, { - "id": "9cdaa5856e0245ecd73bd464308fb990fbc53b57", - "address": "scrt-seed-03.scrtlabs.com:26656", - "provider": "SCRT Labs" + id: '9cdaa5856e0245ecd73bd464308fb990fbc53b57', + address: 'scrt-seed-03.scrtlabs.com:26656', + provider: 'SCRT Labs' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://secret-4.api.trivium.network:26657", - "provider": "Trivium | Trivium.Network" + address: 'https://secret-4.api.trivium.network:26657', + provider: 'Trivium | Trivium.Network' }, { - "address": "https://scrt-rpc.blockpane.com", - "provider": "[ block pane ]" + address: 'https://scrt-rpc.blockpane.com', + provider: '[ block pane ]' }, { - "address": "https://rpc.scrt.network", - "provider": "SCRT Network" + address: 'https://rpc.scrt.network', + provider: 'SCRT Network' }, { - "address": "https://secret.rpc.consensus.one", - "provider": "Consensus One" + address: 'https://secret.rpc.consensus.one', + provider: 'Consensus One' }, { - "address": "https://rpc.secret.forbole.com/", - "provider": "Forbole" + address: 'https://rpc.secret.forbole.com/', + provider: 'Forbole' }, { - "address": "https://secretnetwork-rpc.stakely.io", - "provider": "Stakely.io" + address: 'https://secretnetwork-rpc.stakely.io', + provider: 'Stakely.io' } ], - "rest": [ + rest: [ { - "address": "https://secret-4.api.trivium.network:1317", - "provider": "Trivium | Trivium.Network" + address: 'https://secret-4.api.trivium.network:1317', + provider: 'Trivium | Trivium.Network' }, { - "address": "https://scrt-lcd.blockpane.com", - "provider": "[ block pane ]" + address: 'https://scrt-lcd.blockpane.com', + provider: '[ block pane ]' }, { - "address": "https://api.scrt.network", - "provider": "SCRT Network" + address: 'https://api.scrt.network', + provider: 'SCRT Network' }, { - "address": "https://secret.api.consensus.one", - "provider": "Consensus One" + address: 'https://secret.api.consensus.one', + provider: 'Consensus One' }, { - "address": "https://api.secret.forbole.com/", - "provider": "Forbole" + address: 'https://api.secret.forbole.com/', + provider: 'Forbole' }, { - "address": "https://secretnetwork-lcd.stakely.io", - "provider": "Stakely.io" + address: 'https://secretnetwork-lcd.stakely.io', + provider: 'Stakely.io' } ], - "grpc-web": [ + 'grpc-web': [ { - "address": "https://secret-4.api.trivium.network:9091", - "provider": "Trivium | Trivium.Network" + address: 'https://secret-4.api.trivium.network:9091', + provider: 'Trivium | Trivium.Network' }, { - "address": "http://scrt-rpc.blockpane.com:9091", - "provider": "[ block pane ]" + address: 'http://scrt-rpc.blockpane.com:9091', + provider: '[ block pane ]' } ] }, - "explorers": [ + explorers: [ { - "kind": "secret nodes", - "url": "https://secretnodes.com/secret/chains/secret-4", - "tx_page": "https://secretnodes.com/secret/chains/secret-4/transactions/${txHash}" + kind: 'secret nodes', + url: 'https://secretnodes.com/secret/chains/secret-4', + tx_page: + 'https://secretnodes.com/secret/chains/secret-4/transactions/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/secret", - "tx_page": "https://ping.pub/secret/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/secret', + tx_page: 'https://ping.pub/secret/tx/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/secret", - "tx_page": "https://www.mintscan.io/secret/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/secret', + tx_page: 'https://www.mintscan.io/secret/txs/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/secret-network", - "tx_page": "https://atomscan.com/secret-network/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/secret-network', + tx_page: 'https://atomscan.com/secret-network/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "sentinel", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Sentinel", - "chain_id": "sentinelhub-2", - "bech32_prefix": "sent", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/sentinel-official/networks/main/sentinelhub-2/genesis.zip" - }, - "codebase": { - "git_repo": "https://github.com/sentinel-official/hub", - "recommended_version": "v0.6.2", - "compatible_versions": [ - "v0.6.2" - ] - }, - "daemon_name": "sentinelhub", - "node_home": "$HOME/.sentinelhub", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + $schema: '../chain.schema.json', + chain_name: 'sentinel', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Sentinel', + chain_id: 'sentinelhub-2', + bech32_prefix: 'sent', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/sentinel-official/networks/main/sentinelhub-2/genesis.zip' + }, + codebase: { + git_repo: 'https://github.com/sentinel-official/hub', + recommended_version: 'v0.6.2', + compatible_versions: ['v0.6.2'] + }, + daemon_name: 'sentinelhub', + node_home: '$HOME/.sentinelhub', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "c3aa0ff9b3eb17be1b0a26d7c8a5683e8e528e1a", - "address": "159.89.192.105:26656" + id: 'c3aa0ff9b3eb17be1b0a26d7c8a5683e8e528e1a', + address: '159.89.192.105:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "05fe2a7847fd27345250915fd06752c424f40651", - "address": "85.222.234.135:26656" + id: '05fe2a7847fd27345250915fd06752c424f40651', + address: '85.222.234.135:26656' }, { - "id": "387027e3b1180d3a619cbbf3462704a490785963", - "address": "54.176.90.228:26656" + id: '387027e3b1180d3a619cbbf3462704a490785963', + address: '54.176.90.228:26656' }, { - "id": "63bd9cfce0f0d274aad5b166dd06d829021aec43", - "address": "121.78.247.243:56656" + id: '63bd9cfce0f0d274aad5b166dd06d829021aec43', + address: '121.78.247.243:56656' }, { - "id": "855807cc6a919c22ec943050ebb5c80b23724ed0", - "address": "3.239.11.246:26656" + id: '855807cc6a919c22ec943050ebb5c80b23724ed0', + address: '3.239.11.246:26656' }, { - "id": "8caefbf8f4318ecc93f2c901cf11470e4a16c818", - "address": "161.97.135.122:26656" + id: '8caefbf8f4318ecc93f2c901cf11470e4a16c818', + address: '161.97.135.122:26656' }, { - "id": "9174af5f16f74660cccf49f893d243949af45f7f", - "address": "54.177.29.46:26656" + id: '9174af5f16f74660cccf49f893d243949af45f7f', + address: '54.177.29.46:26656' }, { - "id": "9fa528bd2b9e7c80724a1d8a4e1a2a8a83e7d123", - "address": "142.93.72.221:26656" + id: '9fa528bd2b9e7c80724a1d8a4e1a2a8a83e7d123', + address: '142.93.72.221:26656' }, { - "id": "a77f6a094578dad899e2f40e0626b4c6d4705311", - "address": "3.36.165.232:26656" + id: 'a77f6a094578dad899e2f40e0626b4c6d4705311', + address: '3.36.165.232:26656' }, { - "id": "bd45a11390d16d128a9eeea3935b53d7a1a3c120", - "address": "15.236.127.69:26656" + id: 'bd45a11390d16d128a9eeea3935b53d7a1a3c120', + address: '15.236.127.69:26656' }, { - "id": "cdb8dd7628460a546ce1594ca0bc0c20366514cf", - "address": "34.72.64.178:26656" + id: 'cdb8dd7628460a546ce1594ca0bc0c20366514cf', + address: '34.72.64.178:26656' }, { - "id": "d1efceccb04ded9a604e5235f76da86872157d68", - "address": "161.97.149.223:26656" + id: 'd1efceccb04ded9a604e5235f76da86872157d68', + address: '161.97.149.223:26656' }, { - "id": "e00b23444cc8dbb353d5faa765ab36cfc0116b57", - "address": "83.60.98.134:28685" + id: 'e00b23444cc8dbb353d5faa765ab36cfc0116b57', + address: '83.60.98.134:28685' }, { - "id": "e5ee89bd4fc371c6a0e66d2b8daefd891b6b87b5", - "address": "157.90.117.58:26656" + id: 'e5ee89bd4fc371c6a0e66d2b8daefd891b6b87b5', + address: '157.90.117.58:26656' }, { - "id": "f7ceb735606f90df7eb6cd987641876955b6e325", - "address": "46.4.55.150:36656" + id: 'f7ceb735606f90df7eb6cd987641876955b6e325', + address: '46.4.55.150:36656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-sentinel.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-sentinel.keplr.app', + provider: 'chainapsis' }, { - "address": "https://rpc-sentinel-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-sentinel-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc-sentinel.whispernode.com", - "provider": "WhisperNode🤐" + address: 'https://rpc-sentinel.whispernode.com', + provider: 'WhisperNode🤐' } ], - "rest": [ + rest: [ { - "address": "https://lcd-sentinel.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-sentinel.keplr.app', + provider: 'chainapsis' }, { - "address": "https://api-sentinel-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-sentinel-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://lcd-sentinel.whispernode.com", - "provider": "WhisperNode🤐" + address: 'https://lcd-sentinel.whispernode.com', + provider: 'WhisperNode🤐' } ], - "grpc": [ + grpc: [ { - "address": "grpc-sentinel-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-sentinel-ia.notional.ventures:443', + provider: 'Notional' } ] } }, { - "$schema": "../chain.schema.json", - "chain_name": "shentu", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Shentu", - "chain_id": "shentu-2.2", - "bech32_prefix": "certik", - "daemon_name": "certik", - "node_home": "$HOME/.certik", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ShentuChain/mainnet/main/shentu-2.2/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "codebase": { - "git_repo": "https://github.com/ShentuChain/shentu", - "recommended_version": "v2.4.0", - "compatible_versions": [ - "v2.4.0" - ], - "binaries": { - "linux/amd64": "https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0.linux_amd64", - "darwin/amd64": "https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0_arm64_macos", - "windows/amd64": "https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0_win_x86_64.exe" + $schema: '../chain.schema.json', + chain_name: 'shentu', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Shentu', + chain_id: 'shentu-2.2', + bech32_prefix: 'certik', + daemon_name: 'certik', + node_home: '$HOME/.certik', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ShentuChain/mainnet/main/shentu-2.2/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + codebase: { + git_repo: 'https://github.com/ShentuChain/shentu', + recommended_version: 'v2.4.0', + compatible_versions: ['v2.4.0'], + binaries: { + 'linux/amd64': + 'https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0.linux_amd64', + 'darwin/amd64': + 'https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0_arm64_macos', + 'windows/amd64': + 'https://github.com/ShentuChain/shentu/releases/download/v2.4.0/certik_2.4.0_win_x86_64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "3fddc0e55801f89f27a1644116e9ddb16a951e80", - "address": "3.80.87.219:26656", - "provider": "Shentu" + id: '3fddc0e55801f89f27a1644116e9ddb16a951e80', + address: '3.80.87.219:26656', + provider: 'Shentu' }, { - "id": "4814cb067fe0aef705c4d304f0caa2362b7c4246", - "address": "54.167.122.47:26656", - "provider": "Shentu" + id: '4814cb067fe0aef705c4d304f0caa2362b7c4246', + address: '54.167.122.47:26656', + provider: 'Shentu' }, { - "id": "f42be55f76b7d3425f493e54d043e65bfc6f43cb", - "address": "54.227.66.150:26656", - "provider": "Shentu" + id: 'f42be55f76b7d3425f493e54d043e65bfc6f43cb', + address: '54.227.66.150:26656', + provider: 'Shentu' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "3fddc0e55801f89f27a1644116e9ddb16a951e80", - "address": "3.80.87.219:26656", - "provider": "Shentu" + id: '3fddc0e55801f89f27a1644116e9ddb16a951e80', + address: '3.80.87.219:26656', + provider: 'Shentu' }, { - "id": "4814cb067fe0aef705c4d304f0caa2362b7c4246", - "address": "54.167.122.47:26656", - "provider": "Shentu" + id: '4814cb067fe0aef705c4d304f0caa2362b7c4246', + address: '54.167.122.47:26656', + provider: 'Shentu' }, { - "id": "f42be55f76b7d3425f493e54d043e65bfc6f43cb", - "address": "54.227.66.150:26656", - "provider": "Shentu" + id: 'f42be55f76b7d3425f493e54d043e65bfc6f43cb', + address: '54.227.66.150:26656', + provider: 'Shentu' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://shenturpc.noopsbycertik.com/", - "provider": "Shentu" + address: 'https://shenturpc.noopsbycertik.com/', + provider: 'Shentu' }, { - "address": "https://shenturpc.panthea.eu", - "provider": "Panthea EU" + address: 'https://shenturpc.panthea.eu', + provider: 'Panthea EU' } ], - "rest": [ + rest: [ { - "address": "https://chainfull.noopsbycertik.com/", - "provider": "Shentu" + address: 'https://chainfull.noopsbycertik.com/', + provider: 'Shentu' }, { - "address": "https://shentuapi.panthea.eu", - "provider": "Panthea EU" + address: 'https://shentuapi.panthea.eu', + provider: 'Panthea EU' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/certik", - "tx_page": "https://www.mintscan.io/certik/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/certik', + tx_page: 'https://www.mintscan.io/certik/txs/${txHash}' }, { - "kind": "Shentu Explorer", - "url": "https://explorer.shentu.technology/?net=shentu-2.2", - "tx_page": "https://explorer.shentu.technology/transactions/${txHash}?net=shentu-2.2" + kind: 'Shentu Explorer', + url: 'https://explorer.shentu.technology/?net=shentu-2.2', + tx_page: + 'https://explorer.shentu.technology/transactions/${txHash}?net=shentu-2.2' }, { - "kind": "ping.pub", - "url": "https://ping.pub/shentu", - "tx_page": "https://ping.pub/shentu/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/shentu', + tx_page: 'https://ping.pub/shentu/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/certik", - "tx_page": "https://atomscan.com/certik/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/certik', + tx_page: 'https://atomscan.com/certik/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "sifchain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Sifchain", - "chain_id": "sifchain-1", - "bech32_prefix": "sif", - "daemon_name": "sifnoded", - "node_home": "$HOME/.sifnoded", - "genesis": { - "genesis_url": "https://github.com/Sifchain/networks/blob/master/betanet/sifchain-1/genesis.json.gz?raw=true" - }, - "codebase": { - "git_repo": "https://github.com/Sifchain/sifnode.git", - "recommended_version": "betanet-0.9.12", - "compatible_versions": [ - "betanet-0.9.12" - ], - "binaries": { - "linux/amd64": "https://github.com/Sifchain/sifnode/releases/download/betanet-0.9.12/sifnoded-betanet-0.9.12-linux-amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'sifchain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Sifchain', + chain_id: 'sifchain-1', + bech32_prefix: 'sif', + daemon_name: 'sifnoded', + node_home: '$HOME/.sifnoded', + genesis: { + genesis_url: + 'https://github.com/Sifchain/networks/blob/master/betanet/sifchain-1/genesis.json.gz?raw=true' + }, + codebase: { + git_repo: 'https://github.com/Sifchain/sifnode.git', + recommended_version: 'betanet-0.9.12', + compatible_versions: ['betanet-0.9.12'], + binaries: { + 'linux/amd64': + 'https://github.com/Sifchain/sifnode/releases/download/betanet-0.9.12/sifnoded-betanet-0.9.12-linux-amd64.zip' } }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "0d4981bdaf4d5d73bad00af3b1fa9d699e4d3bc0", - "address": "44.235.108.41:26656" + id: '0d4981bdaf4d5d73bad00af3b1fa9d699e4d3bc0', + address: '44.235.108.41:26656' }, { - "id": "bcc2d07a14a8a0b3aa202e9ac106dec0bef91fda", - "address": "13.55.247.60:26656" + id: 'bcc2d07a14a8a0b3aa202e9ac106dec0bef91fda', + address: '13.55.247.60:26656' }, { - "id": "663dec65b754aceef5fcccb864048305208e7eb2", - "address": "34.248.110.88:26656" + id: '663dec65b754aceef5fcccb864048305208e7eb2', + address: '34.248.110.88:26656' }, { - "id": "0120f0a48e7e81cc98829ef4f5b39480f11ecd5a", - "address": "52.76.185.17:26656" + id: '0120f0a48e7e81cc98829ef4f5b39480f11ecd5a', + address: '52.76.185.17:26656' }, { - "id": "6535497f0152293d773108774a705b86c2249a9c", - "address": "44.238.121.65:26656" + id: '6535497f0152293d773108774a705b86c2249a9c', + address: '44.238.121.65:26656' }, { - "id": "fdf5cffc2b20a20fab954d3b6785e9c382762d14", - "address": "34.255.133.248:26656" + id: 'fdf5cffc2b20a20fab954d3b6785e9c382762d14', + address: '34.255.133.248:26656' }, { - "id": "8c240f71f9e060277ce18dc09d82d3bbb05d1972", - "address": "13.211.43.177:26656" + id: '8c240f71f9e060277ce18dc09d82d3bbb05d1972', + address: '13.211.43.177:26656' }, { - "id": "9fbcb6bd5a7f20a716564157c4f6296d2faf5f64", - "address": "18.138.208.95:26656" + id: '9fbcb6bd5a7f20a716564157c4f6296d2faf5f64', + address: '18.138.208.95:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.sifchain.finance:443" + address: 'https://rpc.sifchain.finance:443' }, { - "address": "https://rpc-archive.sifchain.finance:443" + address: 'https://rpc-archive.sifchain.finance:443' }, { - "address": "https://sifchain-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://sifchain-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-sifchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-sifchain-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rpc-sifchain.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-sifchain.ecostake.com', + provider: 'ecostake' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.sifchain.finance:443" + address: 'https://grpc.sifchain.finance:443' }, { - "address": "grpc-sifchain-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-sifchain-ia.notional.ventures:443', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.sifchain.finance:443" + address: 'https://api.sifchain.finance:443' }, { - "address": "https://api-sifchain-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-sifchain-ia.notional.ventures/', + provider: 'Notional' }, { - "address": "https://rest-sifchain.ecostake.com", - "provider": "ecostake" + address: 'https://rest-sifchain.ecostake.com', + provider: 'ecostake' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://ping.pub/sifchain", - "tx_page": "https://ping.pub/sifchain/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/sifchain', + tx_page: 'https://ping.pub/sifchain/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://sifchain.explorers.guru", - "tx_page": "https://sifchain.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://sifchain.explorers.guru', + tx_page: 'https://sifchain.explorers.guru/transaction/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/sifchain", - "tx_page": "https://www.mintscan.io/sifchain/txs/{txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/sifchain', + tx_page: 'https://www.mintscan.io/sifchain/txs/{txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/sifchain", - "tx_page": "https://atomscan.com/sifchain/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/sifchain', + tx_page: 'https://atomscan.com/sifchain/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "sommelier", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Sommelier", - "chain_id": "sommelier-3", - "bech32_prefix": "somm", - "daemon_name": "sommelier", - "node_home": "$HOME/.sommelier", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/PeggyJV/sommelier/main/contrib/mainnet/sommelier-2/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "usomm" - } - ] - }, - "codebase": { - "git_repo": "https://github.com/PeggyJV/sommelier", - "recommended_version": "v3.1.0", - "compatible_versions": [ - "v3.1.0" - ], - "binaries": { - "linux/amd64": "https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_linux_amd64.tar.gz", - "linux/arm64": "https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_darwin_amd64.tar.gz", - "darwin/arm64": "https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_darwin_arm64.tar.gz", - "windows/amd64": "https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_windows_amd64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'sommelier', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Sommelier', + chain_id: 'sommelier-3', + bech32_prefix: 'somm', + daemon_name: 'sommelier', + node_home: '$HOME/.sommelier', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/PeggyJV/sommelier/main/contrib/mainnet/sommelier-2/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'usomm' + } + ] + }, + codebase: { + git_repo: 'https://github.com/PeggyJV/sommelier', + recommended_version: 'v3.1.0', + compatible_versions: ['v3.1.0'], + binaries: { + 'linux/amd64': + 'https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_linux_amd64.tar.gz', + 'linux/arm64': + 'https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_darwin_amd64.tar.gz', + 'darwin/arm64': + 'https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_darwin_arm64.tar.gz', + 'windows/amd64': + 'https://github.com/PeggyJV/sommelier/releases/download/v3.1.0/sommelier_3.1.0_windows_amd64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "a96d69179e4b72f728b9dd4dbe40400701515fee", - "address": "80.64.208.51:26656" + id: 'a96d69179e4b72f728b9dd4dbe40400701515fee', + address: '80.64.208.51:26656' }, { - "id": "759a61eade50cb48e2a6f974fab679096d1de916", - "address": "34.127.107.137:26656" + id: '759a61eade50cb48e2a6f974fab679096d1de916', + address: '34.127.107.137:26656' }, { - "id": "14ac13745a563876740b72637ab9a3539542fe2b", - "address": "35.185.230.0:26656" + id: '14ac13745a563876740b72637ab9a3539542fe2b', + address: '35.185.230.0:26656' }, { - "id": "bebf759f5706137168e3a7158e4495865a04cca9", - "address": "34.83.151.60:26656" + id: 'bebf759f5706137168e3a7158e4495865a04cca9', + address: '34.83.151.60:26656' }, { - "id": "c94fd60124e3656df54ff965d178e36c760c195d", - "address": "65.108.57.224:26656" + id: 'c94fd60124e3656df54ff965d178e36c760c195d', + address: '65.108.57.224:26656' }, { - "id": "65cc609f9ae965323bd03d1b84f7fa340e6b6c7d", - "address": "51.38.52.210:36656" + id: '65cc609f9ae965323bd03d1b84f7fa340e6b6c7d', + address: '51.38.52.210:36656' }, { - "id": "4ed70d91bd645e78a78fe6cd4d1973937bb739e1", - "address": "51.91.67.48:36656" + id: '4ed70d91bd645e78a78fe6cd4d1973937bb739e1', + address: '51.91.67.48:36656' }, { - "id": "404e6b2176bf74018cfdeb275c21ce264d43c673", - "address": "54.38.46.179:36656" + id: '404e6b2176bf74018cfdeb275c21ce264d43c673', + address: '54.38.46.179:36656' }, { - "id": "c7334f0462cad3272f7d504f7a293fd2585165ef", - "address": "35.215.30.79:26656" + id: 'c7334f0462cad3272f7d504f7a293fd2585165ef', + address: '35.215.30.79:26656' }, { - "id": "194f89dd1d08a82e99bf76aee535e6d4b3c79354", - "address": "seeds.pupmos.network:2002", - "provider": "PUPMØS" + id: '194f89dd1d08a82e99bf76aee535e6d4b3c79354', + address: 'seeds.pupmos.network:2002', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "e1d1dd22a63b1899ac51c8c96416f77c8ef98231", - "address": "sommelier.tendermint.cloud:26656", - "provider": "tendermint" + id: 'e1d1dd22a63b1899ac51c8c96416f77c8ef98231', + address: 'sommelier.tendermint.cloud:26656', + provider: 'tendermint' }, { - "id": "6533beebc826f84376e503bbc3265b07b26b9ad5", - "address": "sommelier.standardcryptovc.com:26656", - "provider": "standardcrypto" + id: '6533beebc826f84376e503bbc3265b07b26b9ad5', + address: 'sommelier.standardcryptovc.com:26656', + provider: 'standardcrypto' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-sommelier.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-sommelier.keplr.app', + provider: 'chainapsis' }, { - "address": "https://sommelier-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://sommelier-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.sommelier.pupmos.network", - "provider": "PUPMØS" + address: 'https://rpc.sommelier.pupmos.network', + provider: 'PUPMØS' } ], - "rest": [ + rest: [ { - "address": "https://lcd-sommelier.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-sommelier.keplr.app', + provider: 'chainapsis' }, { - "address": "https://api.sommelier.pupmos.network", - "provider": "PUPMØS" + address: 'https://api.sommelier.pupmos.network', + provider: 'PUPMØS' } ], - "grpc": [ + grpc: [ { - "address": "35.230.37.28:9090", - "provider": "strangelove" + address: '35.230.37.28:9090', + provider: 'strangelove' } ] }, - "explorers": [ + explorers: [ { - "kind": "sommscan", - "url": "https://sommscan.io", - "tx_page": "https://sommscan.io" + kind: 'sommscan', + url: 'https://sommscan.io', + tx_page: 'https://sommscan.io' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "stargaze", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Stargaze", - "chain_id": "stargaze-1", - "bech32_prefix": "stars", - "daemon_name": "starsd", - "node_home": "$HOME/.starsd", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/public-awesome/mainnet/main/stargaze-1/genesis.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'stargaze', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Stargaze', + chain_id: 'stargaze-1', + bech32_prefix: 'stars', + daemon_name: 'starsd', + node_home: '$HOME/.starsd', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/public-awesome/mainnet/main/stargaze-1/genesis.tar.gz' }, - "codebase": { - "git_repo": "https://github.com/public-awesome/stargaze", - "recommended_version": "v6.0.1", - "compatible_versions": [ - "v6.0.1" - ] + codebase: { + git_repo: 'https://github.com/public-awesome/stargaze', + recommended_version: 'v6.0.1', + compatible_versions: ['v6.0.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "70ed826888f102c7c1ceb4d07287956628a53508", - "address": "174.138.124.7:36656" + id: '70ed826888f102c7c1ceb4d07287956628a53508', + address: '174.138.124.7:36656' }, { - "id": "722079345d941cd2da3daedea548c909d9b83ec5", - "address": "104.248.101.113:36656" + id: '722079345d941cd2da3daedea548c909d9b83ec5', + address: '104.248.101.113:36656' }, { - "id": "d5fc4f479c4e212c96dff5704bb2468ea03b8ae3", - "address": "sg-seed.blockpane.com:26656", - "provider": "[ block pane ]" + id: 'd5fc4f479c4e212c96dff5704bb2468ea03b8ae3', + address: 'sg-seed.blockpane.com:26656', + provider: '[ block pane ]' }, { - "id": "babc3f3f7804933265ec9c40ad94f4da8e9e0017", - "address": "stargaze.seed.rhinostake.com:16656", - "provider": "RHINO" + id: 'babc3f3f7804933265ec9c40ad94f4da8e9e0017', + address: 'stargaze.seed.rhinostake.com:16656', + provider: 'RHINO' }, { - "id": "2f7b2d38b1a4f76b20e917e01fb9f4a200bbf80c", - "address": "seeds.pupmos.network:2004", - "provider": "PUPMØS" + id: '2f7b2d38b1a4f76b20e917e01fb9f4a200bbf80c', + address: 'seeds.pupmos.network:2004', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "1d73521c565b37a53038fc730bcd207a3db361b6", - "address": "144.91.91.30:26656", - "provider": "0xSR" + id: '1d73521c565b37a53038fc730bcd207a3db361b6', + address: '144.91.91.30:26656', + provider: '0xSR' }, { - "id": "524dd60331c56d198deabbb70238c2cc69119cca", - "address": "161.97.122.216:36656", - "provider": "Army IDs" + id: '524dd60331c56d198deabbb70238c2cc69119cca', + address: '161.97.122.216:36656', + provider: 'Army IDs' }, { - "id": "0c9ebd7b36f96d0279dbf6dc38572f5797c096c1", - "address": "65.108.42.168:26656", - "provider": "ramuchi.tech" + id: '0c9ebd7b36f96d0279dbf6dc38572f5797c096c1', + address: '65.108.42.168:26656', + provider: 'ramuchi.tech' }, { - "id": "320e4b81ab327dd2593a39de0d3ae718fdb9347c", - "address": "176.9.168.220:26656", - "provider": "Staketab" + id: '320e4b81ab327dd2593a39de0d3ae718fdb9347c', + address: '176.9.168.220:26656', + provider: 'Staketab' }, { - "id": "b8eeb6d99594c218c0373d8ec4c1e81031b92198", - "address": "68.183.92.46:26656", - "provider": "KingSuper" + id: 'b8eeb6d99594c218c0373d8ec4c1e81031b92198', + address: '68.183.92.46:26656', + provider: 'KingSuper' }, { - "id": "387c32677c54dd4627366ffdf8e2dda68e71af69", - "address": "54.193.168.147:26656", - "provider": "Cosmostation" + id: '387c32677c54dd4627366ffdf8e2dda68e71af69', + address: '54.193.168.147:26656', + provider: 'Cosmostation' }, { - "id": "e28635dc537dce1d6f1cf44b7b335a530d923fa1", - "address": "15.165.94.246:26656", - "provider": "Cosmostation" + id: 'e28635dc537dce1d6f1cf44b7b335a530d923fa1', + address: '15.165.94.246:26656', + provider: 'Cosmostation' }, { - "id": "413562a502b4a47ec3375bfae6aa01bc47bc6979", - "address": "204.236.141.188:26656", - "provider": "Cosmostation" + id: '413562a502b4a47ec3375bfae6aa01bc47bc6979', + address: '204.236.141.188:26656', + provider: 'Cosmostation' }, { - "id": "ca93b9bed1a98184f36ca31a6cc6dad2e289a2d4", - "address": "94.130.165.103:26656", - "provider": "OranG3cluB" + id: 'ca93b9bed1a98184f36ca31a6cc6dad2e289a2d4', + address: '94.130.165.103:26656', + provider: 'OranG3cluB' }, { - "id": "0c7e82641f81754fc30158587c7e4a30ddb5c967", - "address": "54.216.187.98:26656", - "provider": "needlecast" + id: '0c7e82641f81754fc30158587c7e4a30ddb5c967', + address: '54.216.187.98:26656', + provider: 'needlecast' }, { - "id": "1de5e685e687d0df35e6f3734ee04aff956d5c0f", - "address": "75.119.154.98:26656", - "provider": "StakeLab" + id: '1de5e685e687d0df35e6f3734ee04aff956d5c0f', + address: '75.119.154.98:26656', + provider: 'StakeLab' }, { - "id": "6353ff1783e076a70ab444c4229c01ed6df6b477", - "address": "65.21.193.190:26656", - "provider": "sashamaxymchuk[MantiCore]" + id: '6353ff1783e076a70ab444c4229c01ed6df6b477', + address: '65.21.193.190:26656', + provider: 'sashamaxymchuk[MantiCore]' }, { - "id": "5eb7bcdd83b47744b652f11ecd8495a670612643", - "address": "135.181.176.62:26656", - "provider": "StakeCraft" + id: '5eb7bcdd83b47744b652f11ecd8495a670612643', + address: '135.181.176.62:26656', + provider: 'StakeCraft' }, { - "id": "75ea9c7b04be4a5779853b6e17c773ab092652c8", - "address": "91.230.111.50:26656", - "provider": "EmreNOP | BlockSeal" + id: '75ea9c7b04be4a5779853b6e17c773ab092652c8', + address: '91.230.111.50:26656', + provider: 'EmreNOP | BlockSeal' }, { - "id": "9f860496d2a346cc7888d7b4a7887f6bfc0fc0e4", - "address": "162.55.39.33:26656", - "provider": "Blackhox" + id: '9f860496d2a346cc7888d7b4a7887f6bfc0fc0e4', + address: '162.55.39.33:26656', + provider: 'Blackhox' }, { - "id": "f89e655de3e6804e6448de3de3428bea1fd0fa97", - "address": "135.181.21.55:36656", - "provider": "Alex (Bambarello) Validator" + id: 'f89e655de3e6804e6448de3de3428bea1fd0fa97', + address: '135.181.21.55:36656', + provider: 'Alex (Bambarello) Validator' }, { - "id": "1c8aabb166c7757c26cdbb1bfc380146ca59bc4e", - "address": "135.181.179.49:26356", - "provider": "Bloqhub" + id: '1c8aabb166c7757c26cdbb1bfc380146ca59bc4e', + address: '135.181.179.49:26356', + provider: 'Bloqhub' }, { - "id": "2783a2b3bf3f84947c919588e8b0ca2c05e8053d", - "address": "167.99.238.45:26656" + id: '2783a2b3bf3f84947c919588e8b0ca2c05e8053d', + address: '167.99.238.45:26656' }, { - "id": "64d19582ff31ac88245ac604dc18d48b41470f48", - "address": "167.99.238.45:26656" + id: '64d19582ff31ac88245ac604dc18d48b41470f48', + address: '167.99.238.45:26656' }, { - "id": "c636bf9ad65959b738c15eb5458a89a88cba32a4", - "address": "135.181.102.205:26656", - "provider": "tsundokum" + id: 'c636bf9ad65959b738c15eb5458a89a88cba32a4', + address: '135.181.102.205:26656', + provider: 'tsundokum' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.stargaze.pupmos.network/", - "provider": "PUPMØS" + address: 'https://rpc.stargaze.pupmos.network/', + provider: 'PUPMØS' }, { - "address": "https://rpc.stargaze-apis.com/", - "provider": "Stargaze Foundation" + address: 'https://rpc.stargaze-apis.com/', + provider: 'Stargaze Foundation' }, { - "address": "https://rpc.stargaze.ezstaking.io/", - "provider": "EZStaking.io" + address: 'https://rpc.stargaze.ezstaking.io/', + provider: 'EZStaking.io' }, { - "address": "https://rpc.stars.kingnodes.com/", - "provider": "kingnodes" + address: 'https://rpc.stars.kingnodes.com/', + provider: 'kingnodes' }, { - "address": "https://stargaze-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://stargaze-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc-stargaze-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-stargaze-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.stargaze.pupmos.network/", - "provider": "PUPMØS" + address: 'https://api.stargaze.pupmos.network/', + provider: 'PUPMØS' }, { - "address": "https://rest.stargaze-apis.com/", - "provider": "Stargaze Foundation" + address: 'https://rest.stargaze-apis.com/', + provider: 'Stargaze Foundation' }, { - "address": "https://api.stargaze.ezstaking.io/", - "provider": "EZStaking.io" + address: 'https://api.stargaze.ezstaking.io/', + provider: 'EZStaking.io' }, { - "address": "https://api.stars.kingnodes.com/", - "provider": "kingnodes" + address: 'https://api.stars.kingnodes.com/', + provider: 'kingnodes' }, { - "address": "https://api-stargaze-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-stargaze-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-stargaze-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-stargaze-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/stargaze/", - "tx_page": "https://www.mintscan.io/stargaze/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/stargaze/', + tx_page: 'https://www.mintscan.io/stargaze/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/stargaze", - "tx_page": "https://ping.pub/stargaze/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/stargaze', + tx_page: 'https://ping.pub/stargaze/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/stargaze", - "tx_page": "https://atomscan.com/stargaze/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/stargaze', + tx_page: 'https://atomscan.com/stargaze/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "starname", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Starname", - "chain_id": "iov-mainnet-ibc", - "bech32_prefix": "star", - "slip44": 234, - "genesis": { - "genesis_url": "https://gist.githubusercontent.com/davepuchyr/6bea7bf369064d118195e9b15ea08a0f/raw/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'starname', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Starname', + chain_id: 'iov-mainnet-ibc', + bech32_prefix: 'star', + slip44: 234, + genesis: { + genesis_url: + 'https://gist.githubusercontent.com/davepuchyr/6bea7bf369064d118195e9b15ea08a0f/raw/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/iov-one/starnamed", - "recommended_version": "v0.10.18", - "compatible_versions": [ - "v0.10.17", - "v0.10.18" - ] + codebase: { + git_repo: 'https://github.com/iov-one/starnamed', + recommended_version: 'v0.10.18', + compatible_versions: ['v0.10.17', 'v0.10.18'] }, - "peers": { - "persistent_peers": [ + peers: { + persistent_peers: [ { - "id": "ca133187b37b59d2454812cfcf31b6211395adec", - "address": "167.99.194.126:16656" + id: 'ca133187b37b59d2454812cfcf31b6211395adec', + address: '167.99.194.126:16656' }, { - "id": "1c7e014b65f7a3ea2cf48bffce78f5cbcad2a0b7", - "address": "13.37.85.253:26656" + id: '1c7e014b65f7a3ea2cf48bffce78f5cbcad2a0b7', + address: '13.37.85.253:26656' }, { - "id": "8c64a2127cc07d4570756b61f83af60d34258398", - "address": "13.37.61.32:26656" + id: '8c64a2127cc07d4570756b61f83af60d34258398', + address: '13.37.61.32:26656' }, { - "id": "9aabe0ac122f3104d8fc098e19c66714c6f1ace9", - "address": "3.37.140.5:26656" + id: '9aabe0ac122f3104d8fc098e19c66714c6f1ace9', + address: '3.37.140.5:26656' }, { - "id": "faedef1969911d24bf72c56fc01326eb891fa3b7", - "address": "63.250.53.45:16656" + id: 'faedef1969911d24bf72c56fc01326eb891fa3b7', + address: '63.250.53.45:16656' }, { - "id": "94ac1c02b4e2ca3fb2706c91a68b8030ed3615a1", - "address": "35.247.175.128:16656" + id: '94ac1c02b4e2ca3fb2706c91a68b8030ed3615a1', + address: '35.247.175.128:16656' }, { - "id": "be2235996b1c785a9f57eed25fd673ca111f0bae", - "address": "52.52.89.64:26656" + id: 'be2235996b1c785a9f57eed25fd673ca111f0bae', + address: '52.52.89.64:26656' }, { - "id": "f63d15ab7ed55dc75f332d0b0d2b01d529d5cbcd", - "address": "212.71.247.11:26656" + id: 'f63d15ab7ed55dc75f332d0b0d2b01d529d5cbcd', + address: '212.71.247.11:26656' }, { - "id": "f5597a7ed33bc99eb6ba7253eb8ac76af27b4c6d", - "address": "138.201.20.147:26656" + id: 'f5597a7ed33bc99eb6ba7253eb8ac76af27b4c6d', + address: '138.201.20.147:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-iov.keplr.app", - "provider": "chainapsis" + address: 'https://rpc-iov.keplr.app', + provider: 'chainapsis' }, { - "address": "https://rpc-starname-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-starname-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-iov.keplr.app", - "provider": "chainapsis" + address: 'https://lcd-iov.keplr.app', + provider: 'chainapsis' }, { - "address": "https://api-starname-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-starname-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-starname-ia.notional.ventures:443", - "provider": "starname" + address: 'grpc-starname-ia.notional.ventures:443', + provider: 'starname' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/starname", - "tx_page": "https://www.mintscan.io/starname/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/starname', + tx_page: 'https://www.mintscan.io/starname/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/starname", - "tx_page": "https://ping.pub/starname/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/starname', + tx_page: 'https://ping.pub/starname/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/starname", - "tx_page": "https://atomscan.com/starname/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/starname', + tx_page: 'https://atomscan.com/starname/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "terra", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Terra Classic", - "chain_id": "columbus-5", - "daemon_name": "terrad", - "node_home": "$HOME/.terra", - "bech32_prefix": "terra", - "genesis": { - "genesis_url": "https://columbus-genesis.s3.ap-northeast-1.amazonaws.com/columbus-5-genesis.json" - }, - "slip44": 330, - "codebase": { - "git_repo": "https://github.com/terra-money/core/", - "recommended_version": "v0.5.17", - "compatible_versions": [ - "v0.5.17", - "v0.5.16" - ], - "binaries": { - "linux/amd64": "https://github.com/terra-money/core/releases/download/v0.5.17/terra_0.5.17_Linux_x86_64.tar.gz", - "darwin/amd64": "https://github.com/terra-money/core/releases/download/v0.5.17/terra_0.5.17_Darwin_x86_64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'terra', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Terra Classic', + chain_id: 'columbus-5', + daemon_name: 'terrad', + node_home: '$HOME/.terra', + bech32_prefix: 'terra', + genesis: { + genesis_url: + 'https://columbus-genesis.s3.ap-northeast-1.amazonaws.com/columbus-5-genesis.json' + }, + slip44: 330, + codebase: { + git_repo: 'https://github.com/terra-money/core/', + recommended_version: 'v0.5.17', + compatible_versions: ['v0.5.17', 'v0.5.16'], + binaries: { + 'linux/amd64': + 'https://github.com/terra-money/core/releases/download/v0.5.17/terra_0.5.17_Linux_x86_64.tar.gz', + 'darwin/amd64': + 'https://github.com/terra-money/core/releases/download/v0.5.17/terra_0.5.17_Darwin_x86_64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "e999fc20aa5b87c1acef8677cf495ad85061cfb9", - "address": "seed.terra.delightlabs.io:26656" + id: 'e999fc20aa5b87c1acef8677cf495ad85061cfb9', + address: 'seed.terra.delightlabs.io:26656' }, { - "id": "6d8e943c049a80c161a889cb5fcf3d184215023e", - "address": "public-seed2.terra.dev:26656" + id: '6d8e943c049a80c161a889cb5fcf3d184215023e', + address: 'public-seed2.terra.dev:26656' }, { - "id": "87048bf71526fb92d73733ba3ddb79b7a83ca11e", - "address": "public-seed.terra.dev:26656" + id: '87048bf71526fb92d73733ba3ddb79b7a83ca11e', + address: 'public-seed.terra.dev:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "3ddf51347ba7c2bc4a8e1e26ee9d1cbf81034516", - "address": "162.55.244.250:27656" + id: '3ddf51347ba7c2bc4a8e1e26ee9d1cbf81034516', + address: '162.55.244.250:27656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://terra-rpc.easy2stake.com:443", - "provider": "Easy2stake" + address: 'https://terra-rpc.easy2stake.com:443', + provider: 'Easy2stake' }, { - "address": "http://public-node.terra.dev:26657", - "provider": "Terra" + address: 'http://public-node.terra.dev:26657', + provider: 'Terra' }, { - "address": "https://rpc-terra-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-terra-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://blockdaemon-terra-lcd.api.bdnodes.net:1317", - "provider": "Blockdaemon" + address: 'https://blockdaemon-terra-lcd.api.bdnodes.net:1317', + provider: 'Blockdaemon' }, { - "address": "https://terra.mainnet.lcd.blockngine.io:443", - "provider": "BlockNgine Validators" + address: 'https://terra.mainnet.lcd.blockngine.io:443', + provider: 'BlockNgine Validators' }, { - "address": "https://api-terra-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-terra-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-terra-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-terra-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping-pub", - "url": "https://ping.pub/terra-luna", - "tx_page": "https://ping.pub/terra-luna/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/terra-luna', + tx_page: 'https://ping.pub/terra-luna/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/terra", - "tx_page": "https://atomscan.com/terra/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/terra', + tx_page: 'https://atomscan.com/terra/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "terra2", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Terra2", - "chain_id": "phoenix-1", - "daemon_name": "terrad", - "node_home": "$HOME/.terra", - "bech32_prefix": "terra", - "genesis": { - "genesis_url": "https://phoenix-genesis.s3.us-west-1.amazonaws.com/genesis.json" - }, - "slip44": 330, - "codebase": { - "git_repo": "https://github.com/terra-money/core/", - "recommended_version": "v2.0.1", - "compatible_versions": [ - "v2.0.1", - "v2.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz", - "darwin/amd64": "https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Darwin_x86_64.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'terra2', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Terra2', + chain_id: 'phoenix-1', + daemon_name: 'terrad', + node_home: '$HOME/.terra', + bech32_prefix: 'terra', + genesis: { + genesis_url: + 'https://phoenix-genesis.s3.us-west-1.amazonaws.com/genesis.json' + }, + slip44: 330, + codebase: { + git_repo: 'https://github.com/terra-money/core/', + recommended_version: 'v2.0.1', + compatible_versions: ['v2.0.1', 'v2.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Linux_x86_64.tar.gz', + 'darwin/amd64': + 'https://github.com/terra-money/core/releases/download/v2.0.1/terra_2.0.1_Darwin_x86_64.tar.gz' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "406bcf90a7b29df6ae475a1f94abe04ebde805af", - "address": "phoenix.seed.stakebin.io:16656" + id: '406bcf90a7b29df6ae475a1f94abe04ebde805af', + address: 'phoenix.seed.stakebin.io:16656' }, { - "id": "fc608a9a117d8d2302bcd181aec34eec6bb4fa96", - "address": "terra2-seed.blockpane.com:26656" + id: 'fc608a9a117d8d2302bcd181aec34eec6bb4fa96', + address: 'terra2-seed.blockpane.com:26656' }, { - "id": "8efd8248e06aabd553b56766ec2a850999d0861f", - "address": "exitnode.cereslabs.io:36656" + id: '8efd8248e06aabd553b56766ec2a850999d0861f', + address: 'exitnode.cereslabs.io:36656' }, { - "id": "b4d3b21747539060b270457437ef1bf99a51c694", - "address": "terra2.seed.synergynodes.com:26656" + id: 'b4d3b21747539060b270457437ef1bf99a51c694', + address: 'terra2.seed.synergynodes.com:26656' }, { - "id": "810d1628db9f1db56fa87a93fb6ef809c32d6325", - "address": "phoenix.seed.terra.btcsecure.io:26656" + id: '810d1628db9f1db56fa87a93fb6ef809c32d6325', + address: 'phoenix.seed.terra.btcsecure.io:26656' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "dc865a0d882f30e41e99ef23d9e6164163607523", - "address": "54.147.79.192:26656" + id: 'dc865a0d882f30e41e99ef23d9e6164163607523', + address: '54.147.79.192:26656' }, { - "id": "bdce6030a2bdebe4c660a76599fe3dee4a42d50f", - "address": "35.154.54.64:26656" + id: 'bdce6030a2bdebe4c660a76599fe3dee4a42d50f', + address: '35.154.54.64:26656' }, { - "id": "0f1096278efafcf3f0d3bd5b6544e6b8dcc36a0e", - "address": "206.189.129.195:26656" + id: '0f1096278efafcf3f0d3bd5b6544e6b8dcc36a0e', + address: '206.189.129.195:26656' }, { - "id": "c8ab8910e5f7bfcc6e81351eb851eb8c0540a194", - "address": "exitnode.cereslabs.io:26656" + id: 'c8ab8910e5f7bfcc6e81351eb851eb8c0540a194', + address: 'exitnode.cereslabs.io:26656' }, { - "id": "33afc1c21cb225bb2cfb9700442a576bbaeb7691", - "address": "163.172.100.203:26656" + id: '33afc1c21cb225bb2cfb9700442a576bbaeb7691', + address: '163.172.100.203:26656' }, { - "id": "9038d63588e0ab421fa71582720c1efb1ee867f6", - "address": "45.34.1.114:27656" + id: '9038d63588e0ab421fa71582720c1efb1ee867f6', + address: '45.34.1.114:27656' }, { - "id": "daa2fd0dc725d6673e7688c9c57fc3b6d99c83c4", - "address": "solarsys.noip.me:27656" + id: 'daa2fd0dc725d6673e7688c9c57fc3b6d99c83c4', + address: 'solarsys.noip.me:27656' }, { - "id": "331c2bbcd1aab921563dce85dedae840e1369e39", - "address": "142.132.199.98:10656" + id: '331c2bbcd1aab921563dce85dedae840e1369e39', + address: '142.132.199.98:10656' }, { - "id": "91b675be5f81931375358e02ab687c88fab02e41", - "address": "135.148.55.229:11656" + id: '91b675be5f81931375358e02ab687c88fab02e41', + address: '135.148.55.229:11656' }, { - "id": "9dc9e9b50c4cae52cdbec2034d879427b2a429ae", - "address": "54.180.81.122:26656" + id: '9dc9e9b50c4cae52cdbec2034d879427b2a429ae', + address: '54.180.81.122:26656' }, { - "id": "ad825ef6b29306d80b0eb8101133cedf7933eb5e", - "address": "116.203.36.94:26656" + id: 'ad825ef6b29306d80b0eb8101133cedf7933eb5e', + address: '116.203.36.94:26656' }, { - "id": "f2069012aec5ced4e88e7e4311391eabe72bb5a3", - "address": "node-phoenix.terra.lunastations.online:26656" + id: 'f2069012aec5ced4e88e7e4311391eabe72bb5a3', + address: 'node-phoenix.terra.lunastations.online:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.terrav2.ccvalidators.com:443/", - "provider": "CryptoCrew" + address: 'https://rpc.terrav2.ccvalidators.com:443/', + provider: 'CryptoCrew' }, { - "address": "https://terra-rpc.polkachu.com:443/", - "provider": "polkachu" + address: 'https://terra-rpc.polkachu.com:443/', + provider: 'polkachu' }, { - "address": "https://terra-rpc.stakely.io:443/", - "provider": "stakely" + address: 'https://terra-rpc.stakely.io:443/', + provider: 'stakely' } ], - "rest": [ + rest: [ { - "address": "https://terra-api.polkachu.com:443/", - "provider": "polkachu" + address: 'https://terra-api.polkachu.com:443/', + provider: 'polkachu' }, { - "address": "https://fcd.terrav2.ccvalidators.com:443/", - "provider": "CryptoCrew" + address: 'https://fcd.terrav2.ccvalidators.com:443/', + provider: 'CryptoCrew' } ] }, - "explorers": [ + explorers: [ { - "kind": "finder", - "url": "http://finder.terra.money/", - "tx_page": "https://finder.terra.money/mainnet/tx/${txHash}" + kind: 'finder', + url: 'http://finder.terra.money/', + tx_page: 'https://finder.terra.money/mainnet/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "stateset-1-testnet", - "status": "live", - "network_type": "testnet", - "pretty_name": "Stateset Testnet", - "chain_id": "stateset-1-testnet", - "bech32_prefix": "stateset", - "daemon_name": "statesetd", - "node_home": "$HOME/.statesetd", - "genesis": { - "genesis_url": "https://rpc.stateset.zone/genesis" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "ustate", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/stateset/core", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-linux-amd64", - "linux/arm64": "https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-linux-arm64", - "darwin/amd64": "https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-darwin-amd64", - "windows/amd64": "https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'stateset-1-testnet', + status: 'live', + network_type: 'testnet', + pretty_name: 'Stateset Testnet', + chain_id: 'stateset-1-testnet', + bech32_prefix: 'stateset', + daemon_name: 'statesetd', + node_home: '$HOME/.statesetd', + genesis: { + genesis_url: 'https://rpc.stateset.zone/genesis' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ustate', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/stateset/core', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-linux-amd64', + 'linux/arm64': + 'https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-linux-arm64', + 'darwin/amd64': + 'https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-darwin-amd64', + 'windows/amd64': + 'https://github.com/stateset/core/releases/download/v1.0.0/statesetd-1.0.0-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "DBC49AA829D16329C1772F7EF76730939E606A41", - "address": "rpc.stateset.zone:26656", - "provider": "stateset" + id: 'DBC49AA829D16329C1772F7EF76730939E606A41', + address: 'rpc.stateset.zone:26656', + provider: 'stateset' } ], - "persistent_peers": [] + persistent_peers: [] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.stateset.zone/", - "provider": "stateset" + address: 'https://rpc.stateset.zone/', + provider: 'stateset' } ], - "rest": [ + rest: [ { - "address": "https://rest-api.stateset.zone", - "provider": "stateset" + address: 'https://rest-api.stateset.zone', + provider: 'stateset' } ] }, - "explorers": [ + explorers: [ { - "kind": "bigdipper2.0", - "url": "https://explore.stateset.zone", - "tx_page": "https://explore.stateset.zone/transactions/${txHash}" + kind: 'bigdipper2.0', + url: 'https://explore.stateset.zone', + tx_page: 'https://explore.stateset.zone/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "theta", - "chain_id": "theta-testnet-001", - "pretty_name": "Theta Testnet", - "status": "live", - "network_type": "testnet", - "bech32_prefix": "cosmos", - "genesis": { - "genesis_url": "https://github.com/cosmos/testnets/raw/master/v7-theta/public-testnet/genesis.json.gz" - }, - "daemon_name": "gaiad", - "node_home": "$HOME/.gaia", - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ - { - "denom": "uatom", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/cosmos/gaia", - "recommended_version": "v7.0.2", - "compatible_versions": [ - "v7.0.0", - "v7.0.1", - "v7.0.2" - ], - "binaries": { - "linux/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-linux-amd64", - "linux/arm64": "https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-linux-arm64", - "darwin/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-darwin-amd64", - "windows/amd64": "https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-windows-amd64.exe" + $schema: '../chain.schema.json', + chain_name: 'theta', + chain_id: 'theta-testnet-001', + pretty_name: 'Theta Testnet', + status: 'live', + network_type: 'testnet', + bech32_prefix: 'cosmos', + genesis: { + genesis_url: + 'https://github.com/cosmos/testnets/raw/master/v7-theta/public-testnet/genesis.json.gz' + }, + daemon_name: 'gaiad', + node_home: '$HOME/.gaia', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uatom', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/cosmos/gaia', + recommended_version: 'v7.0.2', + compatible_versions: ['v7.0.0', 'v7.0.1', 'v7.0.2'], + binaries: { + 'linux/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-linux-amd64', + 'linux/arm64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-linux-arm64', + 'darwin/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-darwin-amd64', + 'windows/amd64': + 'https://github.com/cosmos/gaia/releases/download/v7.0.2/gaiad-v7.0.2-windows-amd64.exe' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "639d50339d7045436c756a042906b9a69970913f", - "address": "seed-01.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '639d50339d7045436c756a042906b9a69970913f', + address: 'seed-01.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' }, { - "id": "3e506472683ceb7ed75c1578d092c79785c27857", - "address": "seed-02.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '3e506472683ceb7ed75c1578d092c79785c27857', + address: 'seed-02.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "5c9850dc5ec603b0c97ffd8d67bde3221b877acf", - "address": "p2p.sentry-01.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '5c9850dc5ec603b0c97ffd8d67bde3221b877acf', + address: 'p2p.sentry-01.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' }, { - "id": "208683ee734ba3cec1cfc0c8bcbc326969641952", - "address": "p2p.sentry-02.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '208683ee734ba3cec1cfc0c8bcbc326969641952', + address: 'p2p.sentry-02.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' }, { - "id": "58e9d022962a3875fa22d7146949d0dc34e51ba6", - "address": "p2p.state-sync-01.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '58e9d022962a3875fa22d7146949d0dc34e51ba6', + address: 'p2p.state-sync-01.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' }, { - "id": "6954e0479cd71fa01aeed15e1a3b87c06433d827", - "address": "p2p.state-sync-02.theta-testnet.polypore.xyz:26656", - "provider": "Hypha" + id: '6954e0479cd71fa01aeed15e1a3b87c06433d827', + address: 'p2p.state-sync-02.theta-testnet.polypore.xyz:26656', + provider: 'Hypha' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.sentry-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rpc.sentry-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rpc.sentry-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rpc.sentry-02.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rpc.state-sync-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rpc.state-sync-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rpc.state-sync-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rpc.state-sync-02.theta-testnet.polypore.xyz', + provider: 'Hypha' } ], - "rest": [ + rest: [ { - "address": "https://rest.sentry-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rest.sentry-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rest.sentry-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rest.sentry-02.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rest.state-sync-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rest.state-sync-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://rest.state-sync-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://rest.state-sync-02.theta-testnet.polypore.xyz', + provider: 'Hypha' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.sentry-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://grpc.sentry-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://grpc.sentry-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://grpc.sentry-02.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://grpc.state-sync-01.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://grpc.state-sync-01.theta-testnet.polypore.xyz', + provider: 'Hypha' }, { - "address": "https://grpc.state-sync-02.theta-testnet.polypore.xyz", - "provider": "Hypha" + address: 'https://grpc.state-sync-02.theta-testnet.polypore.xyz', + provider: 'Hypha' } ] }, - "explorers": [ + explorers: [ { - "kind": "Big Dipper", - "url": "https://explorer.theta-testnet.polypore.xyz/", - "tx_page": "https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}" + kind: 'Big Dipper', + url: 'https://explorer.theta-testnet.polypore.xyz/', + tx_page: + 'https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "ULAS", - "status": "live", - "network_type": "testnet", - "pretty_name": "ULAS", - "chain_id": "ulas", - "bech32_prefix": "ulas", - "daemon_name": "ulasd", - "node_home": "$HOME/.ulas", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/ulasnetwork/chain-config/main/ulas/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'ULAS', + status: 'live', + network_type: 'testnet', + pretty_name: 'ULAS', + chain_id: 'ulas', + bech32_prefix: 'ulas', + daemon_name: 'ulasd', + node_home: '$HOME/.ulas', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/ulasnetwork/chain-config/main/ulas/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/ulasnetwork/ulas", - "recommended_version": "v0.0.1", - "compatible_versions": [ - "v0.0.1" - ] + codebase: { + git_repo: 'https://github.com/ulasnetwork/ulas', + recommended_version: 'v0.0.1', + compatible_versions: ['v0.0.1'] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "http://65.49.204.199:26657", - "provider": "UlasNetwork" + address: 'http://65.49.204.199:26657', + provider: 'UlasNetwork' } ], - "rest": [ + rest: [ { - "address": "http://65.49.204.199:1317", - "provider": "UlasNetwork" + address: 'http://65.49.204.199:1317', + provider: 'UlasNetwork' } ], - "grpc": [ + grpc: [ { - "address": "http://65.49.204.199:9090", - "provider": "UlasNetwork" + address: 'http://65.49.204.199:9090', + provider: 'UlasNetwork' } ] }, - "explorers": [ + explorers: [ { - "kind": "ulas-scan", - "url": "https://testnet-explorer.ulas.network", - "tx_page": "https://testnet-explorer.ulas.network/ulas/tx/${txHash}" + kind: 'ulas-scan', + url: 'https://testnet-explorer.ulas.network', + tx_page: 'https://testnet-explorer.ulas.network/ulas/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "tgrade", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Tgrade", - "chain_id": "tgrade-mainnet-1", - "bech32_prefix": "tgrade", - "daemon_name": "tgrade", - "node_home": "$HOME/.tgrade", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/confio/tgrade-networks/main/mainnet-1/config/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 118, - "fees": { - "fee_tokens": [ + $schema: '../chain.schema.json', + chain_name: 'tgrade', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Tgrade', + chain_id: 'tgrade-mainnet-1', + bech32_prefix: 'tgrade', + daemon_name: 'tgrade', + node_home: '$HOME/.tgrade', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/confio/tgrade-networks/main/mainnet-1/config/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ { - "denom": "utgd", - "fixed_min_gas_price": 0.05, - "low_gas_price": 0.05, - "average_gas_price": 0.075, - "high_gas_price": 0.1 + denom: 'utgd', + fixed_min_gas_price: 0.05, + low_gas_price: 0.05, + average_gas_price: 0.075, + high_gas_price: 0.1 } ] }, - "codebase": { - "git_repo": "https://github.com/confio/tgrade", - "recommended_version": "v1.0.1", - "compatible_versions": [ - "v1.0.1" - ] + codebase: { + git_repo: 'https://github.com/confio/tgrade', + recommended_version: 'v1.0.1', + compatible_versions: ['v1.0.1'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "0c3b7d5a4253216de01b8642261d4e1e76aee9d8", - "address": "45.76.202.195:26656", - "provider": "DSRV" + id: '0c3b7d5a4253216de01b8642261d4e1e76aee9d8', + address: '45.76.202.195:26656', + provider: 'DSRV' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "0a63421f67d02e7fb823ea6d6ceb8acf758df24d", - "address": "142.132.226.137:26656", - "provider": "Confio" + id: '0a63421f67d02e7fb823ea6d6ceb8acf758df24d', + address: '142.132.226.137:26656', + provider: 'Confio' }, { - "id": "4a319eead699418e974e8eed47c2de6332c3f825", - "address": "167.235.255.9:26656", - "provider": "Confio" + id: '4a319eead699418e974e8eed47c2de6332c3f825', + address: '167.235.255.9:26656', + provider: 'Confio' }, { - "id": "6918efd409684d64694cac485dbcc27dfeea4f38", - "address": "49.12.240.203:26656", - "provider": "Confio" + id: '6918efd409684d64694cac485dbcc27dfeea4f38', + address: '49.12.240.203:26656', + provider: 'Confio' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.mainnet-1.tgrade.confio.run", - "provider": "Confio" + address: 'https://rpc.mainnet-1.tgrade.confio.run', + provider: 'Confio' }, { - "address": "https://rpc.tgrade.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" + address: 'https://rpc.tgrade.posthuman.digital', + provider: 'POSTHUMAN ꝏ DVS' } ], - "rest": [ + rest: [ { - "address": "https://api.mainnet-1.tgrade.confio.run", - "provider": "Confio" + address: 'https://api.mainnet-1.tgrade.confio.run', + provider: 'Confio' }, { - "address": "https://lcd.tgrade.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" + address: 'https://lcd.tgrade.posthuman.digital', + provider: 'POSTHUMAN ꝏ DVS' } ], - "grpc": [ + grpc: [ { - "address": "grpc.tgrade.posthuman.digital", - "provider": "POSTHUMAN ꝏ DVS" + address: 'grpc.tgrade.posthuman.digital', + provider: 'POSTHUMAN ꝏ DVS' } ] }, - "explorers": [ + explorers: [ { - "kind": "aneka", - "url": "https://tgrade.aneka.io", - "tx_page": "https://tgrade.aneka.io/txs/${txHash}", - "account_page": "https://tgrade.aneka.io/accounts/${accountAddress}" + kind: 'aneka', + url: 'https://tgrade.aneka.io', + tx_page: 'https://tgrade.aneka.io/txs/${txHash}', + account_page: 'https://tgrade.aneka.io/accounts/${accountAddress}' } ], - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-logo-gradient_h.png" + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-logo-gradient_h.png' } }, { - "$schema": "../chain.schema.json", - "chain_name": "thorchain", - "status": "live", - "network_type": "mainnet", - "pretty_name": "THORChain", - "chain_id": "thorchain-mainnet-v1", - "bech32_prefix": "thor", - "daemon_name": "thord", - "node_home": "$HOME/.thornode", - "slip44": 931, - "genesis": { - "genesis_url": "https://rpc.thorchain.info/genesis" + $schema: '../chain.schema.json', + chain_name: 'thorchain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'THORChain', + chain_id: 'thorchain-mainnet-v1', + bech32_prefix: 'thor', + daemon_name: 'thord', + node_home: '$HOME/.thornode', + slip44: 931, + genesis: { + genesis_url: 'https://rpc.thorchain.info/genesis' }, - "codebase": { - "git_repo": "https://gitlab.com/thorchain/thornode", - "recommended_version": "chaosnet-multichain", - "compatible_versions": [ - "chaosnet-multichain" - ] + codebase: { + git_repo: 'https://gitlab.com/thorchain/thornode', + recommended_version: 'chaosnet-multichain', + compatible_versions: ['chaosnet-multichain'] }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "eef0b258a711fc2be06da8eb25a53ebd8e16da62", - "address": "13.36.197.238:27146" + id: 'eef0b258a711fc2be06da8eb25a53ebd8e16da62', + address: '13.36.197.238:27146' }, { - "id": "02041c659d8588f225b3352df8636e05dcd239f7", - "address": "18.169.114.61:27146" + id: '02041c659d8588f225b3352df8636e05dcd239f7', + address: '18.169.114.61:27146' }, { - "id": "88783fa86645c41aaaf031f31df2ee1d74413880", - "address": "18.202.205.93:27146" + id: '88783fa86645c41aaaf031f31df2ee1d74413880', + address: '18.202.205.93:27146' }, { - "id": "00783ce232787999a7b3ccdfdbd493f371203e60", - "address": "51.136.76.139:27146" + id: '00783ce232787999a7b3ccdfdbd493f371203e60', + address: '51.136.76.139:27146' }, { - "id": "c3f3f920a7003585ea6489344b41dd248ffa1e8f", - "address": "188.166.204.206:27146" + id: 'c3f3f920a7003585ea6489344b41dd248ffa1e8f', + address: '188.166.204.206:27146' }, { - "id": "46040fd7b9450772c43fa406ef821d5eb3f79114", - "address": "134.209.136.64:27146" + id: '46040fd7b9450772c43fa406ef821d5eb3f79114', + address: '134.209.136.64:27146' }, { - "id": "7581fbca995486787ac3619cddf4137e110aff11", - "address": "143.198.247.31:27146" + id: '7581fbca995486787ac3619cddf4137e110aff11', + address: '143.198.247.31:27146' }, { - "id": "dcd52d42ee465dd23b5806b30eca8df8e9e76c5d", - "address": "138.197.48.191:27146" + id: 'dcd52d42ee465dd23b5806b30eca8df8e9e76c5d', + address: '138.197.48.191:27146' }, { - "id": "3a520c0e7c2af48d33cfb425af9ea9caa5917b1e", - "address": "18.214.28.114:27146" + id: '3a520c0e7c2af48d33cfb425af9ea9caa5917b1e', + address: '18.214.28.114:27146' }, { - "id": "48b675fbb3bf968ebee7e366d72bb5580aa8162e", - "address": "139.59.217.54:27146" + id: '48b675fbb3bf968ebee7e366d72bb5580aa8162e', + address: '139.59.217.54:27146' }, { - "id": "f1513684dd9d574715304bf3dd3b53fbcce65909", - "address": "34.145.173.217:27146" + id: 'f1513684dd9d574715304bf3dd3b53fbcce65909', + address: '34.145.173.217:27146' }, { - "id": "2dde4b30bf913c9b9adecb6b835b2654b50c5698", - "address": "3.124.212.184:27146" + id: '2dde4b30bf913c9b9adecb6b835b2654b50c5698', + address: '3.124.212.184:27146' }, { - "id": "97ab3ae9df723ef763d90128663e7de0f0568dbe", - "address": "54.217.4.198:27146" + id: '97ab3ae9df723ef763d90128663e7de0f0568dbe', + address: '54.217.4.198:27146' }, { - "id": "7c3b0a1fd70c5c0154e40f6e1276f8dd171117e5", - "address": "136.244.65.26:27146" + id: '7c3b0a1fd70c5c0154e40f6e1276f8dd171117e5', + address: '136.244.65.26:27146' }, { - "id": "79b84e53bd5e4c1a3ef309346136cc7528ba0bdf", - "address": "64.225.81.243:27146" + id: '79b84e53bd5e4c1a3ef309346136cc7528ba0bdf', + address: '64.225.81.243:27146' }, { - "id": "d8628418e84acf19a330dddbed3173cfb4a020a9", - "address": "138.197.48.59:27146" + id: 'd8628418e84acf19a330dddbed3173cfb4a020a9', + address: '138.197.48.59:27146' }, { - "id": "7c884bbc48abbadbb0fb85bfaa1dff9e94eac401", - "address": "143.244.211.46:27146" + id: '7c884bbc48abbadbb0fb85bfaa1dff9e94eac401', + address: '143.244.211.46:27146' }, { - "id": "8757a66381b4182f74809461fd8a3fcaf203a820", - "address": "34.212.187.195:27146" + id: '8757a66381b4182f74809461fd8a3fcaf203a820', + address: '34.212.187.195:27146' }, { - "id": "6a35ed1a50ee76f72d1cd5c688f2e5f7fbc5da25", - "address": "52.228.231.228:27146" + id: '6a35ed1a50ee76f72d1cd5c688f2e5f7fbc5da25', + address: '52.228.231.228:27146' }, { - "id": "5842bbfc26cf87c2ae3db418a835511ef2a39277", - "address": "3.96.249.116:27146" + id: '5842bbfc26cf87c2ae3db418a835511ef2a39277', + address: '3.96.249.116:27146' }, { - "id": "83d3c662b1287bc9292d75b4909cff63b119cc78", - "address": "18.206.141.33:27146" + id: '83d3c662b1287bc9292d75b4909cff63b119cc78', + address: '18.206.141.33:27146' }, { - "id": "14d576eb4a1a5a2e319511abd5ce2c6e20f51c31", - "address": "13.36.138.187:27146" + id: '14d576eb4a1a5a2e319511abd5ce2c6e20f51c31', + address: '13.36.138.187:27146' }, { - "id": "107d49ada5acf1dbfcc27b3f5f387d035421ccca", - "address": "52.214.221.72:27146" + id: '107d49ada5acf1dbfcc27b3f5f387d035421ccca', + address: '52.214.221.72:27146' }, { - "id": "ca15ae8f0e17112b63786482cca300ff473f41fd", - "address": "3.140.128.35:27146" + id: 'ca15ae8f0e17112b63786482cca300ff473f41fd', + address: '3.140.128.35:27146' }, { - "id": "5e89caf0ca79e0fb3371d5892efd96d66042d0d6", - "address": "157.90.34.75:27146" + id: '5e89caf0ca79e0fb3371d5892efd96d66042d0d6', + address: '157.90.34.75:27146' }, { - "id": "1c88aa9509832a592453bd7d30736db055a279d1", - "address": "34.83.232.180:27146" + id: '1c88aa9509832a592453bd7d30736db055a279d1', + address: '34.83.232.180:27146' }, { - "id": "de7c36a34d8e9a48106488de1bac21b172c2dd49", - "address": "157.245.16.34:27146" + id: 'de7c36a34d8e9a48106488de1bac21b172c2dd49', + address: '157.245.16.34:27146' }, { - "id": "3de5f5bff746dc9349b044d83ccb906924b8cf03", - "address": "188.166.138.88:27146" + id: '3de5f5bff746dc9349b044d83ccb906924b8cf03', + address: '188.166.138.88:27146' }, { - "id": "3ede6d36ede3b7e1dec522c827ab6db94bfae749", - "address": "34.145.160.5:27146" + id: '3ede6d36ede3b7e1dec522c827ab6db94bfae749', + address: '34.145.160.5:27146' }, { - "id": "58a28719fdd46ea629859d85a1d5bc6a6363c185", - "address": "159.65.212.234:27146" + id: '58a28719fdd46ea629859d85a1d5bc6a6363c185', + address: '159.65.212.234:27146' }, { - "id": "70dd6252ff95d8af7f3f488fdb98dde5d467213b", - "address": "18.117.49.201:27146" + id: '70dd6252ff95d8af7f3f488fdb98dde5d467213b', + address: '18.117.49.201:27146' }, { - "id": "6c7d780bb7384142f6943543ed4c3ba537f4a411", - "address": "138.197.59.244:27146" + id: '6c7d780bb7384142f6943543ed4c3ba537f4a411', + address: '138.197.59.244:27146' }, { - "id": "523a3df9384190d1b30ff55d1783b4baed32165c", - "address": "18.208.113.188:27146" + id: '523a3df9384190d1b30ff55d1783b4baed32165c', + address: '18.208.113.188:27146' }, { - "id": "c64b58f2498a29330e4927ba90dd6fb2955a7a56", - "address": "159.89.210.106:27146" + id: 'c64b58f2498a29330e4927ba90dd6fb2955a7a56', + address: '159.89.210.106:27146' }, { - "id": "e592368bf73a32dbcc28def417f2fdb151f26da6", - "address": "3.139.117.117:27146" + id: 'e592368bf73a32dbcc28def417f2fdb151f26da6', + address: '3.139.117.117:27146' }, { - "id": "19ab508b32a6518a450058c2c7a99b7a5cc4299f", - "address": "13.237.27.250:27146" + id: '19ab508b32a6518a450058c2c7a99b7a5cc4299f', + address: '13.237.27.250:27146' }, { - "id": "4e41bd4f8d1ec95ff4a305f0739c82e818664c12", - "address": "135.181.58.7:27146" + id: '4e41bd4f8d1ec95ff4a305f0739c82e818664c12', + address: '135.181.58.7:27146' }, { - "id": "2d25606076036716a31611185d39880fe8237e97", - "address": "3.230.67.253:27146" + id: '2d25606076036716a31611185d39880fe8237e97', + address: '3.230.67.253:27146' }, { - "id": "5a6e66f9f6c84d55de8f1170086f28d69d242ad4", - "address": "78.141.210.66:27146" + id: '5a6e66f9f6c84d55de8f1170086f28d69d242ad4', + address: '78.141.210.66:27146' }, { - "id": "f296c1e1b03ab875925208aabb5b9c5b1626427e", - "address": "52.32.91.52:27146" + id: 'f296c1e1b03ab875925208aabb5b9c5b1626427e', + address: '52.32.91.52:27146' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.thorchain.info", - "provider": "thorchain" + address: 'https://rpc.thorchain.info', + provider: 'thorchain' } ], - "rest": [ + rest: [ { - "address": "https://thornode.thorchain.info", - "provider": "thorchain" + address: 'https://thornode.thorchain.info', + provider: 'thorchain' } ], - "sidechains_rpc": [ + sidechains_rpc: [ { - "address": "https://btc.thorchain.info", - "provider": "btc" + address: 'https://btc.thorchain.info', + provider: 'btc' }, { - "address": "https://bch.thorchain.info", - "provider": "bch" + address: 'https://bch.thorchain.info', + provider: 'bch' }, { - "address": "https://ltc.thorchain.info", - "provider": "ltc" + address: 'https://ltc.thorchain.info', + provider: 'ltc' }, { - "address": "https://bnb.thorchain.info", - "provider": "bnb" + address: 'https://bnb.thorchain.info', + provider: 'bnb' }, { - "address": "https://eth.thorchain.info", - "provider": "eth" + address: 'https://eth.thorchain.info', + provider: 'eth' } ] }, - "explorers": [ + explorers: [ { - "kind": "THORChain explorer", - "url": "https://thorchain.net", - "tx_page": "https://thorchain.net/#/txs/${txHash}" + kind: 'THORChain explorer', + url: 'https://thorchain.net', + tx_page: 'https://thorchain.net/#/txs/${txHash}' }, { - "kind": "viewblock", - "url": "https://viewblock.io/thorchain", - "tx_page": "https://viewblock.io/thorchain/tx/${txHash}" + kind: 'viewblock', + url: 'https://viewblock.io/thorchain', + tx_page: 'https://viewblock.io/thorchain/tx/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "umee", - "status": "live", - "network_type": "mainnet", - "pretty_name": "umee", - "chain_id": "umee-1", - "bech32_prefix": "umee", - "daemon_name": "umeed", - "node_home": "$HOME/.umee", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/umee-network/mainnet/main/genesis.json" - }, - "codebase": { - "git_repo": "https://github.com/umee-network/umee", - "recommended_version": "v1.0.3", - "compatible_versions": [ - "v1.0.3" - ], - "binaries": { - "darwin/amd64": "https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-darwin-amd64.tar.gz", - "darwin/arm64": "https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-darwin-arm64.tar.gz", - "linux/amd64": "https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-amd64.tar.gz", - "linux/arm64": "https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-arm64.tar.gz", - "linux/armv6": "https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-armv6.tar.gz" + $schema: '../chain.schema.json', + chain_name: 'umee', + status: 'live', + network_type: 'mainnet', + pretty_name: 'umee', + chain_id: 'umee-1', + bech32_prefix: 'umee', + daemon_name: 'umeed', + node_home: '$HOME/.umee', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/umee-network/mainnet/main/genesis.json' + }, + codebase: { + git_repo: 'https://github.com/umee-network/umee', + recommended_version: 'v1.0.3', + compatible_versions: ['v1.0.3'], + binaries: { + 'darwin/amd64': + 'https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-darwin-amd64.tar.gz', + 'darwin/arm64': + 'https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-darwin-arm64.tar.gz', + 'linux/amd64': + 'https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-amd64.tar.gz', + 'linux/arm64': + 'https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-arm64.tar.gz', + 'linux/armv6': + 'https://github.com/umee-network/umee/releases/download/v1.0.3/umeed-v1.0.3-linux-armv6.tar.gz' } }, - "peers": { - "seeds": [], - "persistent_peers": [ + peers: { + seeds: [], + persistent_peers: [ { - "id": "08554ecf7c4c33cc809bceefc044c9bd23b933bd", - "address": "34.146.11.20:26656", - "provider": "umee foundation" + id: '08554ecf7c4c33cc809bceefc044c9bd23b933bd', + address: '34.146.11.20:26656', + provider: 'umee foundation' }, { - "id": "da42a6b213dd0e0dcd3b5d6feb662d7bf7a8cee6", - "address": "34.93.115.217:26656", - "provider": "umee foundation" + id: 'da42a6b213dd0e0dcd3b5d6feb662d7bf7a8cee6', + address: '34.93.115.217:26656', + provider: 'umee foundation' }, { - "id": "6b785fc3a088de3a5e8d222a980936f2187b8c56", - "address": "34.93.115.217:26656", - "provider": "umee foundation" + id: '6b785fc3a088de3a5e8d222a980936f2187b8c56', + address: '34.93.115.217:26656', + provider: 'umee foundation' }, { - "id": "1d85a200deaefa6ceb20328a0fd83787ce329aa6", - "address": "34.93.115.217:26656", - "provider": "umee foundation" + id: '1d85a200deaefa6ceb20328a0fd83787ce329aa6', + address: '34.93.115.217:26656', + provider: 'umee foundation' }, { - "id": "b3f810438aa53685bba63705f3c29ec122e1e40c", - "address": "34.127.76.180:26656", - "provider": "umee foundation" + id: 'b3f810438aa53685bba63705f3c29ec122e1e40c', + address: '34.127.76.180:26656', + provider: 'umee foundation' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc.aphrodite.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.aphrodite.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://rpc.apollo.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.apollo.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://rpc.artemis.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.artemis.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://rpc.athena.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.athena.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://rpc.beaked.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.beaked.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://rpc.bottlenose.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://rpc.bottlenose.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://umee-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://umee-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.umee.testnet.run:443", - "provider": "sourled" + address: 'https://rpc.umee.testnet.run:443', + provider: 'sourled' }, { - "address": "https://rpc-umee-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-umee-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://api.aphrodite.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.aphrodite.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api.apollo.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.apollo.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api.artemis.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.artemis.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api.athena.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.athena.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api.beaked.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.beaked.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api.bottlenose.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://api.bottlenose.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://api-umee-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-umee-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "https://grpc.aphrodite.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.aphrodite.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://grpc.apollo.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.apollo.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://grpc.artemis.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.artemis.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://grpc.athena.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.athena.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://grpc.beaked.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.beaked.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "https://grpc.bottlenose.main.network.umee.cc", - "provider": "umee Foundation" + address: 'https://grpc.bottlenose.main.network.umee.cc', + provider: 'umee Foundation' }, { - "address": "grpc-umee-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-umee-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "mintscan", - "url": "https://www.mintscan.io/umee/", - "tx_page": "https://www.mintscan.io/umee/txs/${txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/umee/', + tx_page: 'https://www.mintscan.io/umee/txs/${txHash}' }, { - "kind": "ping-pub", - "url": "https://ping.pub/umee", - "tx_page": "https://ping.pub/umee/tx/${txHash}" + kind: 'ping-pub', + url: 'https://ping.pub/umee', + tx_page: 'https://ping.pub/umee/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://umee.explorers.guru", - "tx_page": "https://umee.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://umee.explorers.guru', + tx_page: 'https://umee.explorers.guru/transaction/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/umee", - "tx_page": "https://atomscan.com/umee/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/umee', + tx_page: 'https://atomscan.com/umee/transactions/${txHash}' } ] }, { - "$schema": "../chain.schema.json", - "chain_name": "vidulum", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Vidulum", - "chain_id": "vidulum-1", - "bech32_prefix": "vdl", - "daemon_name": "vidulumd", - "node_home": "$HOME/.vidulum", - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/vidulum/mainnet/main/genesis.json" - }, - "key_algos": [ - "secp256k1" - ], - "slip44": 370, - "fees": { - "fee_tokens": [ - { - "denom": "uvdl", - "fixed_min_gas_price": 0 - } - ] - }, - "codebase": { - "git_repo": "https://github.com/vidulum/mainnet", - "recommended_version": "v1.0.0", - "compatible_versions": [ - "v1.0.0" - ], - "binaries": { - "linux/amd64": "https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_linux_amd64.tar.gz", - "linux/arm64": "https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_linux_arm64.tar.gz", - "darwin/amd64": "https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_darwin_amd64.tar.gz", - "windows/amd64": "https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_windows_amd64.zip" + $schema: '../chain.schema.json', + chain_name: 'vidulum', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Vidulum', + chain_id: 'vidulum-1', + bech32_prefix: 'vdl', + daemon_name: 'vidulumd', + node_home: '$HOME/.vidulum', + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/vidulum/mainnet/main/genesis.json' + }, + key_algos: ['secp256k1'], + slip44: 370, + fees: { + fee_tokens: [ + { + denom: 'uvdl', + fixed_min_gas_price: 0 + } + ] + }, + codebase: { + git_repo: 'https://github.com/vidulum/mainnet', + recommended_version: 'v1.0.0', + compatible_versions: ['v1.0.0'], + binaries: { + 'linux/amd64': + 'https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_linux_amd64.tar.gz', + 'linux/arm64': + 'https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_linux_arm64.tar.gz', + 'darwin/amd64': + 'https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_darwin_amd64.tar.gz', + 'windows/amd64': + 'https://github.com/vidulum/mainnet/releases/download/v1.0.0/vidulum_windows_amd64.zip' } }, - "peers": { - "seeds": [ + peers: { + seeds: [ { - "id": "883ec7d5af7222c206674c20c997ccc5c242b38b", - "address": "ec2-3-82-120-39.compute-1.amazonaws.com:26656", - "provider": "notional" + id: '883ec7d5af7222c206674c20c997ccc5c242b38b', + address: 'ec2-3-82-120-39.compute-1.amazonaws.com:26656', + provider: 'notional' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "3bf3d98dfd4000dd5ff8189882a9f96848b99b87", - "address": "137.220.60.196:26656", - "provider": "vidulum" + id: '3bf3d98dfd4000dd5ff8189882a9f96848b99b87', + address: '137.220.60.196:26656', + provider: 'vidulum' }, { - "id": "7a44ea6ecb59b0e4bd01b58a75163ec64b164bb4", - "address": "63.210.148.24:26656", - "provider": "vidulum" + id: '7a44ea6ecb59b0e4bd01b58a75163ec64b164bb4', + address: '63.210.148.24:26656', + provider: 'vidulum' }, { - "id": "52051fef449e76eb399966312f523e8e5e27490b", - "address": "95.217.118.211:26656", - "provider": "minerpool" + id: '52051fef449e76eb399966312f523e8e5e27490b', + address: '95.217.118.211:26656', + provider: 'minerpool' }, { - "id": "cae7d9d21c1752300277eab72d861b0c6638b2e3", - "address": "164.68.119.151:26656", - "provider": "bluebird" + id: 'cae7d9d21c1752300277eab72d861b0c6638b2e3', + address: '164.68.119.151:26656', + provider: 'bluebird' }, { - "id": "209688f5bccb88f6397a97cc11ab545a014aa559", - "address": "137.184.92.115:26656", - "provider": "1square" + id: '209688f5bccb88f6397a97cc11ab545a014aa559', + address: '137.184.92.115:26656', + provider: '1square' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://mainnet-rpc.vidulum.app/", - "provider": "vidulum" + address: 'https://mainnet-rpc.vidulum.app/', + provider: 'vidulum' }, { - "address": "https://rpc-vidulum-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-vidulum-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://mainnet-lcd.vidulum.app", - "provider": "vidulum" + address: 'https://mainnet-lcd.vidulum.app', + provider: 'vidulum' }, { - "address": "https://api-vidulum-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-vidulum-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "grpc-vidulum-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-vidulum-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "Ping", - "url": "https://explorers.vidulum.app/vidulum", - "tx_page": "https://explorers.vidulum.app/vidulum/tx/${txHash}" + kind: 'Ping', + url: 'https://explorers.vidulum.app/vidulum', + tx_page: 'https://explorers.vidulum.app/vidulum/tx/${txHash}' }, { - "kind": "Ping", - "url": "https://ping.pub/vidulum", - "tx_page": "https://ping.pub/vidulum/tx/${txHash}" + kind: 'Ping', + url: 'https://ping.pub/vidulum', + tx_page: 'https://ping.pub/vidulum/tx/${txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/vidulum", - "tx_page": "https://atomscan.com/vidulum/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/vidulum', + tx_page: 'https://atomscan.com/vidulum/transactions/${txHash}' } ] - }, - { - "$schema": "../chain.schema.json", - "chain_name": "osmosis", - "apis": { - "rest": [ - { - "address": "https://osmosis.stakesystems.io/", - "provider": "stakesystems" - } - ] - } } ]; export default chains; - \ No newline at end of file diff --git a/packages/chain-registry/src/ibc.ts b/packages/chain-registry/src/ibc.ts index 3fd679dd5..1ae22dc00 100644 --- a/packages/chain-registry/src/ibc.ts +++ b/packages/chain-registry/src/ibc.ts @@ -1,3891 +1,3892 @@ import { IBCInfo } from '@chain-registry/types'; const ibc: IBCInfo[] = [ { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-53", - "connection-id": "connection-29" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-53', + 'connection-id': 'connection-29' }, - "chain-2": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-385", - "connection-id": "connection-339" + 'chain-2': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-385', + 'connection-id': 'connection-339' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-184", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-184', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-48", - "connection-id": "connection-23" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-48', + 'connection-id': 'connection-23' }, - "chain-2": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-65", - "connection-id": "connection-38" + 'chain-2': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-65', + 'connection-id': 'connection-38' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-14", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-14', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-21", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-21', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1" + ordering: 'unordered', + version: 'ics20-1' } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-44", - "connection-id": "connection-19" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-44', + 'connection-id': 'connection-19' }, - "chain-2": { - "chain-name": "irisnet", - "client-id": "07-tendermint-23", - "connection-id": "connection-16" + 'chain-2': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-23', + 'connection-id': 'connection-16' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-84", - "connection-id": "connection-58" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-84', + 'connection-id': 'connection-58' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-80", - "connection-id": "connection-47" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-80', + 'connection-id': 'connection-47' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-35", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-35', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-29", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-29', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-18", - "connection-id": "connection-11" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-18', + 'connection-id': 'connection-11' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-0", - "connection-id": "connection-2" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-2' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-15", - "connection-id": "connection-8" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-15', + 'connection-id': 'connection-8' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-5", - "connection-id": "connection-4" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-5', + 'connection-id': 'connection-4' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-6", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-6', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-47", - "connection-id": "connection-22" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-47', + 'connection-id': 'connection-22' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-20", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-20', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-13", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-13', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-102", - "connection-id": "connection-69" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-102', + 'connection-id': 'connection-69' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-47", - "connection-id": "connection-28" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-47', + 'connection-id': 'connection-28' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-43", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-43', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-21", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-21', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-45", - "connection-id": "connection-21" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-45', + 'connection-id': 'connection-21' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-42", - "connection-id": "connection-27" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-42', + 'connection-id': 'connection-27' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-12", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-12', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-6", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-6', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-61", - "connection-id": "connection-36" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-61', + 'connection-id': 'connection-36' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-11", - "connection-id": "connection-2" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-11', + 'connection-id': 'connection-2' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-24", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-24', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "akash", - "client-id": "07-tendermint-59", - "connection-id": "connection-35" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'akash', + 'client-id': '07-tendermint-59', + 'connection-id': 'connection-35' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-29", - "connection-id": "connection-18" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-29', + 'connection-id': 'connection-18' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-23", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-23', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-6", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-6', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "assetmantle", - "client-id": "07-tendermint-22", - "connection-id": "connection-4" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'assetmantle', + 'client-id': '07-tendermint-22', + 'connection-id': 'connection-4' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-167", - "connection-id": "connection-113" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-167', + 'connection-id': 'connection-113' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-83", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-83', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "assetmantle", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'assetmantle', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1923", - "connection-id": "connection-1498" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1923', + 'connection-id': 'connection-1498' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-232", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-232', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "axelar", - "client-id": "07-tendermint-31", - "connection-id": "connection-17" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'axelar', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-17' }, - "chain-2": { - "chain-name": "crescent", - "client-id": "07-tendermint-6", - "connection-id": "connection-4" + 'chain-2': { + 'chain-name': 'crescent', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-4' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-4", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-4', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "crescent" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "axelar", - "client-id": "07-tendermint-25", - "connection-id": "connection-14" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'axelar', + 'client-id': '07-tendermint-25', + 'connection-id': 'connection-14' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-150", - "connection-id": "connection-97" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-150', + 'connection-id': 'connection-97' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-4", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-4', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-71", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-71', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "axelar", - "client-id": "07-tendermint-23", - "connection-id": "connection-13" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'axelar', + 'client-id': '07-tendermint-23', + 'connection-id': 'connection-13' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1862", - "connection-id": "connection-1453" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1862', + 'connection-id': 'connection-1453' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-208", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-208', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "axelar", - "client-id": "07-tendermint-40", - "connection-id": "connection-22" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'axelar', + 'client-id': '07-tendermint-40', + 'connection-id': 'connection-22' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-44", - "connection-id": "connection-26" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-44', + 'connection-id': 'connection-26' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-12", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-12', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-20", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-20', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bandchain", - "client-id": "07-tendermint-94", - "connection-id": "connection-91" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bandchain', + 'client-id': '07-tendermint-94', + 'connection-id': 'connection-91' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1743", - "connection-id": "connection-1345" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1743', + 'connection-id': 'connection-1345' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-83", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-83', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-148", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-148', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bitcanna", - "client-id": "07-tendermint-12", - "connection-id": "connection-11" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bitcanna', + 'client-id': '07-tendermint-12', + 'connection-id': 'connection-11' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-110", - "connection-id": "connection-70" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-110', + 'connection-id': 'connection-70' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-50", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-50', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bitcanna", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bitcanna', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1499", - "connection-id": "connection-1167" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1499', + 'connection-id': 'connection-1167' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-51", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-51', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bitsong", - "client-id": "07-tendermint-9", - "connection-id": "connection-9" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bitsong', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-9' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-33", - "connection-id": "connection-26" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-33', + 'connection-id': 'connection-26' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bitsong", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bitsong', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1551", - "connection-id": "connection-1216" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1551', + 'connection-id': 'connection-1216' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-73", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-73', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "bostrom", - "client-id": "07-tendermint-5", - "connection-id": "connection-2" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'bostrom', + 'client-id': '07-tendermint-5', + 'connection-id': 'connection-2' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1597", - "connection-id": "connection-1255" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1597', + 'connection-id': 'connection-1255' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-95", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-95', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "carbon", - "client-id": "07-tendermint-3", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'carbon', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1808", - "connection-id": "connection-1412" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1808', + 'connection-id': 'connection-1412' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-188", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-188', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cerberus", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cerberus', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1875", - "connection-id": "connection-1460" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1875', + 'connection-id': 'connection-1460' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-212", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-212', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cheqd", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cheqd', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1615", - "connection-id": "connection-1268" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1615', + 'connection-id': 'connection-1268' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-108", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-108', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "chihuahua", - "client-id": "07-tendermint-54", - "connection-id": "connection-30" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'chihuahua', + 'client-id': '07-tendermint-54', + 'connection-id': 'connection-30' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-79", - "connection-id": "connection-46" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-79', + 'connection-id': 'connection-46' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-28", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-28', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "chihuahua", - "client-id": "07-tendermint-45", - "connection-id": "connection-25" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'chihuahua', + 'client-id': '07-tendermint-45', + 'connection-id': 'connection-25' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1666", - "connection-id": "connection-1278" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1666', + 'connection-id': 'connection-1278' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-113", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-113', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "chihuahua", - "client-id": "07-tendermint-70", - "connection-id": "connection-38" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'chihuahua', + 'client-id': '07-tendermint-70', + 'connection-id': 'connection-38' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-27", - "connection-id": "connection-13" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-27', + 'connection-id': 'connection-13' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-16", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-16', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "comdex", - "client-id": "07-tendermint-30", - "connection-id": "connection-19" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'comdex', + 'client-id': '07-tendermint-30', + 'connection-id': 'connection-19' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-92", - "connection-id": "connection-55" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-92', + 'connection-id': 'connection-55' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-18", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-18', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-36", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-36', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "comdex", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'comdex', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1587", - "connection-id": "connection-1243" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1587', + 'connection-id': 'connection-1243' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-87", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-87', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-724", - "connection-id": "connection-538" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-724', + 'connection-id': 'connection-538' }, - "chain-2": { - "chain-name": "crescent", - "client-id": "07-tendermint-3", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'crescent', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-326", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-326', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "crescent" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-389", - "connection-id": "connection-342" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-389', + 'connection-id': 'connection-342' }, - "chain-2": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-735", - "connection-id": "connection-220" + 'chain-2': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-735', + 'connection-id': 'connection-220' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-187", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-187', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-27", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-27', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-432", - "connection-id": "connection-365" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-432', + 'connection-id': 'connection-365' }, - "chain-2": { - "chain-name": "emoney", - "client-id": "07-tendermint-8", - "connection-id": "connection-3" + 'chain-2': { + 'chain-name': 'emoney', + 'client-id': '07-tendermint-8', + 'connection-id': 'connection-3' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-202", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-202', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-434", - "connection-id": "connection-368" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-434', + 'connection-id': 'connection-368' }, - "chain-2": { - "chain-name": "impacthub", - "client-id": "07-tendermint-9", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'impacthub', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-204", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-204', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-384", - "connection-id": "connection-338" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-384', + 'connection-id': 'connection-338' }, - "chain-2": { - "chain-name": "irisnet", - "client-id": "07-tendermint-31", - "connection-id": "connection-22" + 'chain-2': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-22' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-182", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-182', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-12", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-12', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-439", - "connection-id": "connection-372" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-439', + 'connection-id': 'connection-372' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-3", - "connection-id": "connection-2" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-2' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-207", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-207', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-468", - "connection-id": "connection-386" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-468', + 'connection-id': 'connection-386' }, - "chain-2": { - "chain-name": "likecoin", - "client-id": "07-tendermint-24", - "connection-id": "connection-13" + 'chain-2': { + 'chain-name': 'likecoin', + 'client-id': '07-tendermint-24', + 'connection-id': 'connection-13' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-217", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-217', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-259", - "connection-id": "connection-257" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-259', + 'connection-id': 'connection-257' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-141", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-141', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-391", - "connection-id": "connection-344" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-391', + 'connection-id': 'connection-344' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-36", - "connection-id": "connection-30" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-36', + 'connection-id': 'connection-30' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-190", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-190', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-24", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-24', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-386", - "connection-id": "connection-340" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-386', + 'connection-id': 'connection-340' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-27", - "connection-id": "connection-24" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-27', + 'connection-id': 'connection-24' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-185", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-185', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-492", - "connection-id": "connection-401" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-492', + 'connection-id': 'connection-401' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-1", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-235", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-235', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-388", - "connection-id": "connection-341" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-388', + 'connection-id': 'connection-341' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-58", - "connection-id": "connection-33" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-58', + 'connection-id': 'connection-33' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-186", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-186', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-12", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-12', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-395", - "connection-id": "connection-347" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-395', + 'connection-id': 'connection-347' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-192", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-192', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-326", - "connection-id": "connection-300" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-326', + 'connection-id': 'connection-300' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-6", - "connection-id": "connection-6" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-6' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-158", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-158', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cosmoshub", - "client-id": "07-tendermint-611", - "connection-id": "connection-473" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cosmoshub', + 'client-id': '07-tendermint-611', + 'connection-id': 'connection-473' }, - "chain-2": { - "chain-name": "umee", - "client-id": "07-tendermint-9", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'umee', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-288", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-288', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "crescent", - "client-id": "07-tendermint-4", - "connection-id": "connection-2" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'crescent', + 'client-id': '07-tendermint-4', + 'connection-id': 'connection-2' }, - "chain-2": { - "chain-name": "gravitybridge", - "client-id": "07-tendermint-100", - "connection-id": "connection-102" + 'chain-2': { + 'chain-name': 'gravitybridge', + 'client-id': '07-tendermint-100', + 'connection-id': 'connection-102' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-62", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-62', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "crescent" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "crescent", - "client-id": "07-tendermint-17", - "connection-id": "connection-12" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'crescent', + 'client-id': '07-tendermint-17', + 'connection-id': 'connection-12' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-2083", - "connection-id": "connection-1624" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-2083', + 'connection-id': 'connection-1624' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-297", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-297', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "crescent", - "client-id": "07-tendermint-18", - "connection-id": "connection-13" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'crescent', + 'client-id': '07-tendermint-18', + 'connection-id': 'connection-13' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-53", - "connection-id": "connection-31" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-53', + 'connection-id': 'connection-31' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-24", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-24', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "crescent", - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'crescent', + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-650", - "connection-id": "connection-197" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-650', + 'connection-id': 'connection-197' }, - "chain-2": { - "chain-name": "irisnet", - "client-id": "07-tendermint-32", - "connection-id": "connection-23" + 'chain-2': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-32', + 'connection-id': 'connection-23' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-23", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-23', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-13", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-13', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-33", - "connection-id": "connection-12" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-33', + 'connection-id': 'connection-12' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-4", - "connection-id": "connection-5" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-4', + 'connection-id': 'connection-5' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-61", - "connection-id": "connection-34" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-61', + 'connection-id': 'connection-34' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-24", - "connection-id": "connection-17" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-24', + 'connection-id': 'connection-17' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-732", - "connection-id": "connection-218" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-732', + 'connection-id': 'connection-218' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-28", - "connection-id": "connection-26" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-28', + 'connection-id': 'connection-26' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-25", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-25', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-12", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-12', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-63", - "connection-id": "connection-36" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-63', + 'connection-id': 'connection-36' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-43", - "connection-id": "connection-28" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-43', + 'connection-id': 'connection-28' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-19", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-19', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-1103", - "connection-id": "connection-239" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-1103', + 'connection-id': 'connection-239' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-20", - "connection-id": "connection-10" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-20', + 'connection-id': 'connection-10' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-33", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-33', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "cryptoorgchain", - "client-id": "07-tendermint-66", - "connection-id": "connection-39" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'cryptoorgchain', + 'client-id': '07-tendermint-66', + 'connection-id': 'connection-39' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-16", - "connection-id": "connection-11" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-16', + 'connection-id': 'connection-11' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-22", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-22', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "decentr", - "client-id": "07-tendermint-6", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'decentr', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1798", - "connection-id": "connection-1403" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1798', + 'connection-id': 'connection-1403' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-181", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-181', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "desmos", - "client-id": "07-tendermint-6", - "connection-id": "connection-4" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'desmos', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-4' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1726", - "connection-id": "connection-1315" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1726', + 'connection-id': 'connection-1315' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-135", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-135', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "dig", - "client-id": "07-tendermint-17", - "connection-id": "connection-10" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'dig', + 'client-id': '07-tendermint-17', + 'connection-id': 'connection-10' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-100", - "connection-id": "connection-62" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-100', + 'connection-id': 'connection-62' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-37", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-37', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "dig", - "client-id": "07-tendermint-13", - "connection-id": "connection-8" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'dig', + 'client-id': '07-tendermint-13', + 'connection-id': 'connection-8' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1714", - "connection-id": "connection-1304" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1714', + 'connection-id': 'connection-1304' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-128", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-128', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "emoney", - "client-id": "07-tendermint-10", - "connection-id": "connection-4" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'emoney', + 'client-id': '07-tendermint-10', + 'connection-id': 'connection-4' }, - "chain-2": { - "chain-name": "irisnet", - "client-id": "07-tendermint-46", - "connection-id": "connection-34" + 'chain-2': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-46', + 'connection-id': 'connection-34' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-23", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-23', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "emoney", - "client-id": "07-tendermint-51", - "connection-id": "connection-20" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'emoney', + 'client-id': '07-tendermint-51', + 'connection-id': 'connection-20' }, - "chain-2": { - "chain-name": "juno", - "client-id": "07-tendermint-24", - "connection-id": "connection-16" + 'chain-2': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-24', + 'connection-id': 'connection-16' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "emoney", - "client-id": "07-tendermint-7", - "connection-id": "connection-2" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'emoney', + 'client-id': '07-tendermint-7', + 'connection-id': 'connection-2' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1447", - "connection-id": "connection-1132" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1447', + 'connection-id': 'connection-1132' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-37", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-37', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "evmos", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'evmos', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1840", - "connection-id": "connection-1440" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1840', + 'connection-id': 'connection-1440' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-204", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-204', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "evmos", - "client-id": "07-tendermint-50", - "connection-id": "connection-19" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'evmos', + 'client-id': '07-tendermint-50', + 'connection-id': 'connection-19' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-42", - "connection-id": "connection-24" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-42', + 'connection-id': 'connection-24' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-18", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-18', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "fetchhub", - "client-id": "07-tendermint-10", - "connection-id": "connection-10" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'fetchhub', + 'client-id': '07-tendermint-10', + 'connection-id': 'connection-10' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1913", - "connection-id": "connection-1490" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1913', + 'connection-id': 'connection-1490' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-229", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-229', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "galaxy", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'galaxy', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1928", - "connection-id": "connection-1500" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1928', + 'connection-id': 'connection-1500' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-236", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-236', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "genesisl1", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'genesisl1', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1983", - "connection-id": "connection-1539" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1983', + 'connection-id': 'connection-1539' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-235", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-235', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "gravitybridge", - "client-id": "07-tendermint-13", - "connection-id": "connection-13" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'gravitybridge', + 'client-id': '07-tendermint-13', + 'connection-id': 'connection-13' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1737", - "connection-id": "connection-1340" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1737', + 'connection-id': 'connection-1340' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-144", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-144', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "gravitybridge", - "client-id": "07-tendermint-140", - "connection-id": "connection-139" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'gravitybridge', + 'client-id': '07-tendermint-140', + 'connection-id': 'connection-139' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-40", - "connection-id": "connection-23" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-40', + 'connection-id': 'connection-23' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-79", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-79', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "impacthub", - "client-id": "07-tendermint-12", - "connection-id": "connection-12" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'impacthub', + 'client-id': '07-tendermint-12', + 'connection-id': 'connection-12' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1451", - "connection-id": "connection-1137" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1451', + 'connection-id': 'connection-1137' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-4", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-4', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-38", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-38', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "impacthub", - "client-id": "07-tendermint-25", - "connection-id": "connection-25" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'impacthub', + 'client-id': '07-tendermint-25', + 'connection-id': 'connection-25' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-39", - "connection-id": "connection-18" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-39', + 'connection-id': 'connection-18' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "injective", - "client-id": "07-tendermint-19", - "connection-id": "connection-14" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'injective', + 'client-id': '07-tendermint-19', + 'connection-id': 'connection-14' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1703", - "connection-id": "connection-1298" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1703', + 'connection-id': 'connection-1298' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-8", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-8', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-122", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-122', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "injective", - "client-id": "07-tendermint-97", - "connection-id": "connection-83" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'injective', + 'client-id': '07-tendermint-97', + 'connection-id': 'connection-83' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-22", - "connection-id": "connection-8" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-22', + 'connection-id': 'connection-8' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-74", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-74', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-5", - "connection-id": "connection-4" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-5', + 'connection-id': 'connection-4' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-5", - "connection-id": "connection-6" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-5', + 'connection-id': 'connection-6' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-6", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-6', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-34", - "connection-id": "connection-25" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-34', + 'connection-id': 'connection-25' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-31", - "connection-id": "connection-25" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-25' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-19", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-19', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-35", - "connection-id": "connection-26" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-35', + 'connection-id': 'connection-26' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-25", - "connection-id": "connection-22" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-25', + 'connection-id': 'connection-22' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-16", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-16', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-36", - "connection-id": "connection-28" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-36', + 'connection-id': 'connection-28' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-54", - "connection-id": "connection-30" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-54', + 'connection-id': 'connection-30' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-9", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-9', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-42", - "connection-id": "connection-30" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-42', + 'connection-id': 'connection-30' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-19", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-19', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-19", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-19', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-8", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-8', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "irisnet", - "client-id": "07-tendermint-44", - "connection-id": "connection-32" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'irisnet', + 'client-id': '07-tendermint-44', + 'connection-id': 'connection-32' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-41", - "connection-id": "connection-27" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-41', + 'connection-id': 'connection-27' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-21", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-21', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1457", - "connection-id": "connection-1142" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1457', + 'connection-id': 'connection-1142' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-42", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-42', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } }, { - "chain-1": { - "channel-id": "channel-47", - "port-id": "wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn" + 'chain-1': { + 'channel-id': 'channel-47', + 'port-id': + 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn' }, - "chain-2": { - "channel-id": "channel-169", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-169', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-89", - "connection-id": "connection-51" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-89', + 'connection-id': 'connection-51' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-49", - "connection-id": "connection-48" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-49', + 'connection-id': 'connection-48' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-33", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-33', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-37", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-37', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-108", - "connection-id": "connection-68" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-108', + 'connection-id': 'connection-68' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-23", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-23', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-48", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-48', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-8", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-8', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-9", - "connection-id": "connection-8" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-8' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-37", - "connection-id": "connection-17" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-37', + 'connection-id': 'connection-17' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-14", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-14', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-44", - "connection-id": "connection-30" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-44', + 'connection-id': 'connection-30' }, - "chain-2": { - "chain-name": "stargaze", - "client-id": "07-tendermint-13", - "connection-id": "connection-11" + 'chain-2': { + 'chain-name': 'stargaze', + 'client-id': '07-tendermint-13', + 'connection-id': 'connection-11' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-20", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-20', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-5", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-5', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "juno", - "client-id": "07-tendermint-63", - "connection-id": "connection-43" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'juno', + 'client-id': '07-tendermint-63', + 'connection-id': 'connection-43' }, - "chain-2": { - "chain-name": "terra", - "client-id": "07-tendermint-32", - "connection-id": "connection-34" + 'chain-2': { + 'chain-name': 'terra', + 'client-id': '07-tendermint-32', + 'connection-id': 'connection-34' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-27", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-27', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-20", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-20', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "kava", - "client-id": "07-tendermint-2", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'kava', + 'client-id': '07-tendermint-2', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1735", - "connection-id": "connection-1328" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1735', + 'connection-id': 'connection-1328' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-143", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-143', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "kichain", - "client-id": "07-tendermint-4", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'kichain', + 'client-id': '07-tendermint-4', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1564", - "connection-id": "connection-1225" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1564', + 'connection-id': 'connection-1225' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-77", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-77', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } }, { - "chain-1": { - "channel-id": "channel-18", - "port-id": "wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha" + 'chain-1': { + 'channel-id': 'channel-18', + 'port-id': + 'wasm.ki1hzz0s0ucrhdp6tue2lxk3c03nj6f60qy463we7lgx0wudd72ctmsd9kgha' }, - "chain-2": { - "channel-id": "channel-261", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-261', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "konstellation", - "client-id": "07-tendermint-1", - "connection-id": "connection-0" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'konstellation', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-0' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1778", - "connection-id": "connection-1384" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1778', + 'connection-id': 'connection-1384' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-171", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-171', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "kujira", - "client-id": "07-tendermint-3", - "connection-id": "connection-2" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'kujira', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-2' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-2017", - "connection-id": "connection-1559" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-2017', + 'connection-id': 'connection-1559' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-259", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-259', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "likecoin", - "client-id": "07-tendermint-16", - "connection-id": "connection-9" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'likecoin', + 'client-id': '07-tendermint-16', + 'connection-id': 'connection-9' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1507", - "connection-id": "connection-1173" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1507', + 'connection-id': 'connection-1173' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-53", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-53', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "lumenx", - "client-id": "07-tendermint-0", - "connection-id": "connection-6" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'lumenx', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-6' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-2079", - "connection-id": "connection-1620" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-2079', + 'connection-id': 'connection-1620' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-286", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-286', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "lumnetwork", - "client-id": "07-tendermint-7", - "connection-id": "connection-5" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'lumnetwork', + 'client-id': '07-tendermint-7', + 'connection-id': 'connection-5' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1668", - "connection-id": "connection-1280" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1668', + 'connection-id': 'connection-1280' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-115", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-115', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "meme", - "client-id": "07-tendermint-0", - "connection-id": "connection-1" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'meme', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-1' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1931", - "connection-id": "connection-1502" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1931', + 'connection-id': 'connection-1502' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-238", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-238', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "microtick", - "client-id": "07-tendermint-99", - "connection-id": "connection-92" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'microtick', + 'client-id': '07-tendermint-99', + 'connection-id': 'connection-92' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1453", - "connection-id": "connection-1139" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1453', + 'connection-id': 'connection-1139' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-16", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-16', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-39", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-39', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "oraichain", - "client-id": "07-tendermint-49", - "connection-id": "connection-21" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'oraichain', + 'client-id': '07-tendermint-49', + 'connection-id': 'connection-21' }, - "chain-2": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1882", - "connection-id": "connection-1464" + 'chain-2': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1882', + 'connection-id': 'connection-1464' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-13", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-13', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-216", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-216', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1576", - "connection-id": "connection-1231" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1576', + 'connection-id': 'connection-1231' }, - "chain-2": { - "chain-name": "panacea", - "client-id": "07-tendermint-6", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'panacea', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-82", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-82', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-3", - "connection-id": "connection-4" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-4' }, - "chain-2": { - "chain-name": "persistence", - "client-id": "07-tendermint-6", - "connection-id": "connection-5" + 'chain-2': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-5' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-4", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-4', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-6", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-6', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1899", - "connection-id": "connection-1472" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1899', + 'connection-id': 'connection-1472' }, - "chain-2": { - "chain-name": "provenance", - "client-id": "07-tendermint-31", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'provenance', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-222", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-222', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-6", - "connection-id": "connection-7" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-7' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-1", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-1', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-8", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-8', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1898", - "connection-id": "connection-1471" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1898', + 'connection-id': 'connection-1471' }, - "chain-2": { - "chain-name": "rizon", - "client-id": "07-tendermint-3", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'rizon', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-221", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-221', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1588", - "connection-id": "connection-1244" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1588', + 'connection-id': 'connection-1244' }, - "chain-2": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-2", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-2', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-88", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-88', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis", - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis', + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-2", - "connection-id": "connection-3" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-2', + 'connection-id': 'connection-3' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1741", - "connection-id": "connection-1342" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1741', + 'connection-id': 'connection-1342' }, - "chain-2": { - "chain-name": "shentu", - "client-id": "07-tendermint-9", - "connection-id": "connection-8" + 'chain-2': { + 'chain-name': 'shentu', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-8' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-146", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-146', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-8", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-8', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1484", - "connection-id": "connection-1159" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1484', + 'connection-id': 'connection-1159' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-41", - "connection-id": "connection-20" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-41', + 'connection-id': 'connection-20' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-47", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-47', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-17", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-17', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1745", - "connection-id": "connection-1348" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1745', + 'connection-id': 'connection-1348' }, - "chain-2": { - "chain-name": "sommelier", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'sommelier', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-165", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-165', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1562", - "connection-id": "connection-1223" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1562', + 'connection-id': 'connection-1223' }, - "chain-2": { - "chain-name": "stargaze", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'stargaze', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-75", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-75', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-71", - "connection-id": "connection-42" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-71', + 'connection-id': 'connection-42' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-9", - "connection-id": "connection-9" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-9' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1215", - "connection-id": "connection-1549" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1215', + 'connection-id': 'connection-1549' }, - "chain-2": { - "chain-name": "terra", - "client-id": "07-tendermint-12", - "connection-id": "connection-11" + 'chain-2': { + 'chain-name': 'terra', + 'client-id': '07-tendermint-12', + 'connection-id': 'connection-11' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-72", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-72', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-2025", - "connection-id": "connection-1565" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-2025', + 'connection-id': 'connection-1565' }, - "chain-2": { - "chain-name": "tgrade", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'tgrade', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-263", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-263', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1805", - "connection-id": "connection-1410" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1805', + 'connection-id': 'connection-1410' }, - "chain-2": { - "chain-name": "umee", - "client-id": "07-tendermint-6", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'umee', + 'client-id': '07-tendermint-6', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-184", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-184', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "osmosis", - "client-id": "07-tendermint-1705", - "connection-id": "connection-1300" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'osmosis', + 'client-id': '07-tendermint-1705', + 'connection-id': 'connection-1300' }, - "chain-2": { - "chain-name": "vidulum", - "client-id": "07-tendermint-0", - "connection-id": "connection-0" + 'chain-2': { + 'chain-name': 'vidulum', + 'client-id': '07-tendermint-0', + 'connection-id': 'connection-0' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-124", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-124', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-0", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-0', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "dex": "osmosis" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "persistence", - "client-id": "07-tendermint-33", - "connection-id": "connection-27" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-33', + 'connection-id': 'connection-27' }, - "chain-2": { - "chain-name": "regen", - "client-id": "07-tendermint-30", - "connection-id": "connection-28" + 'chain-2': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-30', + 'connection-id': 'connection-28' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-21", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-21', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-14", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-14', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "persistence", - "client-id": "07-tendermint-34", - "connection-id": "connection-28" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-34', + 'connection-id': 'connection-28' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-61", - "connection-id": "connection-36" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-61', + 'connection-id': 'connection-36' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-22", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-22', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "persistence", - "client-id": "07-tendermint-38", - "connection-id": "connection-32" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-38', + 'connection-id': 'connection-32' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-18", - "connection-id": "connection-8" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-18', + 'connection-id': 'connection-8' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-26", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-26', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-7", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-7', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "persistence", - "client-id": "07-tendermint-39", - "connection-id": "connection-39" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'persistence', + 'client-id': '07-tendermint-39', + 'connection-id': 'connection-39' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-44", - "connection-id": "connection-30" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-44', + 'connection-id': 'connection-30' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-27", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-27', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-13", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-13', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "regen", - "client-id": "07-tendermint-31", - "connection-id": "connection-29" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-29' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-56", - "connection-id": "connection-32" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-56', + 'connection-id': 'connection-32' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-11", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-11', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "regen", - "client-id": "07-tendermint-73", - "connection-id": "connection-60" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-73', + 'connection-id': 'connection-60' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-31", - "connection-id": "connection-13" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-31', + 'connection-id': 'connection-13' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-28", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-28', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-10", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-10', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "regen", - "client-id": "07-tendermint-74", - "connection-id": "connection-61" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'regen', + 'client-id': '07-tendermint-74', + 'connection-id': 'connection-61' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-45", - "connection-id": "connection-31" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-45', + 'connection-id': 'connection-31' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-29", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-29', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-14", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-14', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-14", - "connection-id": "connection-3" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-14', + 'connection-id': 'connection-3' }, - "chain-2": { - "chain-name": "sentinel", - "client-id": "07-tendermint-96", - "connection-id": "connection-75" + 'chain-2': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-96', + 'connection-id': 'connection-75' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-50", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-50', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-37", - "connection-id": "connection-19" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-37', + 'connection-id': 'connection-19' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-171", - "connection-id": "connection-98" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-171', + 'connection-id': 'connection-98' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-65", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-65', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-43", - "connection-id": "connection-25" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-43', + 'connection-id': 'connection-25' }, - "chain-2": { - "chain-name": "stargaze", - "client-id": "07-tendermint-177", - "connection-id": "connection-110" + 'chain-2': { + 'chain-name': 'stargaze', + 'client-id': '07-tendermint-177', + 'connection-id': 'connection-110' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-19", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-19', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-48", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-48', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-3", - "connection-id": "connection-2" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-3', + 'connection-id': 'connection-2' }, - "chain-2": { - "chain-name": "terra", - "client-id": "07-tendermint-28", - "connection-id": "connection-29" + 'chain-2': { + 'chain-name': 'terra', + 'client-id': '07-tendermint-28', + 'connection-id': 'connection-29' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-2", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-2', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-16", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-16', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "secretnetwork", - "client-id": "07-tendermint-38", - "connection-id": "connection-20" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'secretnetwork', + 'client-id': '07-tendermint-38', + 'connection-id': 'connection-20' }, - "chain-2": { - "chain-name": "terra2", - "client-id": "07-tendermint-4", - "connection-id": "connection-7" + 'chain-2': { + 'chain-name': 'terra2', + 'client-id': '07-tendermint-4', + 'connection-id': 'connection-7' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-16", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-16', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-3", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-3', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": { - "status": "live", - "preferred": true, - "properties": "privacy" + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' } } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "sentinel", - "client-id": "07-tendermint-84", - "connection-id": "connection-58" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-84', + 'connection-id': 'connection-58' }, - "chain-2": { - "chain-name": "sifchain", - "client-id": "07-tendermint-9", - "connection-id": "connection-1" + 'chain-2': { + 'chain-name': 'sifchain', + 'client-id': '07-tendermint-9', + 'connection-id': 'connection-1' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-36", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-36', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-1", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-1', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, { - "$schema": "../ibc_data.schema.json", - "chain-1": { - "chain-name": "sentinel", - "client-id": "07-tendermint-88", - "connection-id": "connection-70" + $schema: '../ibc_data.schema.json', + 'chain-1': { + 'chain-name': 'sentinel', + 'client-id': '07-tendermint-88', + 'connection-id': 'connection-70' }, - "chain-2": { - "chain-name": "starname", - "client-id": "07-tendermint-46", - "connection-id": "connection-32" + 'chain-2': { + 'chain-name': 'starname', + 'client-id': '07-tendermint-46', + 'connection-id': 'connection-32' }, - "channels": [ + channels: [ { - "chain-1": { - "channel-id": "channel-40", - "port-id": "transfer" + 'chain-1': { + 'channel-id': 'channel-40', + 'port-id': 'transfer' }, - "chain-2": { - "channel-id": "channel-15", - "port-id": "transfer" + 'chain-2': { + 'channel-id': 'channel-15', + 'port-id': 'transfer' }, - "ordering": "unordered", - "version": "ics20-1", - "tags": {} + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] } ]; export default ibc; - \ No newline at end of file diff --git a/packages/chain-registry/types/index.d.ts b/packages/chain-registry/types/index.d.ts index 99d6d80b9..cc9a68040 100644 --- a/packages/chain-registry/types/index.d.ts +++ b/packages/chain-registry/types/index.d.ts @@ -2,9 +2,9 @@ import assets from './assets'; import chains from './chains'; import ibc from './ibc'; declare const _default: { - assets: import("@chain-registry/types").AssetList[]; - chains: import("@chain-registry/types").Chain[]; - ibc: import("@chain-registry/types").IBCInfo[]; + assets: import('@chain-registry/types').AssetList[]; + chains: import('@chain-registry/types').Chain[]; + ibc: import('@chain-registry/types').IBCInfo[]; }; export default _default; export { assets, chains, ibc }; diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index df3c0f860..51036853a 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. +## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.5.0...@chain-registry/juno@0.5.1) (2022-08-14) + +**Note:** Version bump only for package @chain-registry/juno + + + + + # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.4.6...@chain-registry/juno@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index a97db22eb..a45dd0328 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "0.5.0", + "version": "0.5.1", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -24,6 +24,7 @@ "build:ts": "tsc --project ./tsconfig.json", "buidl": "npm run build && npm run build:ts", "build:pkg": "babel-node ./scripts/build.js", + "codegen": "npm run build:pkg && npm run format", "prepare": "npm run build", "lint": "eslint --ext .ts,.tsx,.js .", "format": "eslint --fix . --ext .ts,.tsx,.js", @@ -60,7 +61,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "28.1.1", "babel-watch": "^7.0.0", - "chain-registry": "^0.6.0", + "chain-registry": "^0.6.1", "cross-env": "^7.0.2", "eslint": "8.20.0", "eslint-config-prettier": "^8.5.0", diff --git a/packages/juno/src/assets.ts b/packages/juno/src/assets.ts index 6d9edf759..db2d2f34a 100644 --- a/packages/juno/src/assets.ts +++ b/packages/juno/src/assets.ts @@ -1,353 +1,450 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { - "$schema": "../assetlist.schema.json", - "chain_name": "juno", - "assets": [ + $schema: '../assetlist.schema.json', + chain_name: 'juno', + assets: [ { - "description": "The native token of JUNO Chain", - "denom_units": [ + description: 'The native token of JUNO Chain', + denom_units: [ { - "denom": "ujuno", - "exponent": 0 + denom: 'ujuno', + exponent: 0 }, { - "denom": "juno", - "exponent": 6 + denom: 'juno', + exponent: 6 } ], - "base": "ujuno", - "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" + base: 'ujuno', + 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" + coingecko_id: 'juno-network' }, { - "description": "The native token cw20 for Neta on Juno Chain", - "type_asset": "cw20", - "address": "juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "denom_units": [ + description: 'The native token cw20 for Neta on Juno Chain', + type_asset: 'cw20', + address: + 'juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + denom_units: [ { - "denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "exponent": 0 + denom: + 'cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + exponent: 0 }, { - "denom": "neta", - "exponent": 6 + denom: 'neta', + exponent: 6 } ], - "base": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", - "name": "Neta", - "display": "neta", - "symbol": "NETA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg" + base: + 'cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' }, - "coingecko_id": "neta" + coingecko_id: 'neta' }, { - "description": "The native token cw20 for Marble DAO on Juno Chain", - "type_asset": "cw20", - "address": "juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "denom_units": [ + description: 'The native token cw20 for Marble DAO on Juno Chain', + type_asset: 'cw20', + address: + 'juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + denom_units: [ { - "denom": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "exponent": 0 + denom: + 'cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + exponent: 0 }, { - "denom": "marble", - "exponent": 3 + denom: 'marble', + exponent: 3 } ], - "base": "cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl", - "name": "Marble", - "display": "marble", - "symbol": "MARBLE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg" + base: + 'cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' }, - "coingecko_id": "marble" + coingecko_id: 'marble' }, { - "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", - "type_asset": "cw20", - "address": "juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "denom_units": [ + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + type_asset: 'cw20', + address: + 'juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + denom_units: [ { - "denom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "exponent": 0 + denom: + 'cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + exponent: 0 }, { - "denom": "hope", - "exponent": 6 + denom: 'hope', + exponent: 6 } ], - "base": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "name": "Hope Galaxy", - "display": "hope", - "symbol": "HOPE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg" + base: + 'cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' }, - "coingecko_id": "hope-galaxy" + coingecko_id: 'hope-galaxy' }, { - "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", - "type_asset": "cw20", - "address": "juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "denom_units": [ + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + type_asset: 'cw20', + address: + 'juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + denom_units: [ { - "denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "exponent": 0 + denom: + 'cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + exponent: 0 }, { - "denom": "rac", - "exponent": 6 + denom: 'rac', + exponent: 6 } ], - "base": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "name": "Racoon", - "display": "rac", - "symbol": "RAC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg" + base: + 'cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa', + name: 'Racoon', + display: 'rac', + symbol: 'RAC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' }, - "coingecko_id": "racoon" + coingecko_id: 'racoon' }, { - "description": "The native token of Marble DEX on Juno Chain", - "type_asset": "cw20", - "address": "juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "denom_units": [ + description: 'The native token of Marble DEX on Juno Chain', + type_asset: 'cw20', + address: + 'juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + denom_units: [ { - "denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "exponent": 0 + denom: + 'cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + exponent: 0 }, { - "denom": "block", - "exponent": 6 + denom: 'block', + exponent: 6 } ], - "base": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", - "name": "Block", - "display": "block", - "symbol": "BLOCK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg" + base: + 'cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' } }, { - "description": "The DAO token to build consensus among Hong Kong People", - "type_asset": "cw20", - "address": "juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "denom_units": [ + description: 'The DAO token to build consensus among Hong Kong People', + type_asset: 'cw20', + address: + 'juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + denom_units: [ { - "denom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "exponent": 0, - "aliases": [ - "dhk" - ] + denom: + 'cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + exponent: 0, + aliases: ['dhk'] } ], - "base": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "name": "DHK", - "display": "dhk", - "symbol": "DHK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg" + base: + 'cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' } }, { - "description": "Token governance for Junoswap", - "type_asset": "cw20", - "address": "juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "denom_units": [ + description: 'Token governance for Junoswap', + type_asset: 'cw20', + address: + 'juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + denom_units: [ { - "denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "exponent": 0 + denom: + 'cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + exponent: 0 }, { - "denom": "raw", - "exponent": 6 + denom: 'raw', + exponent: 6 } ], - "base": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "name": "JunoSwap", - "display": "raw", - "symbol": "RAW", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png" + base: + 'cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png' }, - "coingecko_id": "junoswap-raw-dao" + coingecko_id: 'junoswap-raw-dao' }, { - "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", - "type_asset": "cw20", - "address": "juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "denom_units": [ + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + type_asset: 'cw20', + address: + 'juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + denom_units: [ { - "denom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "exponent": 0 + denom: + 'cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + exponent: 0 }, { - "denom": "asvt", - "exponent": 6 + denom: 'asvt', + exponent: 6 } ], - "base": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "name": "Another.Software Validator Token", - "display": "asvt", - "symbol": "ASVT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png" + base: + 'cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' } }, { - "description": "IBC HNS is HNS, coin of Handshake, decentralized root namesystem, but wrapped to cosmos for IBC support by Another.Software through Juno netowrk.", - "type_asset": "cw20", - "address": "juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "denom_units": [ + description: + 'IBC HNS is HNS, coin of Handshake, decentralized root namesystem, but wrapped to cosmos for IBC support by Another.Software through Juno netowrk.', + type_asset: 'cw20', + address: + 'juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + denom_units: [ { - "denom": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "exponent": 0 + denom: + 'cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + exponent: 0 }, { - "denom": "hns", - "exponent": 6 + denom: 'hns', + exponent: 6 } ], - "base": "cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k", - "name": "IBC HNS (Handshake)", - "display": "hns", - "symbol": "HNS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg" + base: + 'cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k', + name: 'IBC HNS (Handshake)', + display: 'hns', + symbol: 'HNS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg' } }, { - "description": "DAO dedicated to building tools on the Juno Network", - "type_asset": "cw20", - "address": "juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "denom_units": [ + description: 'DAO dedicated to building tools on the Juno Network', + type_asset: 'cw20', + address: + 'juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + denom_units: [ { - "denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "exponent": 0 + denom: + 'cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + exponent: 0 }, { - "denom": "joe", - "exponent": 6 + denom: 'joe', + exponent: 6 } ], - "base": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", - "name": "JoeDAO", - "display": "joe", - "symbol": "JOE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png" + base: + 'cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' } }, { - "description": "Governance Token for Digital Land Acquisition DAO", - "type_asset": "cw20", - "address": "juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "denom_units": [ + description: 'Governance Token for Digital Land Acquisition DAO', + type_asset: 'cw20', + address: + 'juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + denom_units: [ { - "denom": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "exponent": 0 + denom: + 'cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + exponent: 0 }, { - "denom": "dla", - "exponent": 6 + denom: 'dla', + exponent: 6 } ], - "base": "cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr", - "name": "Digital Land Acquisition DAO", - "display": "dla", - "symbol": "DLA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg" + base: + 'cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr', + name: 'Digital Land Acquisition DAO', + display: 'dla', + symbol: 'DLA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dla.svg' } }, { - "description": "DeFi gaming platform built on Juno", - "type_asset": "cw20", - "address": "juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "denom_units": [ + description: 'DeFi gaming platform built on Juno', + type_asset: 'cw20', + address: + 'juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + denom_units: [ { - "denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "exponent": 0 + denom: + 'cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + exponent: 0 }, { - "denom": "glto", - "exponent": 6 + denom: 'glto', + exponent: 6 } ], - "base": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "name": "Gelotto", - "display": "glto", - "symbol": "GLTO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg" + base: + 'cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' } }, { - "description": "Gelotto Year 1 Grand Prize Token", - "type_asset": "cw20", - "address": "juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "denom_units": [ + description: 'Gelotto Year 1 Grand Prize Token', + type_asset: 'cw20', + address: + 'juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + denom_units: [ { - "denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "exponent": 0 + denom: + 'cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + exponent: 0 }, { - "denom": "gkey", - "exponent": 6 + denom: 'gkey', + exponent: 6 } ], - "base": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "name": "GKey", - "display": "gkey", - "symbol": "GKEY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg" + base: + 'cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' } }, { - "description": "The native token cw20 for BlackHole on Juno Chain", - "type_asset": "cw20", - "address": "juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "denom_units": [ + description: 'The native token cw20 for BlackHole on Juno Chain', + type_asset: 'cw20', + address: + 'juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + denom_units: [ { - "denom": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "exponent": 0 + denom: + 'cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + exponent: 0 }, { - "denom": "blkh", - "exponent": 4 + denom: 'blkh', + exponent: 4 } ], - "base": "cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca", - "name": "Blackhole", - "display": "blkh", - "symbol": "BLKH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.svg" + base: + 'cw20:juno1rdw3gumdz7zyjn2pev9ugxs765xlv6vtv6g3jt2lqw580zrchvjs66daca', + name: 'Blackhole', + display: 'blkh', + symbol: 'BLKH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/blkh.svg' } + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + type_asset: 'cw20', + address: + 'juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + denom_units: [ + { + denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + exponent: 0, + aliases: ['uneta'] + }, + { + denom: 'neta', + exponent: 6 + } + ], + base: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png' + }, + coingecko_id: 'neta' } ] }; export default assets; - \ No newline at end of file diff --git a/packages/juno/src/chain.ts b/packages/juno/src/chain.ts index e65e6e536..5193d9f7b 100644 --- a/packages/juno/src/chain.ts +++ b/packages/juno/src/chain.ts @@ -1,177 +1,173 @@ import { Chain } from '@chain-registry/types'; const chain: Chain = { - "$schema": "../chain.schema.json", - "chain_name": "juno", - "status": "live", - "network_type": "mainnet", - "pretty_name": "Juno", - "chain_id": "juno-1", - "bech32_prefix": "juno", - "slip44": 118, - "genesis": { - "genesis_url": "https://raw.githubusercontent.com/CosmosContracts/mainnet/main/juno-1/genesis.json" + $schema: '../chain.schema.json', + chain_name: 'juno', + status: 'live', + network_type: 'mainnet', + pretty_name: 'Juno', + chain_id: 'juno-1', + bech32_prefix: 'juno', + slip44: 118, + genesis: { + genesis_url: + 'https://raw.githubusercontent.com/CosmosContracts/mainnet/main/juno-1/genesis.json' }, - "codebase": { - "git_repo": "https://github.com/CosmosContracts/juno", - "recommended_version": "v9.0.0", - "compatible_versions": [ - "v9.0.0" - ] + codebase: { + git_repo: 'https://github.com/CosmosContracts/juno', + recommended_version: 'v9.0.0', + compatible_versions: ['v9.0.0'] }, - "daemon_name": "junod", - "node_home": "$HOME/.juno", - "key_algos": [ - "secp256k1" - ], - "peers": { - "seeds": [ + daemon_name: 'junod', + node_home: '$HOME/.juno', + key_algos: ['secp256k1'], + peers: { + seeds: [ { - "id": "2484353dab0b2c1275765b8ffa2c50b3b36158ca", - "address": "seed-node.junochain.com:26656" + id: '2484353dab0b2c1275765b8ffa2c50b3b36158ca', + address: 'seed-node.junochain.com:26656' }, { - "id": "ef2315d81caa27e4b0fd0f267d301569ee958893", - "address": "juno-seed.blockpane.com:26656" + id: 'ef2315d81caa27e4b0fd0f267d301569ee958893', + address: 'juno-seed.blockpane.com:26656' }, { - "id": "22ee6e65e5e79cd0b970dd11e52761de8d1d6dfd", - "address": "seeds.pupmos.network:2001", - "provider": "PUPMØS" + id: '22ee6e65e5e79cd0b970dd11e52761de8d1d6dfd', + address: 'seeds.pupmos.network:2001', + provider: 'PUPMØS' } ], - "persistent_peers": [ + persistent_peers: [ { - "id": "b1f46f1a1955fc773d3b73180179b0e0a07adce1", - "address": "162.55.244.250:39656" + id: 'b1f46f1a1955fc773d3b73180179b0e0a07adce1', + address: '162.55.244.250:39656' }, { - "id": "7f593757c0cde8972ce929381d8ac8e446837811", - "address": "178.18.255.244:26656" + id: '7f593757c0cde8972ce929381d8ac8e446837811', + address: '178.18.255.244:26656' }, { - "id": "7b22dfc605989d66b89d2dfe118d799ea5abc2f0", - "address": "167.99.210.65:26656" + id: '7b22dfc605989d66b89d2dfe118d799ea5abc2f0', + address: '167.99.210.65:26656' }, { - "id": "4bd9cac019775047d27f9b9cea66b25270ab497d", - "address": "137.184.7.164:26656" + id: '4bd9cac019775047d27f9b9cea66b25270ab497d', + address: '137.184.7.164:26656' }, { - "id": "bd822a8057902fbc80fd9135e335f0dfefa32342", - "address": "65.21.202.159:38656" + id: 'bd822a8057902fbc80fd9135e335f0dfefa32342', + address: '65.21.202.159:38656' }, { - "id": "15827c6c13f919e4d9c11bcca23dff4e3e79b1b8", - "address": "51.38.52.210:38656" + id: '15827c6c13f919e4d9c11bcca23dff4e3e79b1b8', + address: '51.38.52.210:38656' }, { - "id": "e665df28999b2b7b40cff2fe4030682c380bf294", - "address": "188.40.106.109:38656" + id: 'e665df28999b2b7b40cff2fe4030682c380bf294', + address: '188.40.106.109:38656' }, { - "id": "92804ce50c85ff4c7cf149d347dd880fc3735bf4", - "address": "34.94.231.154:26656" + id: '92804ce50c85ff4c7cf149d347dd880fc3735bf4', + address: '34.94.231.154:26656' }, { - "id": "795ed214b8354e8468f46d1bbbf6e128a88fe3bd", - "address": "34.127.19.222:26656" + id: '795ed214b8354e8468f46d1bbbf6e128a88fe3bd', + address: '34.127.19.222:26656' }, { - "id": "ea9c1ac0e91639b2c7957d9604655e2263abe4e1", - "address": "185.181.103.136:26656" + id: 'ea9c1ac0e91639b2c7957d9604655e2263abe4e1', + address: '185.181.103.136:26656' } ] }, - "apis": { - "rpc": [ + apis: { + rpc: [ { - "address": "https://rpc-juno.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://rpc-juno.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://rpc-juno.itastakers.com", - "provider": "itastakers" + address: 'https://rpc-juno.itastakers.com', + provider: 'itastakers' }, { - "address": "https://rpc-juno.ecostake.com", - "provider": "ecostake" + address: 'https://rpc-juno.ecostake.com', + provider: 'ecostake' }, { - "address": "https://juno-rpc.polkachu.com", - "provider": "Polkachu" + address: 'https://juno-rpc.polkachu.com', + provider: 'Polkachu' }, { - "address": "https://rpc.juno.pupmos.network", - "provider": "PUPMØS" + address: 'https://rpc.juno.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://rpc.junomint.com", - "provider": "EZStaking.io" + address: 'https://rpc.junomint.com', + provider: 'EZStaking.io' }, { - "address": "https://rpc-juno-ia.notional.ventures/", - "provider": "Notional" + address: 'https://rpc-juno-ia.notional.ventures/', + provider: 'Notional' } ], - "rest": [ + rest: [ { - "address": "https://lcd-juno.whispernode.com", - "provider": " WhisperNode 🤐" + address: 'https://lcd-juno.whispernode.com', + provider: ' WhisperNode 🤐' }, { - "address": "https://lcd-juno.itastakers.com", - "provider": "itastakers" + address: 'https://lcd-juno.itastakers.com', + provider: 'itastakers' }, { - "address": "https://rest-juno.ecostake.com", - "provider": "ecostake" + address: 'https://rest-juno.ecostake.com', + provider: 'ecostake' }, { - "address": "https://api.juno.pupmos.network", - "provider": "PUPMØS" + address: 'https://api.juno.pupmos.network', + provider: 'PUPMØS' }, { - "address": "https://lcd.junomint.com", - "provider": "EZStaking.io" + address: 'https://lcd.junomint.com', + provider: 'EZStaking.io' }, { - "address": "https://api-juno-ia.notional.ventures/", - "provider": "Notional" + address: 'https://api-juno-ia.notional.ventures/', + provider: 'Notional' } ], - "grpc": [ + grpc: [ { - "address": "35.243.205.230:9090", - "provider": "strangelove" + address: '35.243.205.230:9090', + provider: 'strangelove' }, { - "address": "grpc-juno-ia.notional.ventures:443", - "provider": "Notional" + address: 'grpc-juno-ia.notional.ventures:443', + provider: 'Notional' } ] }, - "explorers": [ + explorers: [ { - "kind": "ping.pub", - "url": "https://ping.pub/juno", - "tx_page": "https://ping.pub/juno/tx/${txHash}" + kind: 'ping.pub', + url: 'https://ping.pub/juno', + tx_page: 'https://ping.pub/juno/tx/${txHash}' }, { - "kind": "explorers.guru", - "url": "https://juno.explorers.guru", - "tx_page": "https://juno.explorers.guru/transaction/${txHash}" + kind: 'explorers.guru', + url: 'https://juno.explorers.guru', + tx_page: 'https://juno.explorers.guru/transaction/${txHash}' }, { - "kind": "mintscan", - "url": "https://www.mintscan.io/juno", - "tx_page": "https://www.mintscan.io/juno/txs/{txHash}" + kind: 'mintscan', + url: 'https://www.mintscan.io/juno', + tx_page: 'https://www.mintscan.io/juno/txs/{txHash}' }, { - "kind": "atomscan", - "url": "https://atomscan.com/juno", - "tx_page": "https://atomscan.com/juno/transactions/${txHash}" + kind: 'atomscan', + url: 'https://atomscan.com/juno', + tx_page: 'https://atomscan.com/juno/transactions/${txHash}' } ] }; export default chain; - \ No newline at end of file diff --git a/packages/juno/src/ibc_assets.ts b/packages/juno/src/ibc_assets.ts index 772aa7504..d93769d2c 100644 --- a/packages/juno/src/ibc_assets.ts +++ b/packages/juno/src/ibc_assets.ts @@ -1,2733 +1,2759 @@ import { IBCAsset } from '@chain-registry/types'; const ibc_assets: IBCAsset = { - "chain_name": "juno", - "assets": [ + chain_name: 'juno', + 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": [ + 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/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A", - "exponent": 0, - "aliases": [ - "uakt" - ] + denom: + 'ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A', + exponent: 0, + aliases: ['uakt'] }, { - "denom": "akt", - "exponent": 6 + denom: 'akt', + exponent: 6 } ], - "base": "ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A", - "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" + base: + 'ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A', + 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", - "ibc": { - "counterparty": { - "channel": "channel-35", - "denom": "uakt", - "chain_name": "akash" + coingecko_id: 'akash-network', + ibc: { + counterparty: { + channel: 'channel-35', + denom: 'uakt', + chain_name: 'akash' }, - "chain": { - "channel": "channel-29" + chain: { + channel: 'channel-29' } } }, { - "description": "The native token of Asset Mantle", - "denom_units": [ + description: 'The native token of Asset Mantle', + denom_units: [ { - "denom": "ibc/5CB906E82B7A88E62644AD811361F5858B74BA9EBD75C84B6D24B20C01A4819F", - "exponent": 0, - "aliases": [ - "umntl" - ] + denom: + 'ibc/5CB906E82B7A88E62644AD811361F5858B74BA9EBD75C84B6D24B20C01A4819F', + exponent: 0, + aliases: ['umntl'] }, { - "denom": "mntl", - "exponent": 6 + denom: 'mntl', + exponent: 6 } ], - "base": "ibc/5CB906E82B7A88E62644AD811361F5858B74BA9EBD75C84B6D24B20C01A4819F", - "name": "AssetMantle", - "display": "mntl", - "symbol": "MNTL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png" + base: + 'ibc/5CB906E82B7A88E62644AD811361F5858B74BA9EBD75C84B6D24B20C01A4819F', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png' }, - "coingecko_id": "assetmantle", - "ibc": { - "counterparty": { - "channel": "channel-2", - "denom": "umntl", - "chain_name": "assetmantle" + coingecko_id: 'assetmantle', + ibc: { + counterparty: { + channel: 'channel-2', + denom: 'umntl', + chain_name: 'assetmantle' }, - "chain": { - "channel": "channel-83" + chain: { + channel: 'channel-83' } } }, { - "description": "The native token of Axelar", - "denom_units": [ + description: 'The native token of Axelar', + denom_units: [ { - "denom": "ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990", - "exponent": 0, - "aliases": [ - "uaxl" - ] + denom: + 'ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990', + exponent: 0, + aliases: ['uaxl'] }, { - "denom": "axl", - "exponent": 6 + denom: 'axl', + exponent: 6 } ], - "base": "ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990", - "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" + base: + 'ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990', + 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-network", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "uaxl", - "chain_name": "axelar" + coingecko_id: 'axelar-network', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'uaxl', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Circle's stablecoin on Axelar", - "denom_units": [ + description: "Circle's stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: + 'ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "usdc", - "exponent": 6 + denom: 'usdc', + exponent: 6 } ], - "base": "ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "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" + base: + 'ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + 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": "usd-coin", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "uusdc", - "chain_name": "axelar" + coingecko_id: 'usd-coin', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'uusdc', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", - "denom_units": [ + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/1CE15165C83F70C7DB18B19C417321B02512A85BCB9FB8E553FC10070D122036", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: + 'ibc/1CE15165C83F70C7DB18B19C417321B02512A85BCB9FB8E553FC10070D122036', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "frax", - "exponent": 18 + denom: 'frax', + exponent: 18 } ], - "base": "ibc/1CE15165C83F70C7DB18B19C417321B02512A85BCB9FB8E553FC10070D122036", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png" + base: + 'ibc/1CE15165C83F70C7DB18B19C417321B02512A85BCB9FB8E553FC10070D122036', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png' }, - "coingecko_id": "frax", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "frax-wei", - "chain_name": "axelar" + coingecko_id: 'frax', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'frax-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Dai stablecoin on Axelar", - "denom_units": [ + description: 'Dai stablecoin on Axelar', + denom_units: [ { - "denom": "ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: + 'ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "dai", - "exponent": 18 + denom: 'dai', + exponent: 18 } ], - "base": "ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "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" + base: + 'ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + 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' }, - "coingecko_id": "dai", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "dai-wei", - "chain_name": "axelar" + coingecko_id: 'dai', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'dai-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Tether's USD stablecoin on Axelar", - "denom_units": [ + description: "Tether's USD stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: + 'ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "usdt", - "exponent": 6 + denom: 'usdt', + exponent: 6 } ], - "base": "ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "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" + base: + 'ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + 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' }, - "coingecko_id": "tether", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "uusdt", - "chain_name": "axelar" + coingecko_id: 'tether', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'uusdt', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Wrapped Ether on Axelar", - "denom_units": [ + description: 'Wrapped Ether on Axelar', + denom_units: [ { - "denom": "ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17", - "exponent": 0, - "aliases": [ - "weth-wei" - ] + denom: + 'ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17', + exponent: 0, + aliases: ['weth-wei'] }, { - "denom": "weth", - "exponent": 18 + denom: 'weth', + exponent: 18 } ], - "base": "ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + base: + 'ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' }, - "coingecko_id": "weth", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "weth-wei", - "chain_name": "axelar" + coingecko_id: 'weth', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'weth-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Wrapped Bitcoin on Axelar", - "denom_units": [ + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ { - "denom": "ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] + denom: + 'ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6', + exponent: 0, + aliases: ['wbtc-satoshi'] }, { - "denom": "wbtc", - "exponent": 8 + denom: 'wbtc', + exponent: 8 } ], - "base": "ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + base: + 'ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' }, - "coingecko_id": "wrapped-bitcoin", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "wbtc-satoshi", - "chain_name": "axelar" + coingecko_id: 'wrapped-bitcoin', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'wbtc-satoshi', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Aave on Axelar", - "denom_units": [ + description: 'Aave on Axelar', + denom_units: [ { - "denom": "ibc/686AF664CCC44119B3DED5267CCA02CE6FA877A4C3EF71408FCA7B30EBD505C4", - "exponent": 0, - "aliases": [ - "aave-wei" - ] + denom: + 'ibc/686AF664CCC44119B3DED5267CCA02CE6FA877A4C3EF71408FCA7B30EBD505C4', + exponent: 0, + aliases: ['aave-wei'] }, { - "denom": "aave", - "exponent": 18 + denom: 'aave', + exponent: 18 } ], - "base": "ibc/686AF664CCC44119B3DED5267CCA02CE6FA877A4C3EF71408FCA7B30EBD505C4", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + base: + 'ibc/686AF664CCC44119B3DED5267CCA02CE6FA877A4C3EF71408FCA7B30EBD505C4', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' }, - "coingecko_id": "aave", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "aave-wei", - "chain_name": "axelar" + coingecko_id: 'aave', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'aave-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "ApeCoin on Axelar", - "denom_units": [ + description: 'ApeCoin on Axelar', + denom_units: [ { - "denom": "ibc/9D4421F8337456349864798C4928500797AF09C002A288041F1748F7846EFA19", - "exponent": 0, - "aliases": [ - "ape-wei" - ] + denom: + 'ibc/9D4421F8337456349864798C4928500797AF09C002A288041F1748F7846EFA19', + exponent: 0, + aliases: ['ape-wei'] }, { - "denom": "ape", - "exponent": 18 + denom: 'ape', + exponent: 18 } ], - "base": "ibc/9D4421F8337456349864798C4928500797AF09C002A288041F1748F7846EFA19", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + base: + 'ibc/9D4421F8337456349864798C4928500797AF09C002A288041F1748F7846EFA19', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' }, - "coingecko_id": "apecoin", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "ape-wei", - "chain_name": "axelar" + coingecko_id: 'apecoin', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'ape-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Axie Infinity Shard on Axelar", - "type_asset": "erc20", - "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "denom_units": [ + description: 'Axie Infinity Shard on Axelar', + type_asset: 'erc20', + address: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + denom_units: [ { - "denom": "ibc/424DD4BE67F6ADD52BA9A810B0B4157694A962B96BC676E4A22EB1E50679677F", - "exponent": 0, - "aliases": [ - "axs-wei" - ] + denom: + 'ibc/424DD4BE67F6ADD52BA9A810B0B4157694A962B96BC676E4A22EB1E50679677F', + exponent: 0, + aliases: ['axs-wei'] }, { - "denom": "axs", - "exponent": 18 + denom: 'axs', + exponent: 18 } ], - "base": "ibc/424DD4BE67F6ADD52BA9A810B0B4157694A962B96BC676E4A22EB1E50679677F", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + base: + 'ibc/424DD4BE67F6ADD52BA9A810B0B4157694A962B96BC676E4A22EB1E50679677F', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' }, - "coingecko_id": "axie-infinity", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "axs-wei", - "chain_name": "axelar" + coingecko_id: 'axie-infinity', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'axs-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Chainlink on Axelar", - "denom_units": [ + description: 'Chainlink on Axelar', + denom_units: [ { - "denom": "ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE", - "exponent": 0, - "aliases": [ - "link-wei" - ] + denom: + 'ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE', + exponent: 0, + aliases: ['link-wei'] }, { - "denom": "link", - "exponent": 18 + denom: 'link', + exponent: 18 } ], - "base": "ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", - "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" + base: + 'ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + 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' }, - "coingecko_id": "chainlink", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "link-wei", - "chain_name": "axelar" + coingecko_id: 'chainlink', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'link-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Maker on Axelar", - "denom_units": [ + description: 'Maker on Axelar', + denom_units: [ { - "denom": "ibc/4A59932EAD8A140F66554E8E2B5CB80DCA5314A75A889F0AA2E648D96B69847F", - "exponent": 0, - "aliases": [ - "mkr-wei" - ] + denom: + 'ibc/4A59932EAD8A140F66554E8E2B5CB80DCA5314A75A889F0AA2E648D96B69847F', + exponent: 0, + aliases: ['mkr-wei'] }, { - "denom": "mkr", - "exponent": 18 + denom: 'mkr', + exponent: 18 } ], - "base": "ibc/4A59932EAD8A140F66554E8E2B5CB80DCA5314A75A889F0AA2E648D96B69847F", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + base: + 'ibc/4A59932EAD8A140F66554E8E2B5CB80DCA5314A75A889F0AA2E648D96B69847F', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' }, - "coingecko_id": "maker", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "mkr-wei", - "chain_name": "axelar" + coingecko_id: 'maker', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'mkr-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Rai Reflex Index on Axelar", - "denom_units": [ + description: 'Rai Reflex Index on Axelar', + denom_units: [ { - "denom": "ibc/4AA19294AE89888CE7DB64CA76781EE2FE9A0B703B8A5F156AD258428F7A77C4", - "exponent": 0, - "aliases": [ - "rai-wei" - ] + denom: + 'ibc/4AA19294AE89888CE7DB64CA76781EE2FE9A0B703B8A5F156AD258428F7A77C4', + exponent: 0, + aliases: ['rai-wei'] }, { - "denom": "rai", - "exponent": 18 + denom: 'rai', + exponent: 18 } ], - "base": "ibc/4AA19294AE89888CE7DB64CA76781EE2FE9A0B703B8A5F156AD258428F7A77C4", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + base: + 'ibc/4AA19294AE89888CE7DB64CA76781EE2FE9A0B703B8A5F156AD258428F7A77C4', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' }, - "coingecko_id": "rai", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "rai-wei", - "chain_name": "axelar" + coingecko_id: 'rai', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'rai-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Shiba Inu on Axelar", - "denom_units": [ + description: 'Shiba Inu on Axelar', + denom_units: [ { - "denom": "ibc/D66D0A82177FF29CBB8A83705C26C28D45A14678579E350B10493D359ECFD851", - "exponent": 0, - "aliases": [ - "shib-wei" - ] + denom: + 'ibc/D66D0A82177FF29CBB8A83705C26C28D45A14678579E350B10493D359ECFD851', + exponent: 0, + aliases: ['shib-wei'] }, { - "denom": "shib", - "exponent": 18 + denom: 'shib', + exponent: 18 } ], - "base": "ibc/D66D0A82177FF29CBB8A83705C26C28D45A14678579E350B10493D359ECFD851", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + base: + 'ibc/D66D0A82177FF29CBB8A83705C26C28D45A14678579E350B10493D359ECFD851', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' }, - "coingecko_id": "shiba-inu", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "shib-wei", - "chain_name": "axelar" + coingecko_id: 'shiba-inu', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'shib-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Lido Staked Ether on Axelar", - "denom_units": [ + description: 'Lido Staked Ether on Axelar', + denom_units: [ { - "denom": "ibc/C740EF04C154165820688D9438AD90EA1E6B59BFF3715197AA570E928A44A937", - "exponent": 0, - "aliases": [ - "steth-wei" - ] + denom: + 'ibc/C740EF04C154165820688D9438AD90EA1E6B59BFF3715197AA570E928A44A937', + exponent: 0, + aliases: ['steth-wei'] }, { - "denom": "steth", - "exponent": 18 + denom: 'steth', + exponent: 18 } ], - "base": "ibc/C740EF04C154165820688D9438AD90EA1E6B59BFF3715197AA570E928A44A937", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + base: + 'ibc/C740EF04C154165820688D9438AD90EA1E6B59BFF3715197AA570E928A44A937', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' }, - "coingecko_id": "staked-ether", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "steth-wei", - "chain_name": "axelar" + coingecko_id: 'staked-ether', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'steth-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Uniswap on Axelar", - "denom_units": [ + description: 'Uniswap on Axelar', + denom_units: [ { - "denom": "ibc/0313AD311FA169EC5A130DB2EF0840CBA4B300ADB6B85A79FBA952FBD3E7B107", - "exponent": 0, - "aliases": [ - "uni-wei" - ] + denom: + 'ibc/0313AD311FA169EC5A130DB2EF0840CBA4B300ADB6B85A79FBA952FBD3E7B107', + exponent: 0, + aliases: ['uni-wei'] }, { - "denom": "uni", - "exponent": 18 + denom: 'uni', + exponent: 18 } ], - "base": "ibc/0313AD311FA169EC5A130DB2EF0840CBA4B300ADB6B85A79FBA952FBD3E7B107", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + base: + 'ibc/0313AD311FA169EC5A130DB2EF0840CBA4B300ADB6B85A79FBA952FBD3E7B107', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' }, - "coingecko_id": "uniswap", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "uni-wei", - "chain_name": "axelar" + coingecko_id: 'uniswap', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'uni-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Chain on Axelar", - "denom_units": [ + description: 'Chain on Axelar', + denom_units: [ { - "denom": "ibc/30B50C044D1074F0DC1916D9DA79B9F26434632609C3ED0158E22A5D40890D81", - "exponent": 0, - "aliases": [ - "xcn-wei" - ] + denom: + 'ibc/30B50C044D1074F0DC1916D9DA79B9F26434632609C3ED0158E22A5D40890D81', + exponent: 0, + aliases: ['xcn-wei'] }, { - "denom": "xcn", - "exponent": 18 + denom: 'xcn', + exponent: 18 } ], - "base": "ibc/30B50C044D1074F0DC1916D9DA79B9F26434632609C3ED0158E22A5D40890D81", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + base: + 'ibc/30B50C044D1074F0DC1916D9DA79B9F26434632609C3ED0158E22A5D40890D81', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' }, - "coingecko_id": "chain-2", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "xcn-wei", - "chain_name": "axelar" + coingecko_id: 'chain-2', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'xcn-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Wrapped Polkadot on Axelar", - "denom_units": [ + description: 'Wrapped Polkadot on Axelar', + denom_units: [ { - "denom": "ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D", - "exponent": 0, - "aliases": [ - "dot-planck" - ] + denom: + 'ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D', + exponent: 0, + aliases: ['dot-planck'] }, { - "denom": "dot", - "exponent": 10 + denom: 'dot', + exponent: 10 } ], - "base": "ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", - "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" + base: + 'ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + 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' }, - "coingecko_id": "polkadot", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "dot-planck", - "chain_name": "axelar" + coingecko_id: 'polkadot', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'dot-planck', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "description": "Wrapped Moonbeam on Axelar", - "denom_units": [ + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ { - "denom": "ibc/5539E7CB6FF8FDA12AE6BF20E8862513D787BF1712296EB4AA06DD86920FFBC1", - "exponent": 0, - "aliases": [ - "wglmr-wei" - ] + denom: + 'ibc/5539E7CB6FF8FDA12AE6BF20E8862513D787BF1712296EB4AA06DD86920FFBC1', + exponent: 0, + aliases: ['wglmr-wei'] }, { - "denom": "wglmr", - "exponent": 18 + denom: 'wglmr', + exponent: 18 } ], - "base": "ibc/5539E7CB6FF8FDA12AE6BF20E8862513D787BF1712296EB4AA06DD86920FFBC1", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "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" + base: + 'ibc/5539E7CB6FF8FDA12AE6BF20E8862513D787BF1712296EB4AA06DD86920FFBC1', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + 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' }, - "coingecko_id": "wrapped-moonbeam", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "wglmr-wei", - "chain_name": "axelar" + coingecko_id: 'wrapped-moonbeam', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'wglmr-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-71" + chain: { + channel: 'channel-71' } } }, { - "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": [ + 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/0CB5D60E57FD521FA39D11E3E410144389010AC5EF5F292BC9BDD832FA2FDBF9", - "exponent": 0, - "aliases": [ - "ubcna" - ] + denom: + 'ibc/0CB5D60E57FD521FA39D11E3E410144389010AC5EF5F292BC9BDD832FA2FDBF9', + exponent: 0, + aliases: ['ubcna'] }, { - "denom": "bcna", - "exponent": 6 + denom: 'bcna', + exponent: 6 } ], - "base": "ibc/0CB5D60E57FD521FA39D11E3E410144389010AC5EF5F292BC9BDD832FA2FDBF9", - "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" + base: + 'ibc/0CB5D60E57FD521FA39D11E3E410144389010AC5EF5F292BC9BDD832FA2FDBF9', + 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", - "ibc": { - "counterparty": { - "channel": "channel-10", - "denom": "ubcna", - "chain_name": "bitcanna" + coingecko_id: 'bitcanna', + ibc: { + counterparty: { + channel: 'channel-10', + denom: 'ubcna', + chain_name: 'bitcanna' }, - "chain": { - "channel": "channel-50" + chain: { + channel: 'channel-50' } } }, { - "description": "BitSong Native Token", - "denom_units": [ + description: 'BitSong Native Token', + denom_units: [ { - "denom": "ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B", - "exponent": 0, - "aliases": [ - "ubtsg" - ] + denom: + 'ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B', + exponent: 0, + aliases: ['ubtsg'] }, { - "denom": "btsg", - "exponent": 6 + denom: 'btsg', + exponent: 6 } ], - "base": "ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B", - "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" + base: + 'ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B', + 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", - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ubtsg", - "chain_name": "bitsong" + type_asset: 'sdk.coin', + coingecko_id: 'bitsong', + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ubtsg', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Adam Clay a BitSong Music FanToken", - "denom_units": [ + description: 'Adam Clay a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/FA6CFD7006CF117B671ABAC04A793F76E414A26A5C04EA53AE09640C6E31A647", - "exponent": 0, - "aliases": [ - "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" - ] + denom: + 'ibc/FA6CFD7006CF117B671ABAC04A793F76E414A26A5C04EA53AE09640C6E31A647', + exponent: 0, + aliases: ['ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09'] }, { - "denom": "clay", - "exponent": 6 + denom: 'clay', + exponent: 6 } ], - "base": "ibc/FA6CFD7006CF117B671ABAC04A793F76E414A26A5C04EA53AE09640C6E31A647", - "name": "Adam Clay FanToken", - "display": "clay", - "symbol": "CLAY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + base: + 'ibc/FA6CFD7006CF117B671ABAC04A793F76E414A26A5C04EA53AE09640C6E31A647', + name: 'Adam Clay FanToken', + display: 'clay', + symbol: 'CLAY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Nicola Fasano a BitSong Music FanToken", - "denom_units": [ + description: 'Nicola Fasano a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/E43D26D4E10EAC2EA3C84233CE745A7764E84C76D05BC5E2521E864374C72C05", - "exponent": 0, - "aliases": [ - "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" - ] + denom: + 'ibc/E43D26D4E10EAC2EA3C84233CE745A7764E84C76D05BC5E2521E864374C72C05', + exponent: 0, + aliases: ['ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7'] }, { - "denom": "fasano", - "exponent": 6 + denom: 'fasano', + exponent: 6 } ], - "base": "ibc/E43D26D4E10EAC2EA3C84233CE745A7764E84C76D05BC5E2521E864374C72C05", - "name": "Nicola Fasano Fantoken", - "display": "fasano", - "symbol": "FASANO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + base: + 'ibc/E43D26D4E10EAC2EA3C84233CE745A7764E84C76D05BC5E2521E864374C72C05', + name: 'Nicola Fasano Fantoken', + display: 'fasano', + symbol: 'FASANO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Delta 9 a BitSong Music FanToken", - "denom_units": [ + description: 'Delta 9 a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/E21E8AC479AC7A7ED6075AC67F6BE30A80035476E63A4BE62811AC8F996D9A9C", - "exponent": 0, - "aliases": [ - "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" - ] + denom: + 'ibc/E21E8AC479AC7A7ED6075AC67F6BE30A80035476E63A4BE62811AC8F996D9A9C', + exponent: 0, + aliases: ['ft575B10B0CEE2C164D9ED6A96313496F164A9607C'] }, { - "denom": "d9x", - "exponent": 6 + denom: 'd9x', + exponent: 6 } ], - "base": "ibc/E21E8AC479AC7A7ED6075AC67F6BE30A80035476E63A4BE62811AC8F996D9A9C", - "name": "Delta 9 Fantoken", - "display": "d9x", - "symbol": "D9X", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + base: + 'ibc/E21E8AC479AC7A7ED6075AC67F6BE30A80035476E63A4BE62811AC8F996D9A9C', + name: 'Delta 9 Fantoken', + display: 'd9x', + symbol: 'D9X', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft575B10B0CEE2C164D9ED6A96313496F164A9607C', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "FONTI a BitSong Music FanToken", - "denom_units": [ + description: 'FONTI a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/40F1DDC85C13E9B0ACE9142A369E13E205C82E3DB13B5926B6647BB3EA740AB8", - "exponent": 0, - "aliases": [ - "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" - ] + denom: + 'ibc/40F1DDC85C13E9B0ACE9142A369E13E205C82E3DB13B5926B6647BB3EA740AB8', + exponent: 0, + aliases: ['ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305'] }, { - "denom": "fonti", - "exponent": 6 + denom: 'fonti', + exponent: 6 } ], - "base": "ibc/40F1DDC85C13E9B0ACE9142A369E13E205C82E3DB13B5926B6647BB3EA740AB8", - "name": "FONTI Fantoken", - "display": "fonti", - "symbol": "FONTI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + base: + 'ibc/40F1DDC85C13E9B0ACE9142A369E13E205C82E3DB13B5926B6647BB3EA740AB8', + name: 'FONTI Fantoken', + display: 'fonti', + symbol: 'FONTI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "BlackJack a BitSong Music FanToken", - "denom_units": [ + description: 'BlackJack a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/7AA7E31096BE94321E240B1C107DBAB48BADBED2460F5BB0D49884F9881EEAFC", - "exponent": 0, - "aliases": [ - "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" - ] + denom: + 'ibc/7AA7E31096BE94321E240B1C107DBAB48BADBED2460F5BB0D49884F9881EEAFC', + exponent: 0, + aliases: ['ft52EEB0EE509AC546ED92EAC8591F731F213DDD16'] }, { - "denom": "bjks", - "exponent": 6 + denom: 'bjks', + exponent: 6 } ], - "base": "ibc/7AA7E31096BE94321E240B1C107DBAB48BADBED2460F5BB0D49884F9881EEAFC", - "name": "BlackJack Fantoken", - "display": "bjks", - "symbol": "BJKS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + base: + 'ibc/7AA7E31096BE94321E240B1C107DBAB48BADBED2460F5BB0D49884F9881EEAFC', + name: 'BlackJack Fantoken', + display: 'bjks', + symbol: 'BJKS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft52EEB0EE509AC546ED92EAC8591F731F213DDD16', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Rawanne a BitSong Music FanToken", - "denom_units": [ + description: 'Rawanne a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/B7DF1BF0322E000392E8EE2EA4AA66E77D73A275C08370086F01D659AD9CC669", - "exponent": 0, - "aliases": [ - "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" - ] + denom: + 'ibc/B7DF1BF0322E000392E8EE2EA4AA66E77D73A275C08370086F01D659AD9CC669', + exponent: 0, + aliases: ['ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A'] }, { - "denom": "rwne", - "exponent": 6 + denom: 'rwne', + exponent: 6 } ], - "base": "ibc/B7DF1BF0322E000392E8EE2EA4AA66E77D73A275C08370086F01D659AD9CC669", - "name": "Rawanne Fantoken", - "display": "rwne", - "symbol": "RWNE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + base: + 'ibc/B7DF1BF0322E000392E8EE2EA4AA66E77D73A275C08370086F01D659AD9CC669', + name: 'Rawanne Fantoken', + display: 'rwne', + symbol: 'RWNE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Enmoda a BitSong Music FanToken", - "denom_units": [ + description: 'Enmoda a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/ECCD9807D20166417567FD0ABE9ADDB20BD55EA8C27A994DF343D437B430E8B0", - "exponent": 0, - "aliases": [ - "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" - ] + denom: + 'ibc/ECCD9807D20166417567FD0ABE9ADDB20BD55EA8C27A994DF343D437B430E8B0', + exponent: 0, + aliases: ['ft85AE1716C5E39EA6D64BBD7898C3899A7B500626'] }, { - "denom": "enmoda", - "exponent": 6 + denom: 'enmoda', + exponent: 6 } ], - "base": "ibc/ECCD9807D20166417567FD0ABE9ADDB20BD55EA8C27A994DF343D437B430E8B0", - "name": "Enmoda Fantoken", - "display": "enmoda", - "symbol": "ENMODA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + base: + 'ibc/ECCD9807D20166417567FD0ABE9ADDB20BD55EA8C27A994DF343D437B430E8B0', + name: 'Enmoda Fantoken', + display: 'enmoda', + symbol: 'ENMODA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft85AE1716C5E39EA6D64BBD7898C3899A7B500626', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "404Deep Records a BitSong Music FanToken", - "denom_units": [ + description: '404Deep Records a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/4E2AB358B9691EBBFEBFC8AA72A8DE55351A5695C579F18AB2438B2B99E4DFB1", - "exponent": 0, - "aliases": [ - "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" - ] + denom: + 'ibc/4E2AB358B9691EBBFEBFC8AA72A8DE55351A5695C579F18AB2438B2B99E4DFB1', + exponent: 0, + aliases: ['ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A'] }, { - "denom": "404dr", - "exponent": 6 + denom: '404dr', + exponent: 6 } ], - "base": "ibc/4E2AB358B9691EBBFEBFC8AA72A8DE55351A5695C579F18AB2438B2B99E4DFB1", - "name": "404Deep Records Fantoken", - "display": "404dr", - "symbol": "404DR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + base: + 'ibc/4E2AB358B9691EBBFEBFC8AA72A8DE55351A5695C579F18AB2438B2B99E4DFB1', + name: '404Deep Records Fantoken', + display: '404dr', + symbol: '404DR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "N43 a BitSong Music FanToken", - "denom_units": [ + description: 'N43 a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/0678E1B0A5535B49F8DEDFE85E77C0FB733A04F81B53B580A176D57699889C0A", - "exponent": 0, - "aliases": [ - "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" - ] + denom: + 'ibc/0678E1B0A5535B49F8DEDFE85E77C0FB733A04F81B53B580A176D57699889C0A', + exponent: 0, + aliases: ['ft387C1C279D962ED80C09C1D592A92C4275FD7C5D'] }, { - "denom": "n43", - "exponent": 6 + denom: 'n43', + exponent: 6 } ], - "base": "ibc/0678E1B0A5535B49F8DEDFE85E77C0FB733A04F81B53B580A176D57699889C0A", - "name": "N43 Fantoken", - "display": "n43", - "symbol": "N43", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + base: + 'ibc/0678E1B0A5535B49F8DEDFE85E77C0FB733A04F81B53B580A176D57699889C0A', + name: 'N43 Fantoken', + display: 'n43', + symbol: 'N43', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft387C1C279D962ED80C09C1D592A92C4275FD7C5D', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Puro Lobo a BitSong Music FanToken", - "denom_units": [ + description: 'Puro Lobo a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/F413DA1C7902686B64FFB0094A6473FABDE421DC8A4B72082535599143E66AAE", - "exponent": 0, - "aliases": [ - "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" - ] + denom: + 'ibc/F413DA1C7902686B64FFB0094A6473FABDE421DC8A4B72082535599143E66AAE', + exponent: 0, + aliases: ['ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB'] }, { - "denom": "lobo", - "exponent": 6 + denom: 'lobo', + exponent: 6 } ], - "base": "ibc/F413DA1C7902686B64FFB0094A6473FABDE421DC8A4B72082535599143E66AAE", - "name": "Puro Lobo Fantoken", - "display": "lobo", - "symbol": "LOBO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + base: + 'ibc/F413DA1C7902686B64FFB0094A6473FABDE421DC8A4B72082535599143E66AAE', + name: 'Puro Lobo Fantoken', + display: 'lobo', + symbol: 'LOBO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Vibranium a BitSong Music FanToken", - "denom_units": [ + description: 'Vibranium a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/1507C239F92834EEB80B8BD2508E98D5FA24F4272AD6A6E214255C7E445C1025", - "exponent": 0, - "aliases": [ - "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" - ] + denom: + 'ibc/1507C239F92834EEB80B8BD2508E98D5FA24F4272AD6A6E214255C7E445C1025', + exponent: 0, + aliases: ['ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B'] }, { - "denom": "vibra", - "exponent": 6 + denom: 'vibra', + exponent: 6 } ], - "base": "ibc/1507C239F92834EEB80B8BD2508E98D5FA24F4272AD6A6E214255C7E445C1025", - "name": "Vibranium Fantoken", - "display": "vibra", - "symbol": "VIBRA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + base: + 'ibc/1507C239F92834EEB80B8BD2508E98D5FA24F4272AD6A6E214255C7E445C1025', + name: 'Vibranium Fantoken', + display: 'vibra', + symbol: 'VIBRA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Karina a BitSong Music FanToken", - "denom_units": [ + description: 'Karina a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/5DE20120602E89CB89E4948521092DAB1D8B75E70DE77DEC35B3D527CAF445E6", - "exponent": 0, - "aliases": [ - "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" - ] + denom: + 'ibc/5DE20120602E89CB89E4948521092DAB1D8B75E70DE77DEC35B3D527CAF445E6', + exponent: 0, + aliases: ['ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE'] }, { - "denom": "karina", - "exponent": 6 + denom: 'karina', + exponent: 6 } ], - "base": "ibc/5DE20120602E89CB89E4948521092DAB1D8B75E70DE77DEC35B3D527CAF445E6", - "name": "Karina Fantoken", - "display": "karina", - "symbol": "KARINA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + base: + 'ibc/5DE20120602E89CB89E4948521092DAB1D8B75E70DE77DEC35B3D527CAF445E6', + name: 'Karina Fantoken', + display: 'karina', + symbol: 'KARINA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Luca Testa a BitSong Music FanToken", - "denom_units": [ + description: 'Luca Testa a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/915E8D0A4C82F7D910810C3956530FDA3BBB2161D406390146D0F357A3922B97", - "exponent": 0, - "aliases": [ - "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" - ] + denom: + 'ibc/915E8D0A4C82F7D910810C3956530FDA3BBB2161D406390146D0F357A3922B97', + exponent: 0, + aliases: ['ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12'] }, { - "denom": "testa", - "exponent": 6 + denom: 'testa', + exponent: 6 } ], - "base": "ibc/915E8D0A4C82F7D910810C3956530FDA3BBB2161D406390146D0F357A3922B97", - "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/915E8D0A4C82F7D910810C3956530FDA3BBB2161D406390146D0F357A3922B97', + name: 'Luca Testa Fantoken', + display: 'testa', + symbol: 'TESTA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "Carolina Marquez a BitSong Music FanToken", - "denom_units": [ + description: 'Carolina Marquez a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/75A06513054A2C0CB4555918E789357BD36634FF6EE4678FD0B803557DBC666A", - "exponent": 0, - "aliases": [ - "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" - ] + denom: + 'ibc/75A06513054A2C0CB4555918E789357BD36634FF6EE4678FD0B803557DBC666A', + exponent: 0, + aliases: ['ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3'] }, { - "denom": "cmqz", - "exponent": 6 + denom: 'cmqz', + exponent: 6 } ], - "base": "ibc/75A06513054A2C0CB4555918E789357BD36634FF6EE4678FD0B803557DBC666A", - "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/75A06513054A2C0CB4555918E789357BD36634FF6EE4678FD0B803557DBC666A', + name: 'Carolina Marquez Fantoken', + display: 'cmqz', + symbol: 'CMQZ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png' }, - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-17" + chain: { + channel: 'channel-17' } } }, { - "description": "The native token of Chihuahua Chain", - "denom_units": [ + description: 'The native token of Chihuahua Chain', + denom_units: [ { - "denom": "ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241", - "exponent": 0, - "aliases": [ - "uhuahua" - ] + denom: + 'ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241', + exponent: 0, + aliases: ['uhuahua'] }, { - "denom": "huahua", - "exponent": 6 + denom: 'huahua', + exponent: 6 } ], - "base": "ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241", - "name": "Chihuahua", - "display": "huahua", - "symbol": "HUAHUA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png" + base: + 'ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png' }, - "coingecko_id": "chihuahua-token", - "ibc": { - "counterparty": { - "channel": "channel-11", - "denom": "uhuahua", - "chain_name": "chihuahua" + coingecko_id: 'chihuahua-token', + ibc: { + counterparty: { + channel: 'channel-11', + denom: 'uhuahua', + chain_name: 'chihuahua' }, - "chain": { - "channel": "channel-28" + chain: { + channel: 'channel-28' } } }, { - "description": "Native Token of Comdex Protocol", - "denom_units": [ + description: 'Native Token of Comdex Protocol', + denom_units: [ { - "denom": "ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0", - "exponent": 0, - "aliases": [ - "ucmdx" - ] + denom: + 'ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0', + exponent: 0, + aliases: ['ucmdx'] }, { - "denom": "cmdx", - "exponent": 6 + denom: 'cmdx', + exponent: 6 } ], - "base": "ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0", - "name": "Comdex", - "display": "cmdx", - "symbol": "CMDX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png" + base: + 'ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png' }, - "coingecko_id": "comdex", - "ibc": { - "counterparty": { - "channel": "channel-18", - "denom": "ucmdx", - "chain_name": "comdex" + coingecko_id: 'comdex', + ibc: { + counterparty: { + channel: 'channel-18', + denom: 'ucmdx', + chain_name: 'comdex' }, - "chain": { - "channel": "channel-36" + chain: { + channel: 'channel-36' } } }, { - "description": "The native staking and governance token of the Cosmos Hub.", - "denom_units": [ + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "exponent": 0, - "aliases": [ - "uatom" - ] + denom: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + exponent: 0, + aliases: ['uatom'] }, { - "denom": "atom", - "exponent": 6 + denom: 'atom', + exponent: 6 } ], - "base": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "name": "Cosmos", - "display": "atom", - "symbol": "ATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + base: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, - "coingecko_id": "cosmos", - "ibc": { - "counterparty": { - "channel": "channel-207", - "denom": "uatom", - "chain_name": "cosmoshub" + coingecko_id: 'cosmos', + ibc: { + counterparty: { + channel: 'channel-207', + denom: 'uatom', + chain_name: 'cosmoshub' }, - "chain": { - "channel": "channel-1" + chain: { + channel: 'channel-1' } } }, { - "description": "Native token of Dig Chain", - "denom_units": [ + description: 'Native token of Dig Chain', + denom_units: [ { - "denom": "ibc/6842C591DC4588411A565C9FF650FB15A17DFE3F0A43201E8141E4D14B8D171A", - "exponent": 0, - "aliases": [ - "udig" - ] + denom: + 'ibc/6842C591DC4588411A565C9FF650FB15A17DFE3F0A43201E8141E4D14B8D171A', + exponent: 0, + aliases: ['udig'] }, { - "denom": "dig", - "exponent": 6 + denom: 'dig', + exponent: 6 } ], - "base": "ibc/6842C591DC4588411A565C9FF650FB15A17DFE3F0A43201E8141E4D14B8D171A", - "name": "Dig Chain", - "display": "dig", - "symbol": "DIG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + base: + 'ibc/6842C591DC4588411A565C9FF650FB15A17DFE3F0A43201E8141E4D14B8D171A', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' }, - "coingecko_id": "dig-chain", - "ibc": { - "counterparty": { - "channel": "channel-2", - "denom": "udig", - "chain_name": "dig" + coingecko_id: 'dig-chain', + ibc: { + counterparty: { + channel: 'channel-2', + denom: 'udig', + chain_name: 'dig' }, - "chain": { - "channel": "channel-37" + chain: { + channel: 'channel-37' } } }, { - "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": [ + 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/52423136339C1CE8C91F6A586DFE41591BDDD4665AE526DFFA8421F9ACF95196", - "exponent": 0, - "aliases": [ - "ungm" - ] + denom: + 'ibc/52423136339C1CE8C91F6A586DFE41591BDDD4665AE526DFFA8421F9ACF95196', + exponent: 0, + aliases: ['ungm'] }, { - "denom": "ngm", - "exponent": 6 + denom: 'ngm', + exponent: 6 } ], - "base": "ibc/52423136339C1CE8C91F6A586DFE41591BDDD4665AE526DFFA8421F9ACF95196", - "name": "e-Money", - "display": "ngm", - "symbol": "NGM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png" + base: + 'ibc/52423136339C1CE8C91F6A586DFE41591BDDD4665AE526DFFA8421F9ACF95196', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png' }, - "coingecko_id": "e-money", - "ibc": { - "counterparty": { - "channel": "channel-15", - "denom": "ungm", - "chain_name": "emoney" + coingecko_id: 'e-money', + ibc: { + counterparty: { + channel: 'channel-15', + denom: 'ungm', + chain_name: 'emoney' }, - "chain": { - "channel": "channel-9" + chain: { + channel: 'channel-9' } } }, { - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", - "denom_units": [ + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ { - "denom": "ibc/B9F7C1E4CE9219B5AF06C47B18661DBD49CCD7A6C18FF789E2FB62BB365CFF9C", - "exponent": 0, - "aliases": [ - "eeur" - ] + denom: + 'ibc/B9F7C1E4CE9219B5AF06C47B18661DBD49CCD7A6C18FF789E2FB62BB365CFF9C', + exponent: 0, + aliases: ['eeur'] }, { - "denom": "EUR", - "exponent": 6 + denom: 'EUR', + exponent: 6 } ], - "base": "ibc/B9F7C1E4CE9219B5AF06C47B18661DBD49CCD7A6C18FF789E2FB62BB365CFF9C", - "name": "e-Money EUR", - "display": "eur", - "symbol": "EEUR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png" + base: + 'ibc/B9F7C1E4CE9219B5AF06C47B18661DBD49CCD7A6C18FF789E2FB62BB365CFF9C', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png' }, - "coingecko_id": "e-money-eur", - "ibc": { - "counterparty": { - "channel": "channel-15", - "denom": "eeur", - "chain_name": "emoney" + coingecko_id: 'e-money-eur', + ibc: { + counterparty: { + channel: 'channel-15', + denom: 'eeur', + chain_name: 'emoney' }, - "chain": { - "channel": "channel-9" + chain: { + channel: 'channel-9' } } }, { - "description": "The native token of Osmosis", - "denom_units": [ + description: 'The native token of Osmosis', + denom_units: [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "exponent": 0, - "aliases": [ - "uosmo" - ] + denom: + 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + exponent: 0, + aliases: ['uosmo'] }, { - "denom": "osmo", - "exponent": 6, - "aliases": [] + denom: 'osmo', + exponent: 6, + aliases: [] } ], - "base": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "name": "Osmosis", - "display": "osmo", - "symbol": "OSMO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg" + 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" - ], - "ibc": { - "counterparty": { - "channel": "channel-42", - "denom": "uosmo", - "chain_name": "osmosis" + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + ibc: { + counterparty: { + channel: 'channel-42', + denom: 'uosmo', + chain_name: 'osmosis' }, - "chain": { - "channel": "channel-0" + chain: { + channel: 'channel-0' } } }, { - "denom_units": [ + denom_units: [ { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "exponent": 0, - "aliases": [ - "uion" - ] + denom: + 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + exponent: 0, + aliases: ['uion'] }, { - "denom": "ion", - "exponent": 6 + 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" + 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" - ], - "ibc": { - "counterparty": { - "channel": "channel-42", - "denom": "uion", - "chain_name": "osmosis" + coingecko_id: 'ion', + keywords: ['memecoin'], + ibc: { + counterparty: { + channel: 'channel-42', + denom: 'uion', + chain_name: 'osmosis' }, - "chain": { - "channel": "channel-0" + chain: { + channel: 'channel-0' } } }, { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ { - "denom": "ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898", - "exponent": 0, - "aliases": [ - "uxprt" - ] + denom: + 'ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898', + exponent: 0, + aliases: ['uxprt'] }, { - "denom": "xprt", - "exponent": 6 + denom: 'xprt', + exponent: 6 } ], - "base": "ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898", - "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" + base: + 'ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898', + 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", - "ibc": { - "counterparty": { - "channel": "channel-37", - "denom": "uxprt", - "chain_name": "persistence" + coingecko_id: 'persistence', + ibc: { + counterparty: { + channel: 'channel-37', + denom: 'uxprt', + chain_name: 'persistence' }, - "chain": { - "channel": "channel-33" + chain: { + channel: 'channel-33' } } }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "denom_units": [ + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ { - "denom": "ibc/0E13238C0508440A981BD9E876E89E0C0CCA70E2FE21930B0D4F2633673561AC", - "exponent": 0, - "aliases": [ - "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + denom: + 'ibc/0E13238C0508440A981BD9E876E89E0C0CCA70E2FE21930B0D4F2633673561AC', + exponent: 0, + aliases: [ + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' ] }, { - "denom": "pstake", - "exponent": 18 + denom: 'pstake', + exponent: 18 } ], - "base": "ibc/0E13238C0508440A981BD9E876E89E0C0CCA70E2FE21930B0D4F2633673561AC", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", - "ibc": { - "counterparty": { - "channel": "channel-37", - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "chain_name": "persistence" + base: + 'ibc/0E13238C0508440A981BD9E876E89E0C0CCA70E2FE21930B0D4F2633673561AC', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + ibc: { + counterparty: { + channel: 'channel-37', + denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + chain_name: 'persistence' }, - "chain": { - "channel": "channel-33" + chain: { + channel: 'channel-33' } }, - "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" + 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' }, - "coingecko_id": "pstake-finance" + coingecko_id: 'pstake-finance' }, { - "description": "The native token of Secret Network", - "denom_units": [ + description: 'The native token of Secret Network', + denom_units: [ { - "denom": "ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD", - "exponent": 0, - "aliases": [ - "uscrt" - ] + denom: + 'ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD', + exponent: 0, + aliases: ['uscrt'] }, { - "denom": "scrt", - "exponent": 6 + denom: 'scrt', + exponent: 6 } ], - "base": "ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD", - "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" + base: + 'ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD', + 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", - "ibc": { - "counterparty": { - "channel": "channel-8", - "denom": "uscrt", - "chain_name": "secretnetwork" + coingecko_id: 'secret', + ibc: { + counterparty: { + channel: 'channel-8', + denom: 'uscrt', + chain_name: 'secretnetwork' }, - "chain": { - "channel": "channel-48" + chain: { + channel: 'channel-48' } } }, { - "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": [ + 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/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D", - "exponent": 18, - "aliases": [ - "rowan" - ] + denom: + 'ibc/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D', + exponent: 18, + aliases: ['rowan'] } ], - "base": "ibc/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D", - "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" + base: + 'ibc/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D', + 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", - "ibc": { - "counterparty": { - "channel": "channel-14", - "denom": "rowan", - "chain_name": "sifchain" + coingecko_id: 'sifchain', + ibc: { + counterparty: { + channel: 'channel-14', + denom: 'rowan', + chain_name: 'sifchain' }, - "chain": { - "channel": "channel-5" + chain: { + channel: 'channel-5' } } }, { - "description": "The native token of Stargaze", - "denom_units": [ + description: 'The native token of Stargaze', + denom_units: [ { - "denom": "ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885", - "exponent": 0, - "aliases": [ - "ustars" - ] + denom: + 'ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885', + exponent: 0, + aliases: ['ustars'] }, { - "denom": "stars", - "exponent": 6 + denom: 'stars', + exponent: 6 } ], - "base": "ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885", - "name": "Stargaze", - "display": "stars", - "symbol": "STARS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + base: + 'ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' }, - "coingecko_id": "stargaze", - "ibc": { - "counterparty": { - "channel": "channel-5", - "denom": "ustars", - "chain_name": "stargaze" + coingecko_id: 'stargaze', + ibc: { + counterparty: { + channel: 'channel-5', + denom: 'ustars', + chain_name: 'stargaze' }, - "chain": { - "channel": "channel-20" + chain: { + channel: 'channel-20' } } }, { - "description": "The native staking token of Terra Classic.", - "denom_units": [ + description: 'The native staking token of Terra Classic.', + denom_units: [ { - "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", - "exponent": 0, - "aliases": [ - "uluna" - ] + denom: + 'ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75', + exponent: 0, + aliases: ['uluna'] }, { - "denom": "mluna", - "exponent": 3, - "aliases": [ - "milliluna" - ] + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] }, { - "denom": "luna", - "exponent": 6, - "aliases": [ - "lunc" - ] + denom: 'luna', + exponent: 6, + aliases: ['lunc'] } ], - "base": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", - "name": "Luna Classic", - "display": "luna", - "symbol": "LUNC", - "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" + base: + 'ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + 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' }, - "coingecko_id": "terra-luna", - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uluna", - "chain_name": "terra" + coingecko_id: 'terra-luna', + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uluna', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The USD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/2DA4136457810BCB9DAAB620CA67BC342B17C3C70151CA70490A170DF7C9CB27", - "exponent": 0, - "aliases": [ - "uusd" - ] + denom: + 'ibc/2DA4136457810BCB9DAAB620CA67BC342B17C3C70151CA70490A170DF7C9CB27', + exponent: 0, + aliases: ['uusd'] }, { - "denom": "musd", - "exponent": 3, - "aliases": [ - "milliusd" - ] + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] }, { - "denom": "ust", - "exponent": 6, - "aliases": [ - "ustc" - ] + denom: 'ust', + exponent: 6, + aliases: ['ustc'] } ], - "base": "ibc/2DA4136457810BCB9DAAB620CA67BC342B17C3C70151CA70490A170DF7C9CB27", - "name": "TerraClassicUSD", - "display": "ust", - "symbol": "USTC", - "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" + base: + 'ibc/2DA4136457810BCB9DAAB620CA67BC342B17C3C70151CA70490A170DF7C9CB27', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + 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' }, - "coingecko_id": "terrausd", - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uusd", - "chain_name": "terra" + coingecko_id: 'terrausd', + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uusd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The KRW stablecoin of Terra Classic.", - "denom_units": [ + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/A3261799F1B8B81FEBF1615EA5034DE825B5F9608F61A2D93A5DE41A38DE53AF", - "exponent": 0, - "aliases": [ - "ukrw" - ] + denom: + 'ibc/A3261799F1B8B81FEBF1615EA5034DE825B5F9608F61A2D93A5DE41A38DE53AF', + exponent: 0, + aliases: ['ukrw'] }, { - "denom": "mkrw", - "exponent": 3, - "aliases": [ - "millikrw" - ] + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] }, { - "denom": "krt", - "exponent": 6, - "aliases": [ - "krtc" - ] + denom: 'krt', + exponent: 6, + aliases: ['krtc'] } ], - "base": "ibc/A3261799F1B8B81FEBF1615EA5034DE825B5F9608F61A2D93A5DE41A38DE53AF", - "name": "TerraClassicKRW", - "display": "krt", - "symbol": "KRTC", - "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" + base: + 'ibc/A3261799F1B8B81FEBF1615EA5034DE825B5F9608F61A2D93A5DE41A38DE53AF', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + 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' }, - "coingecko_id": "terrakrw", - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ukrw", - "chain_name": "terra" + coingecko_id: 'terrakrw', + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ukrw', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The AUD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The AUD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/62A380754699538433254576CC3FB71A435606F23BD38DCADA38D6472217BE66", - "exponent": 0, - "aliases": [ - "uaud" - ] + denom: + 'ibc/62A380754699538433254576CC3FB71A435606F23BD38DCADA38D6472217BE66', + exponent: 0, + aliases: ['uaud'] }, { - "denom": "maud", - "exponent": 3, - "aliases": [ - "milliaud" - ] + denom: 'maud', + exponent: 3, + aliases: ['milliaud'] }, { - "denom": "aut", - "exponent": 6, - "aliases": [ - "autc" - ] + denom: 'aut', + exponent: 6, + aliases: ['autc'] } ], - "base": "ibc/62A380754699538433254576CC3FB71A435606F23BD38DCADA38D6472217BE66", - "display": "aut", - "name": "TerraClassicAUD", - "symbol": "AUTC", - "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" + base: + 'ibc/62A380754699538433254576CC3FB71A435606F23BD38DCADA38D6472217BE66', + display: 'aut', + name: 'TerraClassicAUD', + symbol: 'AUTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uaud", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uaud', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The CAD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CAD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/0676F47C75829EF870526B0CD767F65EB3AE6D95768DAB43F472B4F526380375", - "exponent": 0, - "aliases": [ - "ucad" - ] + denom: + 'ibc/0676F47C75829EF870526B0CD767F65EB3AE6D95768DAB43F472B4F526380375', + exponent: 0, + aliases: ['ucad'] }, { - "denom": "mcad", - "exponent": 3, - "aliases": [ - "millicad" - ] + denom: 'mcad', + exponent: 3, + aliases: ['millicad'] }, { - "denom": "cat", - "exponent": 6, - "aliases": [ - "catc" - ] + denom: 'cat', + exponent: 6, + aliases: ['catc'] } ], - "base": "ibc/0676F47C75829EF870526B0CD767F65EB3AE6D95768DAB43F472B4F526380375", - "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" + base: + 'ibc/0676F47C75829EF870526B0CD767F65EB3AE6D95768DAB43F472B4F526380375', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ucad", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ucad', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The CHF stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CHF stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/16B0A06D4463D3F287873D63B89EEC1647B22D10CFD8DC906154C6E55FE7400F", - "exponent": 0, - "aliases": [ - "uchf" - ] + denom: + 'ibc/16B0A06D4463D3F287873D63B89EEC1647B22D10CFD8DC906154C6E55FE7400F', + exponent: 0, + aliases: ['uchf'] }, { - "denom": "mchf", - "exponent": 3, - "aliases": [ - "millichf" - ] + denom: 'mchf', + exponent: 3, + aliases: ['millichf'] }, { - "denom": "cht", - "exponent": 6, - "aliases": [ - "chtc" - ] + denom: 'cht', + exponent: 6, + aliases: ['chtc'] } ], - "base": "ibc/16B0A06D4463D3F287873D63B89EEC1647B22D10CFD8DC906154C6E55FE7400F", - "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" + base: + 'ibc/16B0A06D4463D3F287873D63B89EEC1647B22D10CFD8DC906154C6E55FE7400F', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uchf", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uchf', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The CNY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CNY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/843ADFB199626AB0465F212029200EB12F8C7AF41487438D75150F275DEA5EB8", - "exponent": 0, - "aliases": [ - "ucny" - ] + denom: + 'ibc/843ADFB199626AB0465F212029200EB12F8C7AF41487438D75150F275DEA5EB8', + exponent: 0, + aliases: ['ucny'] }, { - "denom": "mcny", - "exponent": 3, - "aliases": [ - "millicny" - ] + denom: 'mcny', + exponent: 3, + aliases: ['millicny'] }, { - "denom": "cnt", - "exponent": 6, - "aliases": [ - "cntc" - ] + denom: 'cnt', + exponent: 6, + aliases: ['cntc'] } ], - "base": "ibc/843ADFB199626AB0465F212029200EB12F8C7AF41487438D75150F275DEA5EB8", - "display": "cnt", - "name": "TerraClassicCNY", - "symbol": "CNTC", - "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" + base: + 'ibc/843ADFB199626AB0465F212029200EB12F8C7AF41487438D75150F275DEA5EB8', + display: 'cnt', + name: 'TerraClassicCNY', + symbol: 'CNTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ucny", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ucny', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The DKK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The DKK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/C6B5D5AE64E3054916153CDF02467638BDEE5B55777180E7FB6365F50CA4477C", - "exponent": 0, - "aliases": [ - "udkk" - ] + denom: + 'ibc/C6B5D5AE64E3054916153CDF02467638BDEE5B55777180E7FB6365F50CA4477C', + exponent: 0, + aliases: ['udkk'] }, { - "denom": "mdkk", - "exponent": 3, - "aliases": [ - "millidkk" - ] + denom: 'mdkk', + exponent: 3, + aliases: ['millidkk'] }, { - "denom": "dkt", - "exponent": 6, - "aliases": [ - "dktc" - ] + denom: 'dkt', + exponent: 6, + aliases: ['dktc'] } ], - "base": "ibc/C6B5D5AE64E3054916153CDF02467638BDEE5B55777180E7FB6365F50CA4477C", - "display": "dkt", - "name": "TerraClassicDKK", - "symbol": "DKTC", - "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" + base: + 'ibc/C6B5D5AE64E3054916153CDF02467638BDEE5B55777180E7FB6365F50CA4477C', + display: 'dkt', + name: 'TerraClassicDKK', + symbol: 'DKTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "udkk", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'udkk', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The EUR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The EUR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/FC7C3449D9D3497373E63A57ABD417685C4E2D000D11A34EBF89F2F00780D6FE", - "exponent": 0, - "aliases": [ - "ueur" - ] + denom: + 'ibc/FC7C3449D9D3497373E63A57ABD417685C4E2D000D11A34EBF89F2F00780D6FE', + exponent: 0, + aliases: ['ueur'] }, { - "denom": "meur", - "exponent": 3, - "aliases": [ - "millieur" - ] + denom: 'meur', + exponent: 3, + aliases: ['millieur'] }, { - "denom": "eut", - "exponent": 6, - "aliases": [ - "eutc" - ] + denom: 'eut', + exponent: 6, + aliases: ['eutc'] } ], - "base": "ibc/FC7C3449D9D3497373E63A57ABD417685C4E2D000D11A34EBF89F2F00780D6FE", - "display": "eut", - "name": "TerraClassicEUR", - "symbol": "EUTC", - "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" + base: + 'ibc/FC7C3449D9D3497373E63A57ABD417685C4E2D000D11A34EBF89F2F00780D6FE', + display: 'eut', + name: 'TerraClassicEUR', + symbol: 'EUTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ueur", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ueur', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The GBP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The GBP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/DD149BDA76BA04A2CB206F0BEF3B56EBE3B7DE6BB4CB833F47257D1497E7BC99", - "exponent": 0, - "aliases": [ - "ugbp" - ] + denom: + 'ibc/DD149BDA76BA04A2CB206F0BEF3B56EBE3B7DE6BB4CB833F47257D1497E7BC99', + exponent: 0, + aliases: ['ugbp'] }, { - "denom": "mgbp", - "exponent": 3, - "aliases": [ - "milligbp" - ] + denom: 'mgbp', + exponent: 3, + aliases: ['milligbp'] }, { - "denom": "gbt", - "exponent": 6, - "aliases": [ - "gbtc" - ] + denom: 'gbt', + exponent: 6, + aliases: ['gbtc'] } ], - "base": "ibc/DD149BDA76BA04A2CB206F0BEF3B56EBE3B7DE6BB4CB833F47257D1497E7BC99", - "display": "gbt", - "name": "TerraClassicGBP", - "symbol": "GBTC", - "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" + base: + 'ibc/DD149BDA76BA04A2CB206F0BEF3B56EBE3B7DE6BB4CB833F47257D1497E7BC99', + display: 'gbt', + name: 'TerraClassicGBP', + symbol: 'GBTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ugbp", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ugbp', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The HKD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The HKD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/ED8C2407BEA9646B6AB686E55BAE3C607EFA40154CED226418A331F80890F258", - "exponent": 0, - "aliases": [ - "uhkd" - ] + denom: + 'ibc/ED8C2407BEA9646B6AB686E55BAE3C607EFA40154CED226418A331F80890F258', + exponent: 0, + aliases: ['uhkd'] }, { - "denom": "mhkd", - "exponent": 3, - "aliases": [ - "millihkd" - ] + denom: 'mhkd', + exponent: 3, + aliases: ['millihkd'] }, { - "denom": "hkt", - "exponent": 6, - "aliases": [ - "hktc" - ] + denom: 'hkt', + exponent: 6, + aliases: ['hktc'] } ], - "base": "ibc/ED8C2407BEA9646B6AB686E55BAE3C607EFA40154CED226418A331F80890F258", - "display": "hkt", - "name": "TerraClassicHKD", - "symbol": "HKTC", - "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" + base: + 'ibc/ED8C2407BEA9646B6AB686E55BAE3C607EFA40154CED226418A331F80890F258', + display: 'hkt', + name: 'TerraClassicHKD', + symbol: 'HKTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uhkd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uhkd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The IDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The IDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/C8648B16B2259BE3C6EB518333D9D223DD9B493ADB867D160F85725D2B0CA051", - "exponent": 0, - "aliases": [ - "uidr" - ] + denom: + 'ibc/C8648B16B2259BE3C6EB518333D9D223DD9B493ADB867D160F85725D2B0CA051', + exponent: 0, + aliases: ['uidr'] }, { - "denom": "midr", - "exponent": 3, - "aliases": [ - "milliidr" - ] + denom: 'midr', + exponent: 3, + aliases: ['milliidr'] }, { - "denom": "idt", - "exponent": 6, - "aliases": [ - "idtc" - ] + denom: 'idt', + exponent: 6, + aliases: ['idtc'] } ], - "base": "ibc/C8648B16B2259BE3C6EB518333D9D223DD9B493ADB867D160F85725D2B0CA051", - "display": "idt", - "name": "TerraClassicIDR", - "symbol": "IDTC", - "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" + base: + 'ibc/C8648B16B2259BE3C6EB518333D9D223DD9B493ADB867D160F85725D2B0CA051', + display: 'idt', + name: 'TerraClassicIDR', + symbol: 'IDTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uidr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uidr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The INR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The INR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/09F936980055EE26F23EB052E4D64DE147A54D69153BFAA5E419ECC3A6A1677B", - "exponent": 0, - "aliases": [ - "uinr" - ] + denom: + 'ibc/09F936980055EE26F23EB052E4D64DE147A54D69153BFAA5E419ECC3A6A1677B', + exponent: 0, + aliases: ['uinr'] }, { - "denom": "minr", - "exponent": 3, - "aliases": [ - "milliinr" - ] + denom: 'minr', + exponent: 3, + aliases: ['milliinr'] }, { - "denom": "int", - "exponent": 6, - "aliases": [ - "intc" - ] + denom: 'int', + exponent: 6, + aliases: ['intc'] } ], - "base": "ibc/09F936980055EE26F23EB052E4D64DE147A54D69153BFAA5E419ECC3A6A1677B", - "display": "int", - "name": "TerraClassicINR", - "symbol": "INTC", - "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" + base: + 'ibc/09F936980055EE26F23EB052E4D64DE147A54D69153BFAA5E419ECC3A6A1677B', + display: 'int', + name: 'TerraClassicINR', + symbol: 'INTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uinr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uinr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The JPY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The JPY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/AF32FDEE8F709F5E3182ADCD852ECFF463A6AE4E172F8E53E9F422548F3B999F", - "exponent": 0, - "aliases": [ - "ujpy" - ] + denom: + 'ibc/AF32FDEE8F709F5E3182ADCD852ECFF463A6AE4E172F8E53E9F422548F3B999F', + exponent: 0, + aliases: ['ujpy'] }, { - "denom": "mjpy", - "exponent": 3, - "aliases": [ - "millijpy" - ] + denom: 'mjpy', + exponent: 3, + aliases: ['millijpy'] }, { - "denom": "jpt", - "exponent": 6, - "aliases": [ - "jptc" - ] + denom: 'jpt', + exponent: 6, + aliases: ['jptc'] } ], - "base": "ibc/AF32FDEE8F709F5E3182ADCD852ECFF463A6AE4E172F8E53E9F422548F3B999F", - "display": "jpt", - "name": "TerraClassicJPY", - "symbol": "JPTC", - "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" + base: + 'ibc/AF32FDEE8F709F5E3182ADCD852ECFF463A6AE4E172F8E53E9F422548F3B999F', + display: 'jpt', + name: 'TerraClassicJPY', + symbol: 'JPTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "ujpy", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'ujpy', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The MNT stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MNT stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/47ACFDEB3CF7A49EF0738F52C2E0EB79AAF9AC3321CA2A7A2BD5F09AB7B33D93", - "exponent": 0, - "aliases": [ - "umnt" - ] + denom: + 'ibc/47ACFDEB3CF7A49EF0738F52C2E0EB79AAF9AC3321CA2A7A2BD5F09AB7B33D93', + exponent: 0, + aliases: ['umnt'] }, { - "denom": "mmnt", - "exponent": 3, - "aliases": [ - "millimnt" - ] + denom: 'mmnt', + exponent: 3, + aliases: ['millimnt'] }, { - "denom": "mnt", - "exponent": 6, - "aliases": [ - "mntc" - ] + denom: 'mnt', + exponent: 6, + aliases: ['mntc'] } ], - "base": "ibc/47ACFDEB3CF7A49EF0738F52C2E0EB79AAF9AC3321CA2A7A2BD5F09AB7B33D93", - "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" + base: + 'ibc/47ACFDEB3CF7A49EF0738F52C2E0EB79AAF9AC3321CA2A7A2BD5F09AB7B33D93', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "umnt", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'umnt', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The MYR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MYR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/FDE195C15483F903D6F18F342AB5E7651E881626E2F252162F95E5ADE27059B2", - "exponent": 0, - "aliases": [ - "umyr" - ] + denom: + 'ibc/FDE195C15483F903D6F18F342AB5E7651E881626E2F252162F95E5ADE27059B2', + exponent: 0, + aliases: ['umyr'] }, { - "denom": "mmyr", - "exponent": 3, - "aliases": [ - "millimyr" - ] + denom: 'mmyr', + exponent: 3, + aliases: ['millimyr'] }, { - "denom": "myt", - "exponent": 6, - "aliases": [ - "mytc" - ] + denom: 'myt', + exponent: 6, + aliases: ['mytc'] } ], - "base": "ibc/FDE195C15483F903D6F18F342AB5E7651E881626E2F252162F95E5ADE27059B2", - "display": "myt", - "name": "TerraClassicMYR", - "symbol": "MYTC", - "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" + base: + 'ibc/FDE195C15483F903D6F18F342AB5E7651E881626E2F252162F95E5ADE27059B2', + display: 'myt', + name: 'TerraClassicMYR', + symbol: 'MYTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "umyr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'umyr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The NOK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The NOK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/4573409F701BCC5A0E81A97B35A51790397ACC8DDA538FDF0B296044C428C634", - "exponent": 0, - "aliases": [ - "unok" - ] + denom: + 'ibc/4573409F701BCC5A0E81A97B35A51790397ACC8DDA538FDF0B296044C428C634', + exponent: 0, + aliases: ['unok'] }, { - "denom": "mnok", - "exponent": 3, - "aliases": [ - "millinok" - ] + denom: 'mnok', + exponent: 3, + aliases: ['millinok'] }, { - "denom": "not", - "exponent": 6, - "aliases": [ - "notc" - ] + denom: 'not', + exponent: 6, + aliases: ['notc'] } ], - "base": "ibc/4573409F701BCC5A0E81A97B35A51790397ACC8DDA538FDF0B296044C428C634", - "display": "not", - "name": "TerraClassicNOK", - "symbol": "NOTC", - "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" + base: + 'ibc/4573409F701BCC5A0E81A97B35A51790397ACC8DDA538FDF0B296044C428C634', + display: 'not', + name: 'TerraClassicNOK', + symbol: 'NOTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "unok", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'unok', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The PHP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The PHP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/ED4DB32EC38308E0FDC5EC22732850781003B90D9269E83494962DA738308A3E", - "exponent": 0, - "aliases": [ - "uphp" - ] + denom: + 'ibc/ED4DB32EC38308E0FDC5EC22732850781003B90D9269E83494962DA738308A3E', + exponent: 0, + aliases: ['uphp'] }, { - "denom": "mphp", - "exponent": 3, - "aliases": [ - "milliphp" - ] + denom: 'mphp', + exponent: 3, + aliases: ['milliphp'] }, { - "denom": "pht", - "exponent": 6, - "aliases": [ - "phtc" - ] + denom: 'pht', + exponent: 6, + aliases: ['phtc'] } ], - "base": "ibc/ED4DB32EC38308E0FDC5EC22732850781003B90D9269E83494962DA738308A3E", - "display": "pht", - "name": "TerraClassicPHP", - "symbol": "PHTC", - "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" + base: + 'ibc/ED4DB32EC38308E0FDC5EC22732850781003B90D9269E83494962DA738308A3E', + display: 'pht', + name: 'TerraClassicPHP', + symbol: 'PHTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uphp", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uphp', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The SDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/EEF9C5CF846A5CAD0D9A67310C1BC9EAFF865FD4BA34F826ECA504DDD5718F92", - "exponent": 0, - "aliases": [ - "usdr" - ] + denom: + 'ibc/EEF9C5CF846A5CAD0D9A67310C1BC9EAFF865FD4BA34F826ECA504DDD5718F92', + exponent: 0, + aliases: ['usdr'] }, { - "denom": "msdr", - "exponent": 3, - "aliases": [ - "millisdr" - ] + denom: 'msdr', + exponent: 3, + aliases: ['millisdr'] }, { - "denom": "sdt", - "exponent": 6, - "aliases": [ - "sdtc" - ] + denom: 'sdt', + exponent: 6, + aliases: ['sdtc'] } ], - "base": "ibc/EEF9C5CF846A5CAD0D9A67310C1BC9EAFF865FD4BA34F826ECA504DDD5718F92", - "display": "sdt", - "name": "TerraClassicSDR", - "symbol": "SDTC", - "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" + base: + 'ibc/EEF9C5CF846A5CAD0D9A67310C1BC9EAFF865FD4BA34F826ECA504DDD5718F92', + display: 'sdt', + name: 'TerraClassicSDR', + symbol: 'SDTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "usdr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'usdr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The SEK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SEK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/3DB70616F2455B99EA94213515341F4F935CD3F008C88612163A1C50D6174804", - "exponent": 0, - "aliases": [ - "usek" - ] + denom: + 'ibc/3DB70616F2455B99EA94213515341F4F935CD3F008C88612163A1C50D6174804', + exponent: 0, + aliases: ['usek'] }, { - "denom": "msek", - "exponent": 3, - "aliases": [ - "millisek" - ] + denom: 'msek', + exponent: 3, + aliases: ['millisek'] }, { - "denom": "set", - "exponent": 6, - "aliases": [ - "setc" - ] + denom: 'set', + exponent: 6, + aliases: ['setc'] } ], - "base": "ibc/3DB70616F2455B99EA94213515341F4F935CD3F008C88612163A1C50D6174804", - "display": "set", - "name": "TerraClassicSEK", - "symbol": "SETC", - "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" + base: + 'ibc/3DB70616F2455B99EA94213515341F4F935CD3F008C88612163A1C50D6174804', + display: 'set', + name: 'TerraClassicSEK', + symbol: 'SETC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "usek", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'usek', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The SGD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SGD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/68200BACFD8C9ACAB562DB9BFF6DC318ABC7E01756ED14D3EF020EA334175E16", - "exponent": 0, - "aliases": [ - "usgd" - ] + denom: + 'ibc/68200BACFD8C9ACAB562DB9BFF6DC318ABC7E01756ED14D3EF020EA334175E16', + exponent: 0, + aliases: ['usgd'] }, { - "denom": "msgd", - "exponent": 3, - "aliases": [ - "millisgd" - ] + denom: 'msgd', + exponent: 3, + aliases: ['millisgd'] }, { - "denom": "sgt", - "exponent": 6, - "aliases": [ - "sgtc" - ] + denom: 'sgt', + exponent: 6, + aliases: ['sgtc'] } ], - "base": "ibc/68200BACFD8C9ACAB562DB9BFF6DC318ABC7E01756ED14D3EF020EA334175E16", - "display": "sgt", - "name": "TerraClassicSGD", - "symbol": "SGTC", - "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" + base: + 'ibc/68200BACFD8C9ACAB562DB9BFF6DC318ABC7E01756ED14D3EF020EA334175E16', + display: 'sgt', + name: 'TerraClassicSGD', + symbol: 'SGTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "usgd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'usgd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The THB stablecoin of Terra Classic.", - "denom_units": [ + description: 'The THB stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/FE345E6C7FC0E31DE5288F00D0F0CFE2991FA52B8312C7C4DE76A7593E327F36", - "exponent": 0, - "aliases": [ - "uthb" - ] + denom: + 'ibc/FE345E6C7FC0E31DE5288F00D0F0CFE2991FA52B8312C7C4DE76A7593E327F36', + exponent: 0, + aliases: ['uthb'] }, { - "denom": "mthb", - "exponent": 3, - "aliases": [ - "millithb" - ] + denom: 'mthb', + exponent: 3, + aliases: ['millithb'] }, { - "denom": "tht", - "exponent": 6, - "aliases": [ - "thtc" - ] + denom: 'tht', + exponent: 6, + aliases: ['thtc'] } ], - "base": "ibc/FE345E6C7FC0E31DE5288F00D0F0CFE2991FA52B8312C7C4DE76A7593E327F36", - "display": "tht", - "name": "TerraClassicTHB", - "symbol": "THTC", - "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" + base: + 'ibc/FE345E6C7FC0E31DE5288F00D0F0CFE2991FA52B8312C7C4DE76A7593E327F36', + display: 'tht', + name: 'TerraClassicTHB', + symbol: 'THTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "uthb", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'uthb', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } }, { - "description": "The TWD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The TWD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/E18DAA8C9FBF6BD73E3E73C88C9740E4D576944D4081CF53224D01C316D149B7", - "exponent": 0, - "aliases": [ - "utwd" - ] + denom: + 'ibc/E18DAA8C9FBF6BD73E3E73C88C9740E4D576944D4081CF53224D01C316D149B7', + exponent: 0, + aliases: ['utwd'] }, { - "denom": "mtwd", - "exponent": 3, - "aliases": [ - "millitwd" - ] + denom: 'mtwd', + exponent: 3, + aliases: ['millitwd'] }, { - "denom": "twt", - "exponent": 6, - "aliases": [ - "twtc" - ] + denom: 'twt', + exponent: 6, + aliases: ['twtc'] } ], - "base": "ibc/E18DAA8C9FBF6BD73E3E73C88C9740E4D576944D4081CF53224D01C316D149B7", - "display": "twt", - "name": "TerraClassicTWD", - "symbol": "TWTC", - "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" + base: + 'ibc/E18DAA8C9FBF6BD73E3E73C88C9740E4D576944D4081CF53224D01C316D149B7', + display: 'twt', + name: 'TerraClassicTWD', + symbol: 'TWTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-20", - "denom": "utwd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-20', + denom: 'utwd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-27" + chain: { + channel: 'channel-27' } } } ] }; export default ibc_assets; - \ No newline at end of file diff --git a/packages/juno/types/index.d.ts b/packages/juno/types/index.d.ts index 057e51bb1..3f5863300 100644 --- a/packages/juno/types/index.d.ts +++ b/packages/juno/types/index.d.ts @@ -2,9 +2,9 @@ import assets from './assets'; import chain from './chain'; import ibc_assets from './ibc_assets'; declare const _default: { - chain: import("@chain-registry/types").Chain; - assets: import("@chain-registry/types").AssetList; - ibc_assets: import("@chain-registry/types").IBCAsset; + chain: import('@chain-registry/types').Chain; + assets: import('@chain-registry/types').AssetList; + ibc_assets: import('@chain-registry/types').IBCAsset; }; export default _default; export { assets, chain, ibc_assets }; diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 34943042d..4aaa0d3a8 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. +## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.5.0...@chain-registry/osmosis@0.5.1) (2022-08-14) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.6...@chain-registry/osmosis@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index fc8f82103..e661187ad 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "0.5.0", + "version": "0.5.1", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -24,6 +24,7 @@ "build:ts": "tsc --project ./tsconfig.json", "buidl": "npm run build && npm run build:ts", "build:pkg": "babel-node ./scripts/build.js", + "codegen": "npm run build:pkg && npm run format", "prepare": "npm run build", "lint": "eslint --ext .ts,.tsx,.js .", "format": "eslint --fix . --ext .ts,.tsx,.js", @@ -60,7 +61,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "28.1.1", "babel-watch": "^7.0.0", - "chain-registry": "^0.6.0", + "chain-registry": "^0.6.1", "cross-env": "^7.0.2", "eslint": "8.20.0", "eslint-config-prettier": "^8.5.0", diff --git a/packages/osmosis/src/ibc_assets.ts b/packages/osmosis/src/ibc_assets.ts index 6ed554396..c5afbc194 100644 --- a/packages/osmosis/src/ibc_assets.ts +++ b/packages/osmosis/src/ibc_assets.ts @@ -1,4123 +1,4271 @@ import { IBCAsset } from '@chain-registry/types'; const ibc_assets: IBCAsset = { - "chain_name": "osmosis", - "assets": [ + chain_name: 'osmosis', + 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": [ + 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/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "exponent": 0, - "aliases": [ - "uakt" - ] + denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + exponent: 0, + aliases: ['uakt'] }, { - "denom": "akt", - "exponent": 6 + denom: 'akt', + exponent: 6 } ], - "base": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "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" + base: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + 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", - "ibc": { - "counterparty": { - "channel": "channel-9", - "denom": "uakt", - "chain_name": "akash" + coingecko_id: 'akash-network', + ibc: { + counterparty: { + channel: 'channel-9', + denom: 'uakt', + chain_name: 'akash' }, - "chain": { - "channel": "channel-1" + chain: { + channel: 'channel-1' } } }, { - "description": "The native token of Asset Mantle", - "denom_units": [ + description: 'The native token of Asset Mantle', + denom_units: [ { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "exponent": 0, - "aliases": [ - "umntl" - ] + denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + exponent: 0, + aliases: ['umntl'] }, { - "denom": "mntl", - "exponent": 6 + denom: 'mntl', + exponent: 6 } ], - "base": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "name": "AssetMantle", - "display": "mntl", - "symbol": "MNTL", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png" + base: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png' }, - "coingecko_id": "assetmantle", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "umntl", - "chain_name": "assetmantle" + coingecko_id: 'assetmantle', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'umntl', + chain_name: 'assetmantle' }, - "chain": { - "channel": "channel-232" + chain: { + channel: 'channel-232' } } }, { - "description": "The native token of Axelar", - "denom_units": [ + description: 'The native token of Axelar', + denom_units: [ { - "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "exponent": 0, - "aliases": [ - "uaxl" - ] + denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + exponent: 0, + aliases: ['uaxl'] }, { - "denom": "axl", - "exponent": 6 + denom: 'axl', + exponent: 6 } ], - "base": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "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" + base: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + 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-network", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "uaxl", - "chain_name": "axelar" + coingecko_id: 'axelar-network', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'uaxl', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Circle's stablecoin on Axelar", - "denom_units": [ + description: "Circle's stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "exponent": 0, - "aliases": [ - "uusdc" - ] + denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + exponent: 0, + aliases: ['uusdc'] }, { - "denom": "usdc", - "exponent": 6 + denom: 'usdc', + exponent: 6 } ], - "base": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "name": "USD Coin", - "display": "usdc", - "symbol": "USDC", - "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" + base: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + 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": "usd-coin", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "uusdc", - "chain_name": "axelar" + coingecko_id: 'usd-coin', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'uusdc', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Frax's fractional-algorithmic stablecoin on Axelar", - "denom_units": [ + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", - "exponent": 0, - "aliases": [ - "frax-wei" - ] + denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + exponent: 0, + aliases: ['frax-wei'] }, { - "denom": "frax", - "exponent": 18 + denom: 'frax', + exponent: 18 } ], - "base": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", - "name": "Frax", - "display": "frax", - "symbol": "FRAX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png" + base: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/frax.png' }, - "coingecko_id": "frax", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "frax-wei", - "chain_name": "axelar" + coingecko_id: 'frax', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'frax-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Dai stablecoin on Axelar", - "denom_units": [ + description: 'Dai stablecoin on Axelar', + denom_units: [ { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "exponent": 0, - "aliases": [ - "dai-wei" - ] + denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + exponent: 0, + aliases: ['dai-wei'] }, { - "denom": "dai", - "exponent": 18 + denom: 'dai', + exponent: 18 } ], - "base": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "name": "Dai Stablecoin", - "display": "dai", - "symbol": "DAI", - "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" + base: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + 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' }, - "coingecko_id": "dai", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "dai-wei", - "chain_name": "axelar" + coingecko_id: 'dai', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'dai-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Tether's USD stablecoin on Axelar", - "denom_units": [ + description: "Tether's USD stablecoin on Axelar", + denom_units: [ { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "exponent": 0, - "aliases": [ - "uusdt" - ] + denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + exponent: 0, + aliases: ['uusdt'] }, { - "denom": "usdt", - "exponent": 6 + denom: 'usdt', + exponent: 6 } ], - "base": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "name": "Tether USD", - "display": "usdt", - "symbol": "USDT", - "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" + base: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + 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' }, - "coingecko_id": "tether", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "uusdt", - "chain_name": "axelar" + coingecko_id: 'tether', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'uusdt', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Wrapped Ether on Axelar", - "denom_units": [ + description: 'Wrapped Ether on Axelar', + denom_units: [ { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "exponent": 0, - "aliases": [ - "weth-wei" - ] + denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + exponent: 0, + aliases: ['weth-wei'] }, { - "denom": "weth", - "exponent": 18 + denom: 'weth', + exponent: 18 } ], - "base": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "name": "Wrapped Ether", - "display": "weth", - "symbol": "WETH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png" + base: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' }, - "coingecko_id": "weth", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "weth-wei", - "chain_name": "axelar" + coingecko_id: 'weth', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'weth-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Wrapped Bitcoin on Axelar", - "denom_units": [ + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "exponent": 0, - "aliases": [ - "wbtc-satoshi" - ] + denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + exponent: 0, + aliases: ['wbtc-satoshi'] }, { - "denom": "wbtc", - "exponent": 8 + denom: 'wbtc', + exponent: 8 } ], - "base": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "name": "Wrapped Bitcoin", - "display": "wbtc", - "symbol": "WBTC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png" + base: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' }, - "coingecko_id": "wrapped-bitcoin", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "wbtc-satoshi", - "chain_name": "axelar" + coingecko_id: 'wrapped-bitcoin', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'wbtc-satoshi', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Aave on Axelar", - "denom_units": [ + description: 'Aave on Axelar', + denom_units: [ { - "denom": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", - "exponent": 0, - "aliases": [ - "aave-wei" - ] + denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + exponent: 0, + aliases: ['aave-wei'] }, { - "denom": "aave", - "exponent": 18 + denom: 'aave', + exponent: 18 } ], - "base": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", - "name": "Aave", - "display": "aave", - "symbol": "AAVE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg" + base: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' }, - "coingecko_id": "aave", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "aave-wei", - "chain_name": "axelar" + coingecko_id: 'aave', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'aave-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "ApeCoin on Axelar", - "denom_units": [ + description: 'ApeCoin on Axelar', + denom_units: [ { - "denom": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", - "exponent": 0, - "aliases": [ - "ape-wei" - ] + denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + exponent: 0, + aliases: ['ape-wei'] }, { - "denom": "ape", - "exponent": 18 + denom: 'ape', + exponent: 18 } ], - "base": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", - "name": "ApeCoin", - "display": "ape", - "symbol": "APE", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg" + base: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' }, - "coingecko_id": "apecoin", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "ape-wei", - "chain_name": "axelar" + coingecko_id: 'apecoin', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'ape-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Axie Infinity Shard on Axelar", - "type_asset": "erc20", - "address": "0xbb0e17ef65f82ab018d8edd776e8dd940327b28b", - "denom_units": [ - { - "denom": "ibc/6C0CB8653012DC2BC1820FD0B6B3AFF8A07D18630BDAEE066FEFB2D92F477C24", - "exponent": 0, - "aliases": [ - "axs-wei" - ] + description: 'Axie Infinity Shard on Axelar', + type_asset: 'erc20', + address: '0xbb0e17ef65f82ab018d8edd776e8dd940327b28b', + denom_units: [ + { + denom: + 'ibc/6C0CB8653012DC2BC1820FD0B6B3AFF8A07D18630BDAEE066FEFB2D92F477C24', + exponent: 0, + aliases: ['axs-wei'] }, { - "denom": "axs", - "exponent": 18 + denom: 'axs', + exponent: 18 } ], - "base": "ibc/6C0CB8653012DC2BC1820FD0B6B3AFF8A07D18630BDAEE066FEFB2D92F477C24", - "name": "Axie Infinity Shard", - "display": "axs", - "symbol": "AXS", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg" + base: + 'ibc/6C0CB8653012DC2BC1820FD0B6B3AFF8A07D18630BDAEE066FEFB2D92F477C24', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' }, - "coingecko_id": "axie-infinity", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "axs-wei", - "chain_name": "axelar" + coingecko_id: 'axie-infinity', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'axs-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Chainlink on Axelar", - "denom_units": [ + description: 'Chainlink on Axelar', + denom_units: [ { - "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "exponent": 0, - "aliases": [ - "link-wei" - ] + denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + exponent: 0, + aliases: ['link-wei'] }, { - "denom": "link", - "exponent": 18 + denom: 'link', + exponent: 18 } ], - "base": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "name": "Chainlink", - "display": "link", - "symbol": "LINK", - "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" + base: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + 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' }, - "coingecko_id": "chainlink", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "link-wei", - "chain_name": "axelar" + coingecko_id: 'chainlink', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'link-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Maker on Axelar", - "denom_units": [ + description: 'Maker on Axelar', + denom_units: [ { - "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "exponent": 0, - "aliases": [ - "mkr-wei" - ] + denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + exponent: 0, + aliases: ['mkr-wei'] }, { - "denom": "mkr", - "exponent": 18 + denom: 'mkr', + exponent: 18 } ], - "base": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "name": "Maker", - "display": "mkr", - "symbol": "MKR", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg" + base: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' }, - "coingecko_id": "maker", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "mkr-wei", - "chain_name": "axelar" + coingecko_id: 'maker', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'mkr-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Rai Reflex Index on Axelar", - "denom_units": [ + description: 'Rai Reflex Index on Axelar', + denom_units: [ { - "denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", - "exponent": 0, - "aliases": [ - "rai-wei" - ] + denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + exponent: 0, + aliases: ['rai-wei'] }, { - "denom": "rai", - "exponent": 18 + denom: 'rai', + exponent: 18 } ], - "base": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", - "name": "Rai Reflex Index", - "display": "rai", - "symbol": "RAI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg" + base: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' }, - "coingecko_id": "rai", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "rai-wei", - "chain_name": "axelar" + coingecko_id: 'rai', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'rai-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Shiba Inu on Axelar", - "denom_units": [ + description: 'Shiba Inu on Axelar', + denom_units: [ { - "denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", - "exponent": 0, - "aliases": [ - "shib-wei" - ] + denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + exponent: 0, + aliases: ['shib-wei'] }, { - "denom": "shib", - "exponent": 18 + denom: 'shib', + exponent: 18 } ], - "base": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", - "name": "Shiba Inu", - "display": "shib", - "symbol": "SHIB", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg" + base: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' }, - "coingecko_id": "shiba-inu", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "shib-wei", - "chain_name": "axelar" + coingecko_id: 'shiba-inu', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'shib-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Lido Staked Ether on Axelar", - "denom_units": [ + description: 'Lido Staked Ether on Axelar', + denom_units: [ { - "denom": "ibc/129F401C84FCD5B0183472ED83745193B0B3A69855635A56B9056EEF8D3C241C", - "exponent": 0, - "aliases": [ - "steth-wei" - ] + denom: + 'ibc/129F401C84FCD5B0183472ED83745193B0B3A69855635A56B9056EEF8D3C241C', + exponent: 0, + aliases: ['steth-wei'] }, { - "denom": "steth", - "exponent": 18 + denom: 'steth', + exponent: 18 } ], - "base": "ibc/129F401C84FCD5B0183472ED83745193B0B3A69855635A56B9056EEF8D3C241C", - "name": "Lido Staked Ether", - "display": "steth", - "symbol": "stETH", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg" + base: + 'ibc/129F401C84FCD5B0183472ED83745193B0B3A69855635A56B9056EEF8D3C241C', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' }, - "coingecko_id": "staked-ether", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "steth-wei", - "chain_name": "axelar" + coingecko_id: 'staked-ether', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'steth-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Uniswap on Axelar", - "denom_units": [ + description: 'Uniswap on Axelar', + denom_units: [ { - "denom": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", - "exponent": 0, - "aliases": [ - "uni-wei" - ] + denom: + 'ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161', + exponent: 0, + aliases: ['uni-wei'] }, { - "denom": "uni", - "exponent": 18 + denom: 'uni', + exponent: 18 } ], - "base": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", - "name": "Uniswap", - "display": "uni", - "symbol": "UNI", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg" + base: + 'ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' }, - "coingecko_id": "uniswap", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "uni-wei", - "chain_name": "axelar" + coingecko_id: 'uniswap', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'uni-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Chain on Axelar", - "denom_units": [ + description: 'Chain on Axelar', + denom_units: [ { - "denom": "ibc/B901BEC1B71D0573E6EE874FEC39E2DF4C2BDB1DB74CB3DA0A9CACC4A435B0EC", - "exponent": 0, - "aliases": [ - "xcn-wei" - ] + denom: + 'ibc/B901BEC1B71D0573E6EE874FEC39E2DF4C2BDB1DB74CB3DA0A9CACC4A435B0EC', + exponent: 0, + aliases: ['xcn-wei'] }, { - "denom": "xcn", - "exponent": 18 + denom: 'xcn', + exponent: 18 } ], - "base": "ibc/B901BEC1B71D0573E6EE874FEC39E2DF4C2BDB1DB74CB3DA0A9CACC4A435B0EC", - "name": "Chain", - "display": "xcn", - "symbol": "XCN", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg" + base: + 'ibc/B901BEC1B71D0573E6EE874FEC39E2DF4C2BDB1DB74CB3DA0A9CACC4A435B0EC', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' }, - "coingecko_id": "chain-2", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "xcn-wei", - "chain_name": "axelar" + coingecko_id: 'chain-2', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'xcn-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Wrapped Polkadot on Axelar", - "denom_units": [ + description: 'Wrapped Polkadot on Axelar', + denom_units: [ { - "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "exponent": 0, - "aliases": [ - "dot-planck" - ] + denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + exponent: 0, + aliases: ['dot-planck'] }, { - "denom": "dot", - "exponent": 10 + denom: 'dot', + exponent: 10 } ], - "base": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "name": "Wrapped Polkadot", - "display": "dot", - "symbol": "DOT", - "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" + base: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + 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' }, - "coingecko_id": "polkadot", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "dot-planck", - "chain_name": "axelar" + coingecko_id: 'polkadot', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'dot-planck', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "Wrapped Moonbeam on Axelar", - "denom_units": [ + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ { - "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", - "exponent": 0, - "aliases": [ - "wglmr-wei" - ] + denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + exponent: 0, + aliases: ['wglmr-wei'] }, { - "denom": "wglmr", - "exponent": 18 + denom: 'wglmr', + exponent: 18 } ], - "base": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", - "name": "Wrapped Moonbeam", - "display": "wglmr", - "symbol": "WGLMR", - "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" + base: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + 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' }, - "coingecko_id": "wrapped-moonbeam", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "wglmr-wei", - "chain_name": "axelar" + coingecko_id: 'wrapped-moonbeam', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'wglmr-wei', + chain_name: 'axelar' }, - "chain": { - "channel": "channel-208" + chain: { + channel: 'channel-208' } } }, { - "description": "The native token of BandChain", - "denom_units": [ + description: 'The native token of BandChain', + denom_units: [ { - "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "exponent": 0, - "aliases": [ - "uband" - ] + denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + exponent: 0, + aliases: ['uband'] }, { - "denom": "band", - "exponent": 6 + denom: 'band', + exponent: 6 } ], - "base": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "display": "band", - "name": "Band Protocol", - "symbol": "BAND", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg" + base: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + display: 'band', + name: 'Band Protocol', + symbol: 'BAND', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' }, - "coingecko_id": "band-protocol", - "ibc": { - "counterparty": { - "channel": "channel-83", - "denom": "uband", - "chain_name": "bandchain" + coingecko_id: 'band-protocol', + ibc: { + counterparty: { + channel: 'channel-83', + denom: 'uband', + chain_name: 'bandchain' }, - "chain": { - "channel": "channel-148" + chain: { + channel: 'channel-148' } } }, { - "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": [ + 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/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "exponent": 0, - "aliases": [ - "ubcna" - ] + denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + exponent: 0, + aliases: ['ubcna'] }, { - "denom": "bcna", - "exponent": 6 + denom: 'bcna', + exponent: 6 } ], - "base": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "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" + base: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + 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", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ubcna", - "chain_name": "bitcanna" + coingecko_id: 'bitcanna', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ubcna', + chain_name: 'bitcanna' }, - "chain": { - "channel": "channel-51" + chain: { + channel: 'channel-51' } } }, { - "description": "BitSong Native Token", - "denom_units": [ + description: 'BitSong Native Token', + denom_units: [ { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "exponent": 0, - "aliases": [ - "ubtsg" - ] + denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + exponent: 0, + aliases: ['ubtsg'] }, { - "denom": "btsg", - "exponent": 6 + denom: 'btsg', + exponent: 6 } ], - "base": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "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" + base: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + 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", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ubtsg", - "chain_name": "bitsong" + type_asset: 'sdk.coin', + coingecko_id: 'bitsong', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ubtsg', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Adam Clay a BitSong Music FanToken", - "denom_units": [ + description: 'Adam Clay a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", - "exponent": 0, - "aliases": [ - "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09" - ] + denom: + 'ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B', + exponent: 0, + aliases: ['ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09'] }, { - "denom": "clay", - "exponent": 6 + denom: 'clay', + exponent: 6 } ], - "base": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", - "name": "Adam Clay FanToken", - "display": "clay", - "symbol": "CLAY", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png" + base: + 'ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B', + name: 'Adam Clay FanToken', + display: 'clay', + symbol: 'CLAY', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Nicola Fasano a BitSong Music FanToken", - "denom_units": [ + description: 'Nicola Fasano a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07", - "exponent": 0, - "aliases": [ - "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7" - ] + denom: + 'ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07', + exponent: 0, + aliases: ['ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7'] }, { - "denom": "fasano", - "exponent": 6 + denom: 'fasano', + exponent: 6 } ], - "base": "ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07", - "name": "Nicola Fasano Fantoken", - "display": "fasano", - "symbol": "FASANO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png" + base: + 'ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07', + name: 'Nicola Fasano Fantoken', + display: 'fasano', + symbol: 'FASANO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Delta 9 a BitSong Music FanToken", - "denom_units": [ + description: 'Delta 9 a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", - "exponent": 0, - "aliases": [ - "ft575B10B0CEE2C164D9ED6A96313496F164A9607C" - ] + denom: + 'ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A', + exponent: 0, + aliases: ['ft575B10B0CEE2C164D9ED6A96313496F164A9607C'] }, { - "denom": "d9x", - "exponent": 6 + denom: 'd9x', + exponent: 6 } ], - "base": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", - "name": "Delta 9 Fantoken", - "display": "d9x", - "symbol": "D9X", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png" + base: + 'ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A', + name: 'Delta 9 Fantoken', + display: 'd9x', + symbol: 'D9X', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft575B10B0CEE2C164D9ED6A96313496F164A9607C', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "FONTI a BitSong Music FanToken", - "denom_units": [ + description: 'FONTI a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", - "exponent": 0, - "aliases": [ - "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305" - ] + denom: + 'ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1', + exponent: 0, + aliases: ['ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305'] }, { - "denom": "fonti", - "exponent": 6 + denom: 'fonti', + exponent: 6 } ], - "base": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", - "name": "FONTI Fantoken", - "display": "fonti", - "symbol": "FONTI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png" + base: + 'ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1', + name: 'FONTI Fantoken', + display: 'fonti', + symbol: 'FONTI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "BlackJack a BitSong Music FanToken", - "denom_units": [ + description: 'BlackJack a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", - "exponent": 0, - "aliases": [ - "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16" - ] + denom: + 'ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853', + exponent: 0, + aliases: ['ft52EEB0EE509AC546ED92EAC8591F731F213DDD16'] }, { - "denom": "bjks", - "exponent": 6 + denom: 'bjks', + exponent: 6 } ], - "base": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", - "name": "BlackJack Fantoken", - "display": "bjks", - "symbol": "BJKS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png" + base: + 'ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853', + name: 'BlackJack Fantoken', + display: 'bjks', + symbol: 'BJKS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft52EEB0EE509AC546ED92EAC8591F731F213DDD16', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Rawanne a BitSong Music FanToken", - "denom_units": [ + description: 'Rawanne a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", - "exponent": 0, - "aliases": [ - "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A" - ] + denom: + 'ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867', + exponent: 0, + aliases: ['ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A'] }, { - "denom": "rwne", - "exponent": 6 + denom: 'rwne', + exponent: 6 } ], - "base": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", - "name": "Rawanne Fantoken", - "display": "rwne", - "symbol": "RWNE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png" + base: + 'ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867', + name: 'Rawanne Fantoken', + display: 'rwne', + symbol: 'RWNE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Enmoda a BitSong Music FanToken", - "denom_units": [ + description: 'Enmoda a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", - "exponent": 0, - "aliases": [ - "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626" - ] + denom: + 'ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1', + exponent: 0, + aliases: ['ft85AE1716C5E39EA6D64BBD7898C3899A7B500626'] }, { - "denom": "enmoda", - "exponent": 6 + denom: 'enmoda', + exponent: 6 } ], - "base": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", - "name": "Enmoda Fantoken", - "display": "enmoda", - "symbol": "ENMODA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png" + base: + 'ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1', + name: 'Enmoda Fantoken', + display: 'enmoda', + symbol: 'ENMODA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft85AE1716C5E39EA6D64BBD7898C3899A7B500626', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "404Deep Records a BitSong Music FanToken", - "denom_units": [ + description: '404Deep Records a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", - "exponent": 0, - "aliases": [ - "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A" - ] + denom: + 'ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202', + exponent: 0, + aliases: ['ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A'] }, { - "denom": "404dr", - "exponent": 6 + denom: '404dr', + exponent: 6 } ], - "base": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", - "name": "404Deep Records Fantoken", - "display": "404dr", - "symbol": "404DR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png" + base: + 'ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202', + name: '404Deep Records Fantoken', + display: '404dr', + symbol: '404DR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "N43 a BitSong Music FanToken", - "denom_units": [ + description: 'N43 a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", - "exponent": 0, - "aliases": [ - "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D" - ] + denom: + 'ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58', + exponent: 0, + aliases: ['ft387C1C279D962ED80C09C1D592A92C4275FD7C5D'] }, { - "denom": "n43", - "exponent": 6 + denom: 'n43', + exponent: 6 } ], - "base": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", - "name": "N43 Fantoken", - "display": "n43", - "symbol": "N43", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png" + base: + 'ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58', + name: 'N43 Fantoken', + display: 'n43', + symbol: 'N43', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft387C1C279D962ED80C09C1D592A92C4275FD7C5D', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Puro Lobo a BitSong Music FanToken", - "denom_units": [ + description: 'Puro Lobo a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", - "exponent": 0, - "aliases": [ - "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB" - ] + denom: + 'ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5', + exponent: 0, + aliases: ['ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB'] }, { - "denom": "lobo", - "exponent": 6 + denom: 'lobo', + exponent: 6 } ], - "base": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", - "name": "Puro Lobo Fantoken", - "display": "lobo", - "symbol": "LOBO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png" + base: + 'ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5', + name: 'Puro Lobo Fantoken', + display: 'lobo', + symbol: 'LOBO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Vibranium a BitSong Music FanToken", - "denom_units": [ + description: 'Vibranium a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C", - "exponent": 0, - "aliases": [ - "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B" - ] + denom: + 'ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C', + exponent: 0, + aliases: ['ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B'] }, { - "denom": "vibra", - "exponent": 6 + denom: 'vibra', + exponent: 6 } ], - "base": "ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C", - "name": "Vibranium Fantoken", - "display": "vibra", - "symbol": "VIBRA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png" + base: + 'ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C', + name: 'Vibranium Fantoken', + display: 'vibra', + symbol: 'VIBRA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Karina a BitSong Music FanToken", - "denom_units": [ + description: 'Karina a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", - "exponent": 0, - "aliases": [ - "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE" - ] + denom: + 'ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58', + exponent: 0, + aliases: ['ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE'] }, { - "denom": "karina", - "exponent": 6 + denom: 'karina', + exponent: 6 } ], - "base": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", - "name": "Karina Fantoken", - "display": "karina", - "symbol": "KARINA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png" + base: + 'ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58', + name: 'Karina Fantoken', + display: 'karina', + symbol: 'KARINA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Luca Testa a BitSong Music FanToken", - "denom_units": [ + description: 'Luca Testa a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF", - "exponent": 0, - "aliases": [ - "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12" - ] + denom: + 'ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF', + exponent: 0, + aliases: ['ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12'] }, { - "denom": "testa", - "exponent": 6 + denom: 'testa', + exponent: 6 } ], - "base": "ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF", - "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/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF', + name: 'Luca Testa Fantoken', + display: 'testa', + symbol: 'TESTA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "Carolina Marquez a BitSong Music FanToken", - "denom_units": [ + description: 'Carolina Marquez a BitSong Music FanToken', + denom_units: [ { - "denom": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", - "exponent": 0, - "aliases": [ - "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3" - ] + denom: + 'ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D', + exponent: 0, + aliases: ['ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3'] }, { - "denom": "cmqz", - "exponent": 6 + denom: 'cmqz', + exponent: 6 } ], - "base": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", - "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/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D', + name: 'Carolina Marquez Fantoken', + display: 'cmqz', + symbol: 'CMQZ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "chain_name": "bitsong" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3', + chain_name: 'bitsong' }, - "chain": { - "channel": "channel-73" + chain: { + channel: 'channel-73' } } }, { - "description": "The staking token of Bostrom", - "denom_units": [ + description: 'The staking token of Bostrom', + denom_units: [ { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "exponent": 0, - "aliases": [ - "boot" - ] + denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + exponent: 0, + aliases: ['boot'] } ], - "base": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "name": "Bostrom", - "display": "boot", - "symbol": "BOOT", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png" + base: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + name: 'Bostrom', + display: 'boot', + symbol: 'BOOT', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png' }, - "coingecko_id": "bostrom", - "ibc": { - "counterparty": { - "channel": "channel-2", - "denom": "boot", - "chain_name": "bostrom" + coingecko_id: 'bostrom', + ibc: { + counterparty: { + channel: 'channel-2', + denom: 'boot', + chain_name: 'bostrom' }, - "chain": { - "channel": "channel-95" + chain: { + channel: 'channel-95' } } }, { - "description": "The native token of Carbon", - "denom_units": [ + description: 'The native token of Carbon', + denom_units: [ { - "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", - "exponent": 0, - "aliases": [ - "swth" - ] + denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + exponent: 0, + aliases: ['swth'] }, { - "denom": "dswth", - "exponent": 8, - "aliases": [ - "SWTH" - ] + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] } ], - "base": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", - "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" + base: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + 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", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "swth", - "chain_name": "carbon" + coingecko_id: 'switcheo', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'swth', + chain_name: 'carbon' }, - "chain": { - "channel": "channel-188" + chain: { + channel: 'channel-188' } } }, { - "description": "The native token of Cerberus Chain", - "denom_units": [ + description: 'The native token of Cerberus Chain', + denom_units: [ { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "exponent": 0, - "aliases": [ - "ucrbrus" - ] + denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + exponent: 0, + aliases: ['ucrbrus'] }, { - "denom": "crbrus", - "exponent": 6 + denom: 'crbrus', + exponent: 6 } ], - "base": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "name": "Cerberus", - "display": "crbrus", - "symbol": "CRBRUS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png" + base: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png' }, - "coingecko_id": "cerberus-2", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ucrbrus", - "chain_name": "cerberus" + coingecko_id: 'cerberus-2', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ucrbrus', + chain_name: 'cerberus' }, - "chain": { - "channel": "channel-212" + chain: { + channel: 'channel-212' } } }, { - "description": "Native token for the cheqd network", - "denom_units": [ + description: 'Native token for the cheqd network', + denom_units: [ { - "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "exponent": 0, - "aliases": [ - "ncheq" - ] + denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + exponent: 0, + aliases: ['ncheq'] }, { - "denom": "cheq", - "exponent": 9 + denom: 'cheq', + exponent: 9 } ], - "base": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "display": "cheq", - "name": "cheqd", - "symbol": "CHEQ", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg" + base: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + display: 'cheq', + name: 'cheqd', + symbol: 'CHEQ', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' }, - "coingecko_id": "cheqd-network", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ncheq", - "chain_name": "cheqd" + coingecko_id: 'cheqd-network', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ncheq', + chain_name: 'cheqd' }, - "chain": { - "channel": "channel-108" + chain: { + channel: 'channel-108' } } }, { - "description": "The native token of Chihuahua Chain", - "denom_units": [ + description: 'The native token of Chihuahua Chain', + denom_units: [ { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "exponent": 0, - "aliases": [ - "uhuahua" - ] + denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + exponent: 0, + aliases: ['uhuahua'] }, { - "denom": "huahua", - "exponent": 6 + denom: 'huahua', + exponent: 6 } ], - "base": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "name": "Chihuahua", - "display": "huahua", - "symbol": "HUAHUA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png" + base: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png' }, - "coingecko_id": "chihuahua-token", - "ibc": { - "counterparty": { - "channel": "channel-7", - "denom": "uhuahua", - "chain_name": "chihuahua" + coingecko_id: 'chihuahua-token', + ibc: { + counterparty: { + channel: 'channel-7', + denom: 'uhuahua', + chain_name: 'chihuahua' }, - "chain": { - "channel": "channel-113" + chain: { + channel: 'channel-113' } } }, { - "description": "Native Token of Comdex Protocol", - "denom_units": [ + description: 'Native Token of Comdex Protocol', + denom_units: [ { - "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", - "exponent": 0, - "aliases": [ - "ucmdx" - ] + denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + exponent: 0, + aliases: ['ucmdx'] }, { - "denom": "cmdx", - "exponent": 6 + denom: 'cmdx', + exponent: 6 } ], - "base": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", - "name": "Comdex", - "display": "cmdx", - "symbol": "CMDX", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png" + base: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png' }, - "coingecko_id": "comdex", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ucmdx", - "chain_name": "comdex" + coingecko_id: 'comdex', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ucmdx', + chain_name: 'comdex' }, - "chain": { - "channel": "channel-87" + chain: { + channel: 'channel-87' } } }, { - "description": "The native staking and governance token of the Cosmos Hub.", - "denom_units": [ + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "exponent": 0, - "aliases": [ - "uatom" - ] + denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + exponent: 0, + aliases: ['uatom'] }, { - "denom": "atom", - "exponent": 6 + denom: 'atom', + exponent: 6 } ], - "base": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "name": "Cosmos", - "display": "atom", - "symbol": "ATOM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg" + base: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, - "coingecko_id": "cosmos", - "ibc": { - "counterparty": { - "channel": "channel-141", - "denom": "uatom", - "chain_name": "cosmoshub" + coingecko_id: 'cosmos', + ibc: { + counterparty: { + channel: 'channel-141', + denom: 'uatom', + chain_name: 'cosmoshub' }, - "chain": { - "channel": "channel-0" + chain: { + channel: 'channel-0' } } }, { - "description": "The native token of Crescent", - "denom_units": [ + description: 'The native token of Crescent', + denom_units: [ { - "denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "exponent": 0, - "aliases": [ - "ucre" - ] + denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + exponent: 0, + aliases: ['ucre'] }, { - "denom": "cre", - "exponent": 6, - "aliases": [] + denom: 'cre', + exponent: 6, + aliases: [] } ], - "base": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "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" + base: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + 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", - "ibc": { - "counterparty": { - "channel": "channel-9", - "denom": "ucre", - "chain_name": "crescent" + coingecko_id: 'crescent-network', + ibc: { + counterparty: { + channel: 'channel-9', + denom: 'ucre', + chain_name: 'crescent' }, - "chain": { - "channel": "channel-297" + chain: { + channel: 'channel-297' } } }, { - "description": "The bonded token of Crescent", - "denom_units": [ + description: 'The bonded token of Crescent', + denom_units: [ { - "denom": "ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119", - "exponent": 0, - "aliases": [ - "ubcre" - ] + denom: + 'ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119', + exponent: 0, + aliases: ['ubcre'] }, { - "denom": "bcre", - "exponent": 6, - "aliases": [] + denom: 'bcre', + exponent: 6, + aliases: [] } ], - "base": "ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119", - "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" + base: + 'ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119', + 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": "crescent-network", - "ibc": { - "counterparty": { - "channel": "channel-9", - "denom": "ubcre", - "chain_name": "crescent" + coingecko_id: 'crescent-network', + ibc: { + counterparty: { + channel: 'channel-9', + denom: 'ubcre', + chain_name: 'crescent' }, - "chain": { - "channel": "channel-297" + chain: { + channel: 'channel-297' } } }, { - "description": "CRO coin is the token for the Crypto.com platform.", - "denom_units": [ + description: 'CRO coin is the token for the Crypto.com platform.', + denom_units: [ { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "exponent": 0, - "aliases": [ - "basecro" - ] + denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + exponent: 0, + aliases: ['basecro'] }, { - "denom": "cro", - "exponent": 8 + denom: 'cro', + exponent: 8 } ], - "base": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "name": "Cronos", - "display": "cro", - "symbol": "CRO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png" + base: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + name: 'Cronos', + display: 'cro', + symbol: 'CRO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' }, - "coingecko_id": "crypto-com-chain", - "ibc": { - "counterparty": { - "channel": "channel-10", - "denom": "basecro", - "chain_name": "cryptoorgchain" + coingecko_id: 'crypto-com-chain', + ibc: { + counterparty: { + channel: 'channel-10', + denom: 'basecro', + chain_name: 'cryptoorgchain' }, - "chain": { - "channel": "channel-5" + chain: { + channel: 'channel-5' } } }, { - "description": "The native token of Decentr", - "denom_units": [ + description: 'The native token of Decentr', + denom_units: [ { - "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", - "exponent": 0, - "aliases": [ - "udec" - ] + denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + exponent: 0, + aliases: ['udec'] }, { - "denom": "dec", - "exponent": 6, - "aliases": [] + denom: 'dec', + exponent: 6, + aliases: [] } ], - "base": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", - "name": "Decentr", - "display": "dec", - "symbol": "DEC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg" + base: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' }, - "coingecko_id": "decentr", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "udec", - "chain_name": "decentr" + coingecko_id: 'decentr', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'udec', + chain_name: 'decentr' }, - "chain": { - "channel": "channel-181" + chain: { + channel: 'channel-181' } } }, { - "description": "The native token of Desmos", - "denom_units": [ + description: 'The native token of Desmos', + denom_units: [ { - "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "exponent": 0, - "aliases": [ - "udsm" - ] + denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + exponent: 0, + aliases: ['udsm'] }, { - "denom": "dsm", - "exponent": 6, - "aliases": [] + denom: 'dsm', + exponent: 6, + aliases: [] } ], - "base": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "name": "Desmos", - "display": "dsm", - "symbol": "DSM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg" + base: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' }, - "coingecko_id": "desmos", - "ibc": { - "counterparty": { - "channel": "channel-2", - "denom": "udsm", - "chain_name": "desmos" + coingecko_id: 'desmos', + ibc: { + counterparty: { + channel: 'channel-2', + denom: 'udsm', + chain_name: 'desmos' }, - "chain": { - "channel": "channel-135" + chain: { + channel: 'channel-135' } } }, { - "description": "Native token of Dig Chain", - "denom_units": [ + description: 'Native token of Dig Chain', + denom_units: [ { - "denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "exponent": 0, - "aliases": [ - "udig" - ] + denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + exponent: 0, + aliases: ['udig'] }, { - "denom": "dig", - "exponent": 6 + denom: 'dig', + exponent: 6 } ], - "base": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "name": "Dig Chain", - "display": "dig", - "symbol": "DIG", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png" + base: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' }, - "coingecko_id": "dig-chain", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "udig", - "chain_name": "dig" + coingecko_id: 'dig-chain', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'udig', + chain_name: 'dig' }, - "chain": { - "channel": "channel-128" + chain: { + channel: 'channel-128' } } }, { - "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": [ + 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/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "exponent": 0, - "aliases": [ - "ungm" - ] + denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + exponent: 0, + aliases: ['ungm'] }, { - "denom": "ngm", - "exponent": 6 + denom: 'ngm', + exponent: 6 } ], - "base": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "name": "e-Money", - "display": "ngm", - "symbol": "NGM", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png" + base: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png' }, - "coingecko_id": "e-money", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ungm", - "chain_name": "emoney" + coingecko_id: 'e-money', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ungm', + chain_name: 'emoney' }, - "chain": { - "channel": "channel-37" + chain: { + channel: 'channel-37' } } }, { - "description": "e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.", - "denom_units": [ + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "exponent": 0, - "aliases": [ - "eeur" - ] + denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + exponent: 0, + aliases: ['eeur'] }, { - "denom": "EUR", - "exponent": 6 + denom: 'EUR', + exponent: 6 } ], - "base": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "name": "e-Money EUR", - "display": "eur", - "symbol": "EEUR", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png" + base: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png' }, - "coingecko_id": "e-money-eur", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "eeur", - "chain_name": "emoney" + coingecko_id: 'e-money-eur', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'eeur', + chain_name: 'emoney' }, - "chain": { - "channel": "channel-37" + chain: { + channel: 'channel-37' } } }, { - "description": "The native EVM, governance and staking token of the Evmos Hub", - "denom_units": [ + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "exponent": 0, - "aliases": [ - "aevmos" - ] + denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + exponent: 0, + aliases: ['aevmos'] }, { - "denom": "evmos", - "exponent": 18 + denom: 'evmos', + exponent: 18 } ], - "base": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "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" + base: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + 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", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "aevmos", - "chain_name": "evmos" + coingecko_id: 'evmos', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'aevmos', + chain_name: 'evmos' }, - "chain": { - "channel": "channel-204" + chain: { + channel: 'channel-204' } } }, { - "description": "The native staking and governance token of the Fetch Hub.", - "denom_units": [ + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "exponent": 0, - "aliases": [ - "afet" - ] + denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + exponent: 0, + aliases: ['afet'] }, { - "denom": "fet", - "exponent": 18 + denom: 'fet', + exponent: 18 } ], - "base": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "name": "fetch-ai", - "display": "fet", - "symbol": "FET", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg" + base: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + name: 'fetch-ai', + display: 'fet', + symbol: 'FET', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' }, - "coingecko_id": "fetch-ai", - "ibc": { - "counterparty": { - "channel": "channel-10", - "denom": "afet", - "chain_name": "fetchhub" + coingecko_id: 'fetch-ai', + ibc: { + counterparty: { + channel: 'channel-10', + denom: 'afet', + chain_name: 'fetchhub' }, - "chain": { - "channel": "channel-229" + chain: { + channel: 'channel-229' } } }, { - "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", - "denom_units": [ + description: + 'The MOBX coin rewards the use of eco-friendly micromobility transportation.', + denom_units: [ { - "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", - "exponent": 0, - "aliases": [ - "nanomobx" - ] + denom: + 'ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A', + exponent: 0, + aliases: ['nanomobx'] }, { - "denom": "mobx", - "exponent": 9 + denom: 'mobx', + exponent: 9 } ], - "base": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", - "name": "MOBIX", - "display": "mobx", - "symbol": "MOBX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png" + base: + 'ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A', + name: 'MOBIX', + display: 'mobx', + symbol: 'MOBX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png' }, - "ibc": { - "counterparty": { - "channel": "channel-10", - "denom": "nanomobx", - "chain_name": "fetchhub" + ibc: { + counterparty: { + channel: 'channel-10', + denom: 'nanomobx', + chain_name: 'fetchhub' }, - "chain": { - "channel": "channel-229" + chain: { + channel: 'channel-229' } } }, { - "description": "GLX is the staking token of the Galaxy Chain", - "denom_units": [ + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ { - "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", - "exponent": 0, - "aliases": [ - "uglx" - ] + denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + exponent: 0, + aliases: ['uglx'] }, { - "denom": "glx", - "exponent": 6 + denom: 'glx', + exponent: 6 } ], - "base": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", - "name": "Galaxy", - "display": "glx", - "symbol": "GLX", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png" + base: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png' }, - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "uglx", - "chain_name": "galaxy" + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'uglx', + chain_name: 'galaxy' }, - "chain": { - "channel": "channel-236" + chain: { + channel: 'channel-236' } } }, { - "description": "L1 coin is the GenesisL1 blockchain utility, governance and EVM token", - "denom_units": [ + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ { - "denom": "ibc/DABCB5B2232B630C196330AC2A8010C9DBDE8B783FDFF3FB105540939BE27775", - "exponent": 0, - "aliases": [ - "el1" - ] + denom: + 'ibc/DABCB5B2232B630C196330AC2A8010C9DBDE8B783FDFF3FB105540939BE27775', + exponent: 0, + aliases: ['el1'] }, { - "denom": "l1", - "exponent": 18 + denom: 'l1', + exponent: 18 } ], - "base": "ibc/DABCB5B2232B630C196330AC2A8010C9DBDE8B783FDFF3FB105540939BE27775", - "name": "GenesisL1", - "display": "l1", - "symbol": "L1", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png" + base: + 'ibc/DABCB5B2232B630C196330AC2A8010C9DBDE8B783FDFF3FB105540939BE27775', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "el1", - "chain_name": "genesisl1" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'el1', + chain_name: 'genesisl1' }, - "chain": { - "channel": "channel-235" + chain: { + channel: 'channel-235' } } }, { - "description": "The native token of Gravity Bridge", - "denom_units": [ + description: 'The native token of Gravity Bridge', + denom_units: [ { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "exponent": 0, - "aliases": [ - "ugraviton" - ] + denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + exponent: 0, + aliases: ['ugraviton'] }, { - "denom": "graviton", - "exponent": 6, - "aliases": [] + denom: 'graviton', + exponent: 6, + aliases: [] } ], - "base": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "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/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-10", - "denom": "ugraviton", - "chain_name": "gravitybridge" + ibc: { + counterparty: { + channel: 'channel-10', + denom: 'ugraviton', + chain_name: 'gravitybridge' }, - "chain": { - "channel": "channel-144" + chain: { + channel: 'channel-144' } } }, { - "description": "The native token of IXO Chain", - "denom_units": [ + description: 'The native token of IXO Chain', + denom_units: [ { - "denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", - "exponent": 0, - "aliases": [ - "uixo" - ] + denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + exponent: 0, + aliases: ['uixo'] }, { - "denom": "ixo", - "exponent": 6 + denom: 'ixo', + exponent: 6 } ], - "base": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", - "name": "IXO", - "display": "ixo", - "symbol": "IXO", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png" + base: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + name: 'IXO', + display: 'ixo', + symbol: 'IXO', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png' }, - "coingecko_id": "ixo", - "ibc": { - "counterparty": { - "channel": "channel-4", - "denom": "uixo", - "chain_name": "impacthub" + coingecko_id: 'ixo', + ibc: { + counterparty: { + channel: 'channel-4', + denom: 'uixo', + chain_name: 'impacthub' }, - "chain": { - "channel": "channel-38" + chain: { + channel: 'channel-38' } } }, { - "description": "The INJ token is the native governance token for the Injective chain.", - "denom_units": [ + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ { - "denom": "ibc/F2D281A7E86F6206C7DA560774B079EBEA17CFE292A1FCC1306E5DAABBB7D016", - "exponent": 0, - "aliases": [ - "uinj" - ] + denom: + 'ibc/F2D281A7E86F6206C7DA560774B079EBEA17CFE292A1FCC1306E5DAABBB7D016', + exponent: 0, + aliases: ['uinj'] }, { - "denom": "inj", - "exponent": 6 + denom: 'inj', + exponent: 6 } ], - "base": "ibc/F2D281A7E86F6206C7DA560774B079EBEA17CFE292A1FCC1306E5DAABBB7D016", - "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" + base: + 'ibc/F2D281A7E86F6206C7DA560774B079EBEA17CFE292A1FCC1306E5DAABBB7D016', + 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", - "ibc": { - "counterparty": { - "channel": "channel-8", - "denom": "uinj", - "chain_name": "injective" + coingecko_id: 'injective-protocol', + ibc: { + counterparty: { + channel: 'channel-8', + denom: 'uinj', + chain_name: 'injective' }, - "chain": { - "channel": "channel-122" + chain: { + channel: 'channel-122' } } }, { - "description": "The IRIS token is the native governance token for the IrisNet chain.", - "denom_units": [ + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "exponent": 0, - "aliases": [ - "uiris" - ] + denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + exponent: 0, + aliases: ['uiris'] }, { - "denom": "iris", - "exponent": 6 + denom: 'iris', + exponent: 6 } ], - "base": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "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" + base: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + 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", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "uiris", - "chain_name": "irisnet" + coingecko_id: 'iris-network', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'uiris', + chain_name: 'irisnet' }, - "chain": { - "channel": "channel-6" + chain: { + channel: 'channel-6' } } }, { - "description": "The native token of JUNO Chain", - "denom_units": [ + description: 'The native token of JUNO Chain', + denom_units: [ { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "exponent": 0, - "aliases": [ - "ujuno" - ] + denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + exponent: 0, + aliases: ['ujuno'] }, { - "denom": "juno", - "exponent": 6 + denom: 'juno', + exponent: 6 } ], - "base": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "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" + base: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + 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", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ujuno", - "chain_name": "juno" + coingecko_id: 'juno-network', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ujuno', + chain_name: 'juno' }, - "chain": { - "channel": "channel-42" + chain: { + channel: 'channel-42' } } }, { - "description": "The native staking and governance token of Kava", - "denom_units": [ + description: 'The native token cw20 for Neta on Juno Chain', + type_asset: 'cw20', + address: + 'juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr', + denom_units: [ { - "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "exponent": 0, - "aliases": [ - "ukava" + denom: + 'ibc/9743372F617A980BCAAA791C386221AFAA42CD4C5E69A29BD47DF0743078909D', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' ] }, { - "denom": "kava", - "exponent": 6 + denom: 'neta', + exponent: 6 } ], - "base": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "name": "Kava", - "display": "kava", - "symbol": "KAVA", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png" + base: + 'ibc/9743372F617A980BCAAA791C386221AFAA42CD4C5E69A29BD47DF0743078909D', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/osmosis-labs/assetlists/main/images/neta.png' }, - "coingecko_id": "kava", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ukava", - "chain_name": "kava" + coingecko_id: 'neta', + ibc: { + counterparty: { + channel: 'channel-0', + denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'juno' }, - "chain": { - "channel": "channel-143" + chain: { + channel: 'channel-42' } } }, { - "description": "Governance token of Kava Lend Protocol", - "denom_units": [ + description: 'The native staking and governance token of Kava', + denom_units: [ { - "denom": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", - "exponent": 0, - "aliases": [ - "hard" - ] + denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + exponent: 0, + aliases: ['ukava'] }, { - "denom": "HARD", - "exponent": 6 + denom: 'kava', + exponent: 6 } ], - "base": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", - "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" + base: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png' }, - "coingecko_id": "hard-protocol", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "hard", - "chain_name": "kava" + coingecko_id: 'kava', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ukava', + chain_name: 'kava' }, - "chain": { - "channel": "channel-143" + chain: { + channel: 'channel-143' } } }, { - "description": "Governance token of Kava Swap Protocol", - "denom_units": [ + description: 'Governance token of Kava Lend Protocol', + denom_units: [ { - "denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", - "exponent": 0, - "aliases": [ - "swp" - ] + denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + exponent: 0, + aliases: ['hard'] }, { - "denom": "SWP", - "exponent": 6 + denom: 'HARD', + exponent: 6 } ], - "base": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", - "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" + base: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + 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-swap", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "swp", - "chain_name": "kava" + coingecko_id: 'hard-protocol', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'hard', + chain_name: 'kava' }, - "chain": { - "channel": "channel-143" + chain: { + channel: 'channel-143' } } }, { - "description": "The native token of Ki Chain", - "denom_units": [ + description: 'Governance token of Kava Swap Protocol', + denom_units: [ { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "exponent": 0, - "aliases": [ - "uxki" - ] + denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + exponent: 0, + aliases: ['swp'] }, { - "denom": "xki", - "exponent": 6 + denom: 'SWP', + exponent: 6 } ], - "base": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "name": "Ki", - "display": "xki", - "symbol": "XKI", - "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" + base: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + 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": "ki", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "uxki", - "chain_name": "kichain" + coingecko_id: 'kava-swap', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'swp', + chain_name: 'kava' }, - "chain": { - "channel": "channel-77" + chain: { + channel: 'channel-143' } } }, { - "description": "The native token of Konstellation Network", - "denom_units": [ + description: 'The native token of Ki Chain', + denom_units: [ { - "denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", - "exponent": 0, - "aliases": [ - "udarc" - ] + denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + exponent: 0, + aliases: ['uxki'] }, { - "denom": "darc", - "exponent": 6 + denom: 'xki', + exponent: 6 } ], - "base": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", - "name": "DARC", - "display": "darc", - "symbol": "DARC", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg" + base: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + 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' }, - "coingecko_id": "darcmatter-coin", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "udarc", - "chain_name": "konstellation" + coingecko_id: 'ki', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'uxki', + chain_name: 'kichain' }, - "chain": { - "channel": "channel-171" + chain: { + channel: 'channel-77' } } }, { - "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": [ + description: 'The native token of Konstellation Network', + denom_units: [ { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "exponent": 0, - "aliases": [ - "nanolike" - ] + denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + exponent: 0, + aliases: ['udarc'] }, { - "denom": "like", - "exponent": 9 + denom: 'darc', + exponent: 6 } ], - "base": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "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" + base: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + name: 'DARC', + display: 'darc', + symbol: 'DARC', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' }, - "coingecko_id": "likecoin", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "nanolike", - "chain_name": "likecoin" + coingecko_id: 'darcmatter-coin', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'udarc', + chain_name: 'konstellation' }, - "chain": { - "channel": "channel-53" + chain: { + channel: 'channel-171' } } }, { - "description": "The native token of Lumen Network", - "denom_units": [ + 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/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", - "exponent": 0, - "aliases": [ - "ulumen" - ] + denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + exponent: 0, + aliases: ['nanolike'] }, { - "denom": "lumen", - "exponent": 6 + denom: 'like', + exponent: 9 } ], - "base": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", - "name": "LUMEN", - "display": "lumen", - "symbol": "LUMEN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png" + base: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "ulumen", - "chain_name": "lumenx" + coingecko_id: 'likecoin', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'nanolike', + chain_name: 'likecoin' }, - "chain": { - "channel": "channel-286" + chain: { + channel: 'channel-53' } } }, { - "description": "Native token of the Lum Network", - "denom_units": [ + description: 'The native token of Lumen Network', + denom_units: [ { - "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", - "exponent": 0, - "aliases": [ - "ulum" - ] + denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + exponent: 0, + aliases: ['ulumen'] }, { - "denom": "lum", - "exponent": 6 + denom: 'lumen', + exponent: 6 } ], - "base": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", - "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" + base: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + name: 'LUMEN', + display: 'lumen', + symbol: 'LUMEN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png' }, - "coingecko_id": "lum-network", - "ibc": { - "counterparty": { - "channel": "channel-3", - "denom": "ulum", - "chain_name": "lumnetwork" + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'ulumen', + chain_name: 'lumenx' }, - "chain": { - "channel": "channel-115" + chain: { + channel: 'channel-286' } } }, { - "description": "MEME Token (MEME) is the native staking token of the MEME Chain", - "denom_units": [ + description: 'Native token of the Lum Network', + denom_units: [ { - "denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", - "exponent": 0, - "aliases": [ - "umeme" - ] + denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + exponent: 0, + aliases: ['ulum'] }, { - "denom": "meme", - "exponent": 6 + denom: 'lum', + exponent: 6 } ], - "base": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", - "name": "MEME", - "display": "meme", - "symbol": "MEME", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg" + base: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "umeme", - "chain_name": "meme" + coingecko_id: 'lum-network', + ibc: { + counterparty: { + channel: 'channel-3', + denom: 'ulum', + chain_name: 'lumnetwork' }, - "chain": { - "channel": "channel-238" + chain: { + channel: 'channel-115' } } }, { - "description": "TICK coin is the token for the Microtick Price Discovery & Oracle App", - "denom_units": [ + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ { - "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "exponent": 0, - "aliases": [ - "utick" - ] + denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + exponent: 0, + aliases: ['umeme'] }, { - "denom": "tick", - "exponent": 6 + denom: 'meme', + exponent: 6 } ], - "base": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "display": "tick", - "name": "Microtick", - "symbol": "TICK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg" + base: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' }, - "ibc": { - "counterparty": { - "channel": "channel-16", - "denom": "utick", - "chain_name": "microtick" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'umeme', + chain_name: 'meme' }, - "chain": { - "channel": "channel-39" + chain: { + channel: 'channel-238' } } }, { - "description": "The native token of Oraichain", - "denom_units": [ + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ { - "denom": "ibc/1B25ACE06F1A272BADBCB39338F16E9E95B8C7AC23A91DC48B0E32B03E172541", - "exponent": 0, - "aliases": [ - "uorai" - ] + denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + exponent: 0, + aliases: ['utick'] }, { - "denom": "orai", - "exponent": 6 + denom: 'tick', + exponent: 6 } ], - "base": "ibc/1B25ACE06F1A272BADBCB39338F16E9E95B8C7AC23A91DC48B0E32B03E172541", - "name": "Oraichain", - "display": "orai", - "symbol": "ORAI", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg" + base: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + display: 'tick', + name: 'Microtick', + symbol: 'TICK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' }, - "coingecko_id": "oraichain-token", - "ibc": { - "counterparty": { - "channel": "channel-13", - "denom": "uorai", - "chain_name": "oraichain" + ibc: { + counterparty: { + channel: 'channel-16', + denom: 'utick', + chain_name: 'microtick' }, - "chain": { - "channel": "channel-216" + chain: { + channel: 'channel-39' } } }, { - "description": "Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem", - "denom_units": [ + description: 'The native token of Oraichain', + denom_units: [ { - "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "exponent": 0, - "aliases": [ - "umed" - ] + denom: + 'ibc/1B25ACE06F1A272BADBCB39338F16E9E95B8C7AC23A91DC48B0E32B03E172541', + exponent: 0, + aliases: ['uorai'] }, { - "denom": "med", - "exponent": 6 + denom: 'orai', + exponent: 6 } ], - "base": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "name": "MediBloc", - "display": "med", - "symbol": "MED", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png" + base: + 'ibc/1B25ACE06F1A272BADBCB39338F16E9E95B8C7AC23A91DC48B0E32B03E172541', + name: 'Oraichain', + display: 'orai', + symbol: 'ORAI', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg' }, - "coingecko_id": "medibloc", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "umed", - "chain_name": "panacea" + coingecko_id: 'oraichain-token', + ibc: { + counterparty: { + channel: 'channel-13', + denom: 'uorai', + chain_name: 'oraichain' }, - "chain": { - "channel": "channel-82" + chain: { + channel: 'channel-216' } } }, { - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "denom_units": [ + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "exponent": 0, - "aliases": [ - "uxprt" - ] + denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + exponent: 0, + aliases: ['umed'] }, { - "denom": "xprt", - "exponent": 6 + denom: 'med', + exponent: 6 } ], - "base": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "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" + base: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + name: 'MediBloc', + display: 'med', + symbol: 'MED', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png' }, - "coingecko_id": "persistence", - "ibc": { - "counterparty": { - "channel": "channel-6", - "denom": "uxprt", - "chain_name": "persistence" + coingecko_id: 'medibloc', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'umed', + chain_name: 'panacea' }, - "chain": { - "channel": "channel-4" + chain: { + channel: 'channel-82' } } }, { - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "denom_units": [ + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + exponent: 0, + aliases: ['uxprt'] + }, { - "denom": "ibc/CF780ADED86E541AD7A8D5B7D33D2E3D9C61D8ECD228B8ED951986D782CB630A", - "exponent": 0, - "aliases": [ - "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444" + denom: 'xprt', + exponent: 6 + } + ], + base: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + 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', + ibc: { + counterparty: { + channel: 'channel-6', + denom: 'uxprt', + chain_name: 'persistence' + }, + chain: { + channel: 'channel-4' + } + } + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ + { + denom: + 'ibc/CF780ADED86E541AD7A8D5B7D33D2E3D9C61D8ECD228B8ED951986D782CB630A', + exponent: 0, + aliases: [ + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' ] }, { - "denom": "pstake", - "exponent": 18 + denom: 'pstake', + exponent: 18 } ], - "base": "ibc/CF780ADED86E541AD7A8D5B7D33D2E3D9C61D8ECD228B8ED951986D782CB630A", - "name": "pSTAKE Finance", - "display": "pstake", - "symbol": "PSTAKE", - "ibc": { - "counterparty": { - "channel": "channel-6", - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "chain_name": "persistence" - }, - "chain": { - "channel": "channel-4" + base: + 'ibc/CF780ADED86E541AD7A8D5B7D33D2E3D9C61D8ECD228B8ED951986D782CB630A', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + ibc: { + counterparty: { + channel: 'channel-6', + denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + chain_name: 'persistence' + }, + chain: { + channel: '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" + 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' }, - "coingecko_id": "pstake-finance" + coingecko_id: 'pstake-finance' }, { - "description": "Hash is the staking token of the Provenance Blockchain", - "denom_units": [ + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ { - "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "exponent": 0, - "aliases": [ - "nhash" - ] + denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + exponent: 0, + aliases: ['nhash'] }, { - "denom": "hash", - "exponent": 9, - "aliases": [] + denom: 'hash', + exponent: 9, + aliases: [] } ], - "base": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "name": "Hash", - "display": "hash", - "symbol": "HASH", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.svg" + base: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + name: 'Hash', + display: 'hash', + symbol: 'HASH', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/hash.svg' }, - "coingecko_id": "provenance-blockchain", - "ibc": { - "counterparty": { - "channel": "channel-7", - "denom": "nhash", - "chain_name": "provenance" + coingecko_id: 'provenance-blockchain', + ibc: { + counterparty: { + channel: 'channel-7', + denom: 'nhash', + chain_name: 'provenance' }, - "chain": { - "channel": "channel-222" + chain: { + channel: 'channel-222' } } }, { - "description": "REGEN coin is the token for the Regen Network Platform", - "denom_units": [ + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "exponent": 0, - "aliases": [ - "uregen" - ] + denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + exponent: 0, + aliases: ['uregen'] }, { - "denom": "regen", - "exponent": 6 + denom: 'regen', + exponent: 6 } ], - "base": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "name": "Regen Network", - "display": "regen", - "symbol": "REGEN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png" + base: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + name: 'Regen Network', + display: 'regen', + symbol: 'REGEN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png' }, - "coingecko_id": "regen", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uregen", - "chain_name": "regen" + coingecko_id: 'regen', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uregen', + chain_name: 'regen' }, - "chain": { - "channel": "channel-8" + chain: { + channel: 'channel-8' } } }, { - "description": "Native token of Rizon Chain", - "denom_units": [ + description: 'Native token of Rizon Chain', + denom_units: [ { - "denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", - "exponent": 0, - "aliases": [ - "uatolo" - ] + denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + exponent: 0, + aliases: ['uatolo'] }, { - "denom": "atolo", - "exponent": 6 + denom: 'atolo', + exponent: 6 } ], - "base": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", - "name": "Rizon Chain", - "display": "atolo", - "symbol": "ATOLO", - "coingecko_id": "rizon", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg" + base: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + name: 'Rizon Chain', + display: 'atolo', + symbol: 'ATOLO', + coingecko_id: 'rizon', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uatolo", - "chain_name": "rizon" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uatolo', + chain_name: 'rizon' }, - "chain": { - "channel": "channel-221" + chain: { + channel: 'channel-221' } } }, { - "description": "The native token of Secret Network", - "denom_units": [ + description: 'The native token of Secret Network', + denom_units: [ { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "exponent": 0, - "aliases": [ - "uscrt" - ] + denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + exponent: 0, + aliases: ['uscrt'] }, { - "denom": "scrt", - "exponent": 6 + denom: 'scrt', + exponent: 6 } ], - "base": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "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" + base: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + 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", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uscrt", - "chain_name": "secretnetwork" + coingecko_id: 'secret', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uscrt', + chain_name: 'secretnetwork' }, - "chain": { - "channel": "channel-88" + chain: { + channel: 'channel-88' } } }, { - "description": "DVPN is the native token of the Sentinel Hub.", - "denom_units": [ + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "exponent": 0, - "aliases": [ - "udvpn" - ] + denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + exponent: 0, + aliases: ['udvpn'] }, { - "denom": "dvpn", - "exponent": 6 + denom: 'dvpn', + exponent: 6 } ], - "base": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "name": "Sentinel", - "display": "dvpn", - "symbol": "DVPN", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png" + base: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png' }, - "coingecko_id": "sentinel", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "udvpn", - "chain_name": "sentinel" + coingecko_id: 'sentinel', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'udvpn', + chain_name: 'sentinel' }, - "chain": { - "channel": "channel-2" + chain: { + channel: 'channel-2' } } }, { - "description": "The native token of Shentu", - "denom_units": [ + description: 'The native token of Shentu', + denom_units: [ { - "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", - "exponent": 0, - "aliases": [ - "uctk" - ] + denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + exponent: 0, + aliases: ['uctk'] }, { - "denom": "ctk", - "exponent": 6 + denom: 'ctk', + exponent: 6 } ], - "base": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", - "name": "Shentu", - "display": "ctk", - "symbol": "CTK", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png" + base: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png' }, - "coingecko_id": "certik", - "ibc": { - "counterparty": { - "channel": "channel-8", - "denom": "uctk", - "chain_name": "shentu" + coingecko_id: 'certik', + ibc: { + counterparty: { + channel: 'channel-8', + denom: 'uctk', + chain_name: 'shentu' }, - "chain": { - "channel": "channel-146" + chain: { + channel: 'channel-146' } } }, { - "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": [ + 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/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", - "exponent": 18, - "aliases": [ - "rowan" - ] + denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + exponent: 18, + aliases: ['rowan'] } ], - "base": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", - "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" + base: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + 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", - "ibc": { - "counterparty": { - "channel": "channel-17", - "denom": "rowan", - "chain_name": "sifchain" + coingecko_id: 'sifchain', + ibc: { + counterparty: { + channel: 'channel-17', + denom: 'rowan', + chain_name: 'sifchain' }, - "chain": { - "channel": "channel-47" + chain: { + channel: 'channel-47' } } }, { - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", - "denom_units": [ + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "exponent": 0, - "aliases": [ - "usomm" - ] + denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + exponent: 0, + aliases: ['usomm'] }, { - "denom": "msomm", - "exponent": 3, - "aliases": [ - "millisomm" - ] + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] }, { - "denom": "somm", - "exponent": 6 + denom: 'somm', + exponent: 6 } ], - "base": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "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" + base: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + 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", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "usomm", - "chain_name": "sommelier" + coingecko_id: 'sommelier', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'usomm', + chain_name: 'sommelier' }, - "chain": { - "channel": "channel-165" + chain: { + channel: 'channel-165' } } }, { - "description": "The native token of Stargaze", - "denom_units": [ + description: 'The native token of Stargaze', + denom_units: [ { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "exponent": 0, - "aliases": [ - "ustars" - ] + denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + exponent: 0, + aliases: ['ustars'] }, { - "denom": "stars", - "exponent": 6 + denom: 'stars', + exponent: 6 } ], - "base": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "name": "Stargaze", - "display": "stars", - "symbol": "STARS", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png" + base: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' }, - "coingecko_id": "stargaze", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "ustars", - "chain_name": "stargaze" + coingecko_id: 'stargaze', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'ustars', + chain_name: 'stargaze' }, - "chain": { - "channel": "channel-75" + chain: { + channel: 'channel-75' } } }, { - "description": "IOV coin is the token for the Starname (IOV) Asset Name Service", - "denom_units": [ + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "exponent": 0, - "aliases": [ - "uiov" - ] + denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + exponent: 0, + aliases: ['uiov'] }, { - "denom": "iov", - "exponent": 6 + denom: 'iov', + exponent: 6 } ], - "base": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "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" + base: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + 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", - "ibc": { - "counterparty": { - "channel": "channel-2", - "denom": "uiov", - "chain_name": "starname" + coingecko_id: 'starname', + ibc: { + counterparty: { + channel: 'channel-2', + denom: 'uiov', + chain_name: 'starname' }, - "chain": { - "channel": "channel-15" + chain: { + channel: 'channel-15' } } }, { - "description": "The native staking token of Terra Classic.", - "denom_units": [ + description: 'The native staking token of Terra Classic.', + denom_units: [ { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "exponent": 0, - "aliases": [ - "uluna" - ] + denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + exponent: 0, + aliases: ['uluna'] }, { - "denom": "mluna", - "exponent": 3, - "aliases": [ - "milliluna" - ] + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] }, { - "denom": "luna", - "exponent": 6, - "aliases": [ - "lunc" - ] + denom: 'luna', + exponent: 6, + aliases: ['lunc'] } ], - "base": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "name": "Luna Classic", - "display": "luna", - "symbol": "LUNC", - "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" + base: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + 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' }, - "coingecko_id": "terra-luna", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uluna", - "chain_name": "terra" + coingecko_id: 'terra-luna', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uluna', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The USD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "exponent": 0, - "aliases": [ - "uusd" - ] + denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + exponent: 0, + aliases: ['uusd'] }, { - "denom": "musd", - "exponent": 3, - "aliases": [ - "milliusd" - ] + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] }, { - "denom": "ust", - "exponent": 6, - "aliases": [ - "ustc" - ] + denom: 'ust', + exponent: 6, + aliases: ['ustc'] } ], - "base": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "name": "TerraClassicUSD", - "display": "ust", - "symbol": "USTC", - "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" + base: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + 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' }, - "coingecko_id": "terrausd", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uusd", - "chain_name": "terra" + coingecko_id: 'terrausd', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uusd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The KRW stablecoin of Terra Classic.", - "denom_units": [ + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", - "exponent": 0, - "aliases": [ - "ukrw" - ] + denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + exponent: 0, + aliases: ['ukrw'] }, { - "denom": "mkrw", - "exponent": 3, - "aliases": [ - "millikrw" - ] + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] }, { - "denom": "krt", - "exponent": 6, - "aliases": [ - "krtc" - ] + denom: 'krt', + exponent: 6, + aliases: ['krtc'] } ], - "base": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", - "name": "TerraClassicKRW", - "display": "krt", - "symbol": "KRTC", - "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" + base: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + 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' }, - "coingecko_id": "terrakrw", - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ukrw", - "chain_name": "terra" + coingecko_id: 'terrakrw', + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ukrw', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The AUD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The AUD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/AF5CF6B225B1C03E7F9C2A1AE80CB3BED4E2E7D7F79D5B85679EC2E6925C7289", - "exponent": 0, - "aliases": [ - "uaud" - ] + denom: + 'ibc/AF5CF6B225B1C03E7F9C2A1AE80CB3BED4E2E7D7F79D5B85679EC2E6925C7289', + exponent: 0, + aliases: ['uaud'] }, { - "denom": "maud", - "exponent": 3, - "aliases": [ - "milliaud" - ] + denom: 'maud', + exponent: 3, + aliases: ['milliaud'] }, { - "denom": "aut", - "exponent": 6, - "aliases": [ - "autc" - ] + denom: 'aut', + exponent: 6, + aliases: ['autc'] } ], - "base": "ibc/AF5CF6B225B1C03E7F9C2A1AE80CB3BED4E2E7D7F79D5B85679EC2E6925C7289", - "display": "aut", - "name": "TerraClassicAUD", - "symbol": "AUTC", - "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" + base: + 'ibc/AF5CF6B225B1C03E7F9C2A1AE80CB3BED4E2E7D7F79D5B85679EC2E6925C7289', + display: 'aut', + name: 'TerraClassicAUD', + symbol: 'AUTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uaud", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uaud', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The CAD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CAD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/4D4C6199EDADACC046B17FCC39C9060EBA1CDF71B4692BE309AE71BA992F792B", - "exponent": 0, - "aliases": [ - "ucad" - ] + denom: + 'ibc/4D4C6199EDADACC046B17FCC39C9060EBA1CDF71B4692BE309AE71BA992F792B', + exponent: 0, + aliases: ['ucad'] }, { - "denom": "mcad", - "exponent": 3, - "aliases": [ - "millicad" - ] + denom: 'mcad', + exponent: 3, + aliases: ['millicad'] }, { - "denom": "cat", - "exponent": 6, - "aliases": [ - "catc" - ] + denom: 'cat', + exponent: 6, + aliases: ['catc'] } ], - "base": "ibc/4D4C6199EDADACC046B17FCC39C9060EBA1CDF71B4692BE309AE71BA992F792B", - "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" + base: + 'ibc/4D4C6199EDADACC046B17FCC39C9060EBA1CDF71B4692BE309AE71BA992F792B', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ucad", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ucad', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The CHF stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CHF stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/0863B7BFD46942F07AA55B3C7138C50F26D9A8168A47767897B04DBF41B7DF37", - "exponent": 0, - "aliases": [ - "uchf" - ] + denom: + 'ibc/0863B7BFD46942F07AA55B3C7138C50F26D9A8168A47767897B04DBF41B7DF37', + exponent: 0, + aliases: ['uchf'] }, { - "denom": "mchf", - "exponent": 3, - "aliases": [ - "millichf" - ] + denom: 'mchf', + exponent: 3, + aliases: ['millichf'] }, { - "denom": "cht", - "exponent": 6, - "aliases": [ - "chtc" - ] + denom: 'cht', + exponent: 6, + aliases: ['chtc'] } ], - "base": "ibc/0863B7BFD46942F07AA55B3C7138C50F26D9A8168A47767897B04DBF41B7DF37", - "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" + base: + 'ibc/0863B7BFD46942F07AA55B3C7138C50F26D9A8168A47767897B04DBF41B7DF37', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uchf", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uchf', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The CNY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The CNY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/C4A85672EAF4C51D865A76483AB8CEFD7BC37C3B6F1A1610721D97A1734F382D", - "exponent": 0, - "aliases": [ - "ucny" - ] + denom: + 'ibc/C4A85672EAF4C51D865A76483AB8CEFD7BC37C3B6F1A1610721D97A1734F382D', + exponent: 0, + aliases: ['ucny'] }, { - "denom": "mcny", - "exponent": 3, - "aliases": [ - "millicny" - ] + denom: 'mcny', + exponent: 3, + aliases: ['millicny'] }, { - "denom": "cnt", - "exponent": 6, - "aliases": [ - "cntc" - ] + denom: 'cnt', + exponent: 6, + aliases: ['cntc'] } ], - "base": "ibc/C4A85672EAF4C51D865A76483AB8CEFD7BC37C3B6F1A1610721D97A1734F382D", - "display": "cnt", - "name": "TerraClassicCNY", - "symbol": "CNTC", - "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" + base: + 'ibc/C4A85672EAF4C51D865A76483AB8CEFD7BC37C3B6F1A1610721D97A1734F382D', + display: 'cnt', + name: 'TerraClassicCNY', + symbol: 'CNTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ucny", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ucny', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The DKK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The DKK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/52013CBC332B65408E0E8D30AA364612FC56820315926B33E2295275BC12A9B7", - "exponent": 0, - "aliases": [ - "udkk" - ] + denom: + 'ibc/52013CBC332B65408E0E8D30AA364612FC56820315926B33E2295275BC12A9B7', + exponent: 0, + aliases: ['udkk'] }, { - "denom": "mdkk", - "exponent": 3, - "aliases": [ - "millidkk" - ] + denom: 'mdkk', + exponent: 3, + aliases: ['millidkk'] }, { - "denom": "dkt", - "exponent": 6, - "aliases": [ - "dktc" - ] + denom: 'dkt', + exponent: 6, + aliases: ['dktc'] } ], - "base": "ibc/52013CBC332B65408E0E8D30AA364612FC56820315926B33E2295275BC12A9B7", - "display": "dkt", - "name": "TerraClassicDKK", - "symbol": "DKTC", - "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" + base: + 'ibc/52013CBC332B65408E0E8D30AA364612FC56820315926B33E2295275BC12A9B7', + display: 'dkt', + name: 'TerraClassicDKK', + symbol: 'DKTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "udkk", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'udkk', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The EUR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The EUR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/5035A2B603841B19A40A060B9F6693F09C8F1E038C2A42589F781929A253148E", - "exponent": 0, - "aliases": [ - "ueur" - ] + denom: + 'ibc/5035A2B603841B19A40A060B9F6693F09C8F1E038C2A42589F781929A253148E', + exponent: 0, + aliases: ['ueur'] }, { - "denom": "meur", - "exponent": 3, - "aliases": [ - "millieur" - ] + denom: 'meur', + exponent: 3, + aliases: ['millieur'] }, { - "denom": "eut", - "exponent": 6, - "aliases": [ - "eutc" - ] + denom: 'eut', + exponent: 6, + aliases: ['eutc'] } ], - "base": "ibc/5035A2B603841B19A40A060B9F6693F09C8F1E038C2A42589F781929A253148E", - "display": "eut", - "name": "TerraClassicEUR", - "symbol": "EUTC", - "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" + base: + 'ibc/5035A2B603841B19A40A060B9F6693F09C8F1E038C2A42589F781929A253148E', + display: 'eut', + name: 'TerraClassicEUR', + symbol: 'EUTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ueur", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ueur', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The GBP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The GBP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/2A5C04E2BBB24046A98162896D6237CE56ACE8C3CD907F8070E8348A30A6376E", - "exponent": 0, - "aliases": [ - "ugbp" - ] + denom: + 'ibc/2A5C04E2BBB24046A98162896D6237CE56ACE8C3CD907F8070E8348A30A6376E', + exponent: 0, + aliases: ['ugbp'] }, { - "denom": "mgbp", - "exponent": 3, - "aliases": [ - "milligbp" - ] + denom: 'mgbp', + exponent: 3, + aliases: ['milligbp'] }, { - "denom": "gbt", - "exponent": 6, - "aliases": [ - "gbtc" - ] + denom: 'gbt', + exponent: 6, + aliases: ['gbtc'] } ], - "base": "ibc/2A5C04E2BBB24046A98162896D6237CE56ACE8C3CD907F8070E8348A30A6376E", - "display": "gbt", - "name": "TerraClassicGBP", - "symbol": "GBTC", - "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" + base: + 'ibc/2A5C04E2BBB24046A98162896D6237CE56ACE8C3CD907F8070E8348A30A6376E', + display: 'gbt', + name: 'TerraClassicGBP', + symbol: 'GBTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ugbp", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ugbp', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The HKD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The HKD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/95608E3B5D8E5C31EE272E09A04AB8E6638A858F564E5B8F5A5C05CEFC33B434", - "exponent": 0, - "aliases": [ - "uhkd" - ] + denom: + 'ibc/95608E3B5D8E5C31EE272E09A04AB8E6638A858F564E5B8F5A5C05CEFC33B434', + exponent: 0, + aliases: ['uhkd'] }, { - "denom": "mhkd", - "exponent": 3, - "aliases": [ - "millihkd" - ] + denom: 'mhkd', + exponent: 3, + aliases: ['millihkd'] }, { - "denom": "hkt", - "exponent": 6, - "aliases": [ - "hktc" - ] + denom: 'hkt', + exponent: 6, + aliases: ['hktc'] } ], - "base": "ibc/95608E3B5D8E5C31EE272E09A04AB8E6638A858F564E5B8F5A5C05CEFC33B434", - "display": "hkt", - "name": "TerraClassicHKD", - "symbol": "HKTC", - "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" + base: + 'ibc/95608E3B5D8E5C31EE272E09A04AB8E6638A858F564E5B8F5A5C05CEFC33B434', + display: 'hkt', + name: 'TerraClassicHKD', + symbol: 'HKTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uhkd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uhkd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The IDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The IDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/BF55329AEA7E79B0AAB320C41A76AC8B9E4E9E07EEED8643AB57440C0978F402", - "exponent": 0, - "aliases": [ - "uidr" - ] + denom: + 'ibc/BF55329AEA7E79B0AAB320C41A76AC8B9E4E9E07EEED8643AB57440C0978F402', + exponent: 0, + aliases: ['uidr'] }, { - "denom": "midr", - "exponent": 3, - "aliases": [ - "milliidr" - ] + denom: 'midr', + exponent: 3, + aliases: ['milliidr'] }, { - "denom": "idt", - "exponent": 6, - "aliases": [ - "idtc" - ] + denom: 'idt', + exponent: 6, + aliases: ['idtc'] } ], - "base": "ibc/BF55329AEA7E79B0AAB320C41A76AC8B9E4E9E07EEED8643AB57440C0978F402", - "display": "idt", - "name": "TerraClassicIDR", - "symbol": "IDTC", - "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" + base: + 'ibc/BF55329AEA7E79B0AAB320C41A76AC8B9E4E9E07EEED8643AB57440C0978F402', + display: 'idt', + name: 'TerraClassicIDR', + symbol: 'IDTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uidr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uidr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The INR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The INR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/C9B27B2F497CD3A3C7EE07556FA40AE234EE346A1EC269E7DE59C9CB52A0A0A6", - "exponent": 0, - "aliases": [ - "uinr" - ] + denom: + 'ibc/C9B27B2F497CD3A3C7EE07556FA40AE234EE346A1EC269E7DE59C9CB52A0A0A6', + exponent: 0, + aliases: ['uinr'] }, { - "denom": "minr", - "exponent": 3, - "aliases": [ - "milliinr" - ] + denom: 'minr', + exponent: 3, + aliases: ['milliinr'] }, { - "denom": "int", - "exponent": 6, - "aliases": [ - "intc" - ] + denom: 'int', + exponent: 6, + aliases: ['intc'] } ], - "base": "ibc/C9B27B2F497CD3A3C7EE07556FA40AE234EE346A1EC269E7DE59C9CB52A0A0A6", - "display": "int", - "name": "TerraClassicINR", - "symbol": "INTC", - "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" + base: + 'ibc/C9B27B2F497CD3A3C7EE07556FA40AE234EE346A1EC269E7DE59C9CB52A0A0A6', + display: 'int', + name: 'TerraClassicINR', + symbol: 'INTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uinr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uinr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The JPY stablecoin of Terra Classic.", - "denom_units": [ + description: 'The JPY stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/E33EB14BFC9274B7A9C349BB519A78B33C782DA682708EC91A85359FFAA6357A", - "exponent": 0, - "aliases": [ - "ujpy" - ] + denom: + 'ibc/E33EB14BFC9274B7A9C349BB519A78B33C782DA682708EC91A85359FFAA6357A', + exponent: 0, + aliases: ['ujpy'] }, { - "denom": "mjpy", - "exponent": 3, - "aliases": [ - "millijpy" - ] + denom: 'mjpy', + exponent: 3, + aliases: ['millijpy'] }, { - "denom": "jpt", - "exponent": 6, - "aliases": [ - "jptc" - ] + denom: 'jpt', + exponent: 6, + aliases: ['jptc'] } ], - "base": "ibc/E33EB14BFC9274B7A9C349BB519A78B33C782DA682708EC91A85359FFAA6357A", - "display": "jpt", - "name": "TerraClassicJPY", - "symbol": "JPTC", - "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" + base: + 'ibc/E33EB14BFC9274B7A9C349BB519A78B33C782DA682708EC91A85359FFAA6357A', + display: 'jpt', + name: 'TerraClassicJPY', + symbol: 'JPTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "ujpy", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'ujpy', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The MNT stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MNT stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/0AA77B8ECAAD61A09437BA40B9EAEA3A80D9CF3EF1933309895BF3C2FC699DA6", - "exponent": 0, - "aliases": [ - "umnt" - ] + denom: + 'ibc/0AA77B8ECAAD61A09437BA40B9EAEA3A80D9CF3EF1933309895BF3C2FC699DA6', + exponent: 0, + aliases: ['umnt'] }, { - "denom": "mmnt", - "exponent": 3, - "aliases": [ - "millimnt" - ] + denom: 'mmnt', + exponent: 3, + aliases: ['millimnt'] }, { - "denom": "mnt", - "exponent": 6, - "aliases": [ - "mntc" - ] + denom: 'mnt', + exponent: 6, + aliases: ['mntc'] } ], - "base": "ibc/0AA77B8ECAAD61A09437BA40B9EAEA3A80D9CF3EF1933309895BF3C2FC699DA6", - "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" + base: + 'ibc/0AA77B8ECAAD61A09437BA40B9EAEA3A80D9CF3EF1933309895BF3C2FC699DA6', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "umnt", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'umnt', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The MYR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The MYR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/12FEFB6E8AD852D23474DB1664D6F1B1C965506492B85E34F3496A9AF7B3F6C8", - "exponent": 0, - "aliases": [ - "umyr" - ] + denom: + 'ibc/12FEFB6E8AD852D23474DB1664D6F1B1C965506492B85E34F3496A9AF7B3F6C8', + exponent: 0, + aliases: ['umyr'] }, { - "denom": "mmyr", - "exponent": 3, - "aliases": [ - "millimyr" - ] + denom: 'mmyr', + exponent: 3, + aliases: ['millimyr'] }, { - "denom": "myt", - "exponent": 6, - "aliases": [ - "mytc" - ] + denom: 'myt', + exponent: 6, + aliases: ['mytc'] } ], - "base": "ibc/12FEFB6E8AD852D23474DB1664D6F1B1C965506492B85E34F3496A9AF7B3F6C8", - "display": "myt", - "name": "TerraClassicMYR", - "symbol": "MYTC", - "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" + base: + 'ibc/12FEFB6E8AD852D23474DB1664D6F1B1C965506492B85E34F3496A9AF7B3F6C8', + display: 'myt', + name: 'TerraClassicMYR', + symbol: 'MYTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "umyr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'umyr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The NOK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The NOK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/2E4ECFFBCDD77D42E6A1DD2D866C11FECCD4EB65B695253A610F2882B654731F", - "exponent": 0, - "aliases": [ - "unok" - ] + denom: + 'ibc/2E4ECFFBCDD77D42E6A1DD2D866C11FECCD4EB65B695253A610F2882B654731F', + exponent: 0, + aliases: ['unok'] }, { - "denom": "mnok", - "exponent": 3, - "aliases": [ - "millinok" - ] + denom: 'mnok', + exponent: 3, + aliases: ['millinok'] }, { - "denom": "not", - "exponent": 6, - "aliases": [ - "notc" - ] + denom: 'not', + exponent: 6, + aliases: ['notc'] } ], - "base": "ibc/2E4ECFFBCDD77D42E6A1DD2D866C11FECCD4EB65B695253A610F2882B654731F", - "display": "not", - "name": "TerraClassicNOK", - "symbol": "NOTC", - "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" + base: + 'ibc/2E4ECFFBCDD77D42E6A1DD2D866C11FECCD4EB65B695253A610F2882B654731F', + display: 'not', + name: 'TerraClassicNOK', + symbol: 'NOTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "unok", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'unok', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The PHP stablecoin of Terra Classic.", - "denom_units": [ + description: 'The PHP stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/559B4D308D13DFD4CF535B417C97740E99516B6EF4E0C66AD54CCAD2F46C55E5", - "exponent": 0, - "aliases": [ - "uphp" - ] + denom: + 'ibc/559B4D308D13DFD4CF535B417C97740E99516B6EF4E0C66AD54CCAD2F46C55E5', + exponent: 0, + aliases: ['uphp'] }, { - "denom": "mphp", - "exponent": 3, - "aliases": [ - "milliphp" - ] + denom: 'mphp', + exponent: 3, + aliases: ['milliphp'] }, { - "denom": "pht", - "exponent": 6, - "aliases": [ - "phtc" - ] + denom: 'pht', + exponent: 6, + aliases: ['phtc'] } ], - "base": "ibc/559B4D308D13DFD4CF535B417C97740E99516B6EF4E0C66AD54CCAD2F46C55E5", - "display": "pht", - "name": "TerraClassicPHP", - "symbol": "PHTC", - "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" + base: + 'ibc/559B4D308D13DFD4CF535B417C97740E99516B6EF4E0C66AD54CCAD2F46C55E5', + display: 'pht', + name: 'TerraClassicPHP', + symbol: 'PHTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uphp", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uphp', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The SDR stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SDR stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/92BF104008D75F9E9A602F948C824E75271A62EAB940D381AF7B1A6D95BF6021", - "exponent": 0, - "aliases": [ - "usdr" - ] + denom: + 'ibc/92BF104008D75F9E9A602F948C824E75271A62EAB940D381AF7B1A6D95BF6021', + exponent: 0, + aliases: ['usdr'] }, { - "denom": "msdr", - "exponent": 3, - "aliases": [ - "millisdr" - ] + denom: 'msdr', + exponent: 3, + aliases: ['millisdr'] }, { - "denom": "sdt", - "exponent": 6, - "aliases": [ - "sdtc" - ] + denom: 'sdt', + exponent: 6, + aliases: ['sdtc'] } ], - "base": "ibc/92BF104008D75F9E9A602F948C824E75271A62EAB940D381AF7B1A6D95BF6021", - "display": "sdt", - "name": "TerraClassicSDR", - "symbol": "SDTC", - "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" + base: + 'ibc/92BF104008D75F9E9A602F948C824E75271A62EAB940D381AF7B1A6D95BF6021', + display: 'sdt', + name: 'TerraClassicSDR', + symbol: 'SDTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "usdr", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'usdr', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The SEK stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SEK stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/227794C5A63E0A61F49839817288C6582E0BB3D9A082D261542F56684DC6F47D", - "exponent": 0, - "aliases": [ - "usek" - ] + denom: + 'ibc/227794C5A63E0A61F49839817288C6582E0BB3D9A082D261542F56684DC6F47D', + exponent: 0, + aliases: ['usek'] }, { - "denom": "msek", - "exponent": 3, - "aliases": [ - "millisek" - ] + denom: 'msek', + exponent: 3, + aliases: ['millisek'] }, { - "denom": "set", - "exponent": 6, - "aliases": [ - "setc" - ] + denom: 'set', + exponent: 6, + aliases: ['setc'] } ], - "base": "ibc/227794C5A63E0A61F49839817288C6582E0BB3D9A082D261542F56684DC6F47D", - "display": "set", - "name": "TerraClassicSEK", - "symbol": "SETC", - "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" + base: + 'ibc/227794C5A63E0A61F49839817288C6582E0BB3D9A082D261542F56684DC6F47D', + display: 'set', + name: 'TerraClassicSEK', + symbol: 'SETC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "usek", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'usek', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The SGD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The SGD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/2FB96E4667FBBE51C86E534017E6787F5B15377AF16815955DC97692CB237208", - "exponent": 0, - "aliases": [ - "usgd" - ] + denom: + 'ibc/2FB96E4667FBBE51C86E534017E6787F5B15377AF16815955DC97692CB237208', + exponent: 0, + aliases: ['usgd'] }, { - "denom": "msgd", - "exponent": 3, - "aliases": [ - "millisgd" - ] + denom: 'msgd', + exponent: 3, + aliases: ['millisgd'] }, { - "denom": "sgt", - "exponent": 6, - "aliases": [ - "sgtc" - ] + denom: 'sgt', + exponent: 6, + aliases: ['sgtc'] } ], - "base": "ibc/2FB96E4667FBBE51C86E534017E6787F5B15377AF16815955DC97692CB237208", - "display": "sgt", - "name": "TerraClassicSGD", - "symbol": "SGTC", - "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" + base: + 'ibc/2FB96E4667FBBE51C86E534017E6787F5B15377AF16815955DC97692CB237208', + display: 'sgt', + name: 'TerraClassicSGD', + symbol: 'SGTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "usgd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'usgd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The THB stablecoin of Terra Classic.", - "denom_units": [ + description: 'The THB stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/1370B7C0100924E0310D7A9F71701109F86CF2A7E13B86A1D3B425E618167DBF", - "exponent": 0, - "aliases": [ - "uthb" - ] + denom: + 'ibc/1370B7C0100924E0310D7A9F71701109F86CF2A7E13B86A1D3B425E618167DBF', + exponent: 0, + aliases: ['uthb'] }, { - "denom": "mthb", - "exponent": 3, - "aliases": [ - "millithb" - ] + denom: 'mthb', + exponent: 3, + aliases: ['millithb'] }, { - "denom": "tht", - "exponent": 6, - "aliases": [ - "thtc" - ] + denom: 'tht', + exponent: 6, + aliases: ['thtc'] } ], - "base": "ibc/1370B7C0100924E0310D7A9F71701109F86CF2A7E13B86A1D3B425E618167DBF", - "display": "tht", - "name": "TerraClassicTHB", - "symbol": "THTC", - "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" + base: + 'ibc/1370B7C0100924E0310D7A9F71701109F86CF2A7E13B86A1D3B425E618167DBF', + display: 'tht', + name: 'TerraClassicTHB', + symbol: 'THTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "uthb", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'uthb', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The TWD stablecoin of Terra Classic.", - "denom_units": [ + description: 'The TWD stablecoin of Terra Classic.', + denom_units: [ { - "denom": "ibc/93B9AA28AF48E1601399BA808B09A3EE59299B48D70A1E1BCD04D9DB84E246F3", - "exponent": 0, - "aliases": [ - "utwd" - ] + denom: + 'ibc/93B9AA28AF48E1601399BA808B09A3EE59299B48D70A1E1BCD04D9DB84E246F3', + exponent: 0, + aliases: ['utwd'] }, { - "denom": "mtwd", - "exponent": 3, - "aliases": [ - "millitwd" - ] + denom: 'mtwd', + exponent: 3, + aliases: ['millitwd'] }, { - "denom": "twt", - "exponent": 6, - "aliases": [ - "twtc" - ] + denom: 'twt', + exponent: 6, + aliases: ['twtc'] } ], - "base": "ibc/93B9AA28AF48E1601399BA808B09A3EE59299B48D70A1E1BCD04D9DB84E246F3", - "display": "twt", - "name": "TerraClassicTWD", - "symbol": "TWTC", - "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" + base: + 'ibc/93B9AA28AF48E1601399BA808B09A3EE59299B48D70A1E1BCD04D9DB84E246F3', + display: 'twt', + name: 'TerraClassicTWD', + symbol: 'TWTC', + 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' }, - "ibc": { - "counterparty": { - "channel": "channel-1", - "denom": "utwd", - "chain_name": "terra" + ibc: { + counterparty: { + channel: 'channel-1', + denom: 'utwd', + chain_name: 'terra' }, - "chain": { - "channel": "channel-72" + chain: { + channel: 'channel-72' } } }, { - "description": "The native token of Tgrade", - "denom_units": [ + description: 'The native token of Tgrade', + denom_units: [ { - "denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "exponent": 0, - "aliases": [ - "utgd" - ] + denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + exponent: 0, + aliases: ['utgd'] }, { - "denom": "tgd", - "exponent": 6, - "aliases": [] + denom: 'tgd', + exponent: 6, + aliases: [] } ], - "base": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "name": "Tgrade", - "display": "tgd", - "symbol": "TGD", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png", - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg" + base: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' }, - "coingecko_id": "tgrade", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "utgd", - "chain_name": "tgrade" + coingecko_id: 'tgrade', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'utgd', + chain_name: 'tgrade' }, - "chain": { - "channel": "channel-263" + chain: { + channel: 'channel-263' } } }, { - "description": "The native token of Umee", - "denom_units": [ + description: 'The native token of Umee', + denom_units: [ { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "exponent": 0, - "aliases": [ - "uumee" - ] + denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + exponent: 0, + aliases: ['uumee'] }, { - "denom": "umee", - "exponent": 6 + denom: 'umee', + exponent: 6 } ], - "base": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "name": "Umee", - "display": "umee", - "symbol": "UMEE", - "logo_URIs": { - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png" + base: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png' }, - "coingecko_id": "umee", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "uumee", - "chain_name": "umee" + coingecko_id: 'umee', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'uumee', + chain_name: 'umee' }, - "chain": { - "channel": "channel-184" + chain: { + channel: 'channel-184' } } }, { - "description": "The native token of Vidulum", - "denom_units": [ + description: 'The native token of Vidulum', + denom_units: [ { - "denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "exponent": 0, - "aliases": [ - "uvdl" - ] + denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + exponent: 0, + aliases: ['uvdl'] }, { - "denom": "vdl", - "exponent": 6, - "aliases": [] + denom: 'vdl', + exponent: 6, + aliases: [] } ], - "base": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "name": "Vidulum", - "display": "vdl", - "symbol": "VDL", - "logo_URIs": { - "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg", - "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png" + base: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + logo_URIs: { + svg: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg', + png: + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png' }, - "coingecko_id": "vidulum", - "ibc": { - "counterparty": { - "channel": "channel-0", - "denom": "uvdl", - "chain_name": "vidulum" + coingecko_id: 'vidulum', + ibc: { + counterparty: { + channel: 'channel-0', + denom: 'uvdl', + chain_name: 'vidulum' }, - "chain": { - "channel": "channel-124" + chain: { + channel: 'channel-124' } } } ] }; export default ibc_assets; - \ No newline at end of file diff --git a/packages/osmosis/types/index.d.ts b/packages/osmosis/types/index.d.ts index 057e51bb1..3f5863300 100644 --- a/packages/osmosis/types/index.d.ts +++ b/packages/osmosis/types/index.d.ts @@ -2,9 +2,9 @@ import assets from './assets'; import chain from './chain'; import ibc_assets from './ibc_assets'; declare const _default: { - chain: import("@chain-registry/types").Chain; - assets: import("@chain-registry/types").AssetList; - ibc_assets: import("@chain-registry/types").IBCAsset; + chain: import('@chain-registry/types').Chain; + assets: import('@chain-registry/types').AssetList; + ibc_assets: import('@chain-registry/types').IBCAsset; }; export default _default; export { assets, chain, ibc_assets };